| 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") |
| 11 import("//chrome/common/features.gni") |
| 11 import("//chrome/test/base/js2gtest.gni") | 12 import("//chrome/test/base/js2gtest.gni") |
| 12 import("//testing/test.gni") | 13 import("//testing/test.gni") |
| 13 | 14 |
| 14 if (is_android) { | 15 if (is_android) { |
| 15 import("//build/config/android/rules.gni") | 16 import("//build/config/android/rules.gni") |
| 16 } | 17 } |
| 17 | 18 |
| 18 # This target exists to reference other test executables to bring these files | 19 # This target exists to reference other test executables to bring these files |
| 19 # into the build. | 20 # into the build. |
| 20 group("test") { | 21 group("test") { |
| (...skipping 2207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2228 if (is_android) { | 2229 if (is_android) { |
| 2229 android_library("unit_tests_java") { | 2230 android_library("unit_tests_java") { |
| 2230 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2231 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2231 deps = [ | 2232 deps = [ |
| 2232 "//base:base_java", | 2233 "//base:base_java", |
| 2233 "//chrome/android:chrome_java", | 2234 "//chrome/android:chrome_java", |
| 2234 "//content/public/android:content_java", | 2235 "//content/public/android:content_java", |
| 2235 ] | 2236 ] |
| 2236 } | 2237 } |
| 2237 } | 2238 } |
| OLD | NEW |