mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
65 lines
1.2 KiB
Plaintext
65 lines
1.2 KiB
Plaintext
|
# Copyright 2017 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
import("//testing/test.gni")
|
||
|
|
||
|
source_set("latency") {
|
||
|
sources = [
|
||
|
"latency_histogram_macros.h",
|
||
|
"latency_info.cc",
|
||
|
"latency_info.h",
|
||
|
"latency_tracker.cc",
|
||
|
"latency_tracker.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//ui/gfx",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
"//services/metrics/public/cpp:metrics_cpp",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("test_support") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"latency_info_test_support.cc",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
":latency",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
test("latency_unittests") {
|
||
|
sources = [
|
||
|
"latency_info_unittest.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":latency",
|
||
|
"//base",
|
||
|
"//base/test:test_support",
|
||
|
"//mojo/edk/test:run_all_unittests",
|
||
|
"//testing/gmock",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
|
||
|
if (!is_ios) {
|
||
|
sources += [
|
||
|
"ipc/latency_info_param_traits_unittest.cc",
|
||
|
"mojo/struct_traits_unittest.cc",
|
||
|
]
|
||
|
deps += [
|
||
|
"//ipc:test_support",
|
||
|
"//mojo/public/cpp/bindings",
|
||
|
"//ui/gfx/ipc/geometry",
|
||
|
"//ui/latency/ipc",
|
||
|
"//ui/latency/mojo:test_interfaces",
|
||
|
]
|
||
|
}
|
||
|
}
|