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/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 | 275 |
276 # For GpuProcess.video | 276 # For GpuProcess.video |
277 "//content/test/data/media/bear.ogv", | 277 "//content/test/data/media/bear.ogv", |
278 | 278 |
279 # For webgl_conformance | 279 # For webgl_conformance |
280 "//third_party/webgl/", | 280 "//third_party/webgl/", |
281 "//content/test/gpu/run_gpu_test.py", | 281 "//content/test/gpu/run_gpu_test.py", |
282 ] | 282 ] |
283 } | 283 } |
284 | 284 |
| 285 # TODO(GYP_GONE): Delete this after we've converted everything to GN. |
| 286 # The _run targets exist only for compatibility w/ GYP. |
| 287 group("telemetry_gpu_integration_test_run") { |
| 288 testonly = true |
| 289 deps = [ |
| 290 ":telemetry_gpu_integration_test", |
| 291 ] |
| 292 } |
| 293 |
| 294 group("telemetry_gpu_integration_test") { |
| 295 testonly = true |
| 296 deps = [ |
| 297 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", |
| 298 ] |
| 299 |
| 300 data = [ |
| 301 # For isolate contract. |
| 302 "//testing/scripts/common.py", |
| 303 "//testing/xvfb.py", |
| 304 "//testing/scripts/run_gpu_integration_test_as_googletest.py", |
| 305 |
| 306 "//content/test/gpu/", |
| 307 "//content/test/data/gpu/", |
| 308 |
| 309 # For GpuProcess.video |
| 310 "//content/test/data/media/bear.ogv", |
| 311 |
| 312 # For webgl_conformance |
| 313 "//third_party/webgl/", |
| 314 "//content/test/gpu/run_gpu_integration_test.py", |
| 315 ] |
| 316 } |
| 317 |
285 if (!is_android) { | 318 if (!is_android) { |
286 # GYP version: chrome/chrome_tests.gypi:test_support_ui | 319 # GYP version: chrome/chrome_tests.gypi:test_support_ui |
287 source_set("test_support_ui") { | 320 source_set("test_support_ui") { |
288 defines = [] | 321 defines = [] |
289 testonly = true | 322 testonly = true |
290 | 323 |
291 sources = [ | 324 sources = [ |
292 "base/in_process_browser_test.cc", | 325 "base/in_process_browser_test.cc", |
293 "base/in_process_browser_test.h", | 326 "base/in_process_browser_test.h", |
294 "base/in_process_browser_test_mac.cc", | 327 "base/in_process_browser_test_mac.cc", |
(...skipping 2133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2428 if (is_android) { | 2461 if (is_android) { |
2429 android_library("unit_tests_java") { | 2462 android_library("unit_tests_java") { |
2430 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2463 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
2431 deps = [ | 2464 deps = [ |
2432 "//base:base_java", | 2465 "//base:base_java", |
2433 "//chrome/android:chrome_java", | 2466 "//chrome/android:chrome_java", |
2434 "//content/public/android:content_java", | 2467 "//content/public/android:content_java", |
2435 ] | 2468 ] |
2436 } | 2469 } |
2437 } | 2470 } |
OLD | NEW |