| 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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 | 740 |
| 741 group("telemetry_gpu_unittests_run") { | 741 group("telemetry_gpu_unittests_run") { |
| 742 testonly = true | 742 testonly = true |
| 743 deps = [ | 743 deps = [ |
| 744 ":telemetry_gpu_unittests", | 744 ":telemetry_gpu_unittests", |
| 745 ] | 745 ] |
| 746 } | 746 } |
| 747 | 747 |
| 748 group("telemetry_gpu_unittests") { | 748 group("telemetry_gpu_unittests") { |
| 749 deps = [ | 749 deps = [ |
| 750 "//tools/telemetry:telemetry_test_support", | 750 "//third_party/catapult/telemetry:telemetry_test_support", |
| 751 ] | 751 ] |
| 752 data = [ | 752 data = [ |
| 753 # TODO(kbr): refactor the telemetry dependencies more cleanly. | 753 # TODO(kbr): refactor the telemetry dependencies more cleanly. |
| 754 "//content/test/gpu/", | 754 "//content/test/gpu/", |
| 755 "//content/test/data/gpu/", | 755 "//content/test/data/gpu/", |
| 756 | 756 |
| 757 # For GpuProcess.video | 757 # For GpuProcess.video |
| 758 "//content/test/data/media/bear.ogv", | 758 "//content/test/data/media/bear.ogv", |
| 759 | 759 |
| 760 # For webgl_conformance_expectations_unittest | 760 # For webgl_conformance_expectations_unittest |
| (...skipping 1466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2227 if (is_android) { | 2227 if (is_android) { |
| 2228 android_library("unit_tests_java") { | 2228 android_library("unit_tests_java") { |
| 2229 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2229 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2230 deps = [ | 2230 deps = [ |
| 2231 "//base:base_java", | 2231 "//base:base_java", |
| 2232 "//chrome/android:chrome_java", | 2232 "//chrome/android:chrome_java", |
| 2233 "//content/public/android:content_java", | 2233 "//content/public/android:content_java", |
| 2234 ] | 2234 ] |
| 2235 } | 2235 } |
| 2236 } | 2236 } |
| OLD | NEW |