mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
51 lines
1.2 KiB
Plaintext
51 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.
|
|
|
|
source_set("tests") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"struct_traits_unittest.cc",
|
|
]
|
|
|
|
deps = [
|
|
"//base/test:test_support",
|
|
"//components/viz/common:common",
|
|
"//components/viz/test:test_support",
|
|
"//gpu/ipc/common:struct_traits",
|
|
"//media/capture/mojom:video_capture",
|
|
"//services/service_manager/public/cpp",
|
|
"//services/service_manager/public/cpp:service_test_support",
|
|
"//services/viz/public/interfaces",
|
|
"//skia/public/interfaces",
|
|
"//testing/gtest",
|
|
"//ui/gfx:test_support",
|
|
"//ui/gfx/geometry/mojo:struct_traits",
|
|
"//ui/gfx/ipc/color:color",
|
|
]
|
|
}
|
|
|
|
source_set("perftests") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"struct_traits_perftest.cc",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//components/viz/common",
|
|
"//components/viz/test:test_support",
|
|
"//gpu/ipc/common:struct_traits",
|
|
"//mojo/public/cpp/bindings",
|
|
"//services/viz/public/interfaces",
|
|
"//skia",
|
|
"//testing/perf",
|
|
"//ui/gfx",
|
|
"//ui/gfx:test_support",
|
|
"//ui/gfx/geometry",
|
|
]
|
|
}
|