| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 public_deps += [ | 251 public_deps += [ |
| 252 "//apps:test_support", | 252 "//apps:test_support", |
| 253 "//chrome/common/extensions/api", | 253 "//chrome/common/extensions/api", |
| 254 "//extensions:test_support", | 254 "//extensions:test_support", |
| 255 ] | 255 ] |
| 256 } | 256 } |
| 257 } | 257 } |
| 258 | 258 |
| 259 # TODO(GYP_GONE): Delete this after we've converted everything to GN. | 259 # TODO(GYP_GONE): Delete this after we've converted everything to GN. |
| 260 # The _run targets exist only for compatibility w/ GYP. | 260 # The _run targets exist only for compatibility w/ GYP. |
| 261 group("telemetry_gpu_test_run") { | |
| 262 testonly = true | |
| 263 deps = [ | |
| 264 ":telemetry_gpu_test", | |
| 265 ] | |
| 266 } | |
| 267 | |
| 268 group("telemetry_gpu_test") { | |
| 269 testonly = true | |
| 270 deps = [ | |
| 271 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", | |
| 272 ] | |
| 273 | |
| 274 data = [ | |
| 275 # For isolate contract. | |
| 276 "//testing/scripts/common.py", | |
| 277 "//testing/xvfb.py", | |
| 278 "//testing/scripts/run_telemetry_benchmark_as_googletest.py", | |
| 279 | |
| 280 "//content/test/gpu/", | |
| 281 "//content/test/data/gpu/", | |
| 282 | |
| 283 # For GpuProcess.video | |
| 284 "//content/test/data/media/bear.ogv", | |
| 285 | |
| 286 # For webgl_conformance | |
| 287 "//third_party/webgl/", | |
| 288 "//content/test/gpu/run_gpu_test.py", | |
| 289 ] | |
| 290 } | |
| 291 | |
| 292 # TODO(GYP_GONE): Delete this after we've converted everything to GN. | |
| 293 # The _run targets exist only for compatibility w/ GYP. | |
| 294 group("telemetry_gpu_integration_test_run") { | 261 group("telemetry_gpu_integration_test_run") { |
| 295 testonly = true | 262 testonly = true |
| 296 deps = [ | 263 deps = [ |
| 297 ":telemetry_gpu_integration_test", | 264 ":telemetry_gpu_integration_test", |
| 298 ] | 265 ] |
| 299 } | 266 } |
| 300 | 267 |
| 301 group("telemetry_gpu_integration_test") { | 268 group("telemetry_gpu_integration_test") { |
| 302 testonly = true | 269 testonly = true |
| 303 deps = [ | 270 deps = [ |
| (...skipping 4803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5107 } | 5074 } |
| 5108 | 5075 |
| 5109 if (is_win) { | 5076 if (is_win) { |
| 5110 loadable_module("conflicts_dll") { | 5077 loadable_module("conflicts_dll") { |
| 5111 testonly = true | 5078 testonly = true |
| 5112 sources = [ | 5079 sources = [ |
| 5113 "conflicts/conflicts_dll.cc", | 5080 "conflicts/conflicts_dll.cc", |
| 5114 ] | 5081 ] |
| 5115 } | 5082 } |
| 5116 } | 5083 } |
| OLD | NEW |