| 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 2205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2216 ] | 2216 ] |
| 2217 | 2217 |
| 2218 public_deps = [ | 2218 public_deps = [ |
| 2219 ":test_support", | 2219 ":test_support", |
| 2220 "//base", | 2220 "//base", |
| 2221 "//chrome:resources", | 2221 "//chrome:resources", |
| 2222 "//chrome:strings", | 2222 "//chrome:strings", |
| 2223 "//chrome/browser", | 2223 "//chrome/browser", |
| 2224 "//chrome/common", | 2224 "//chrome/common", |
| 2225 "//mojo/edk/system", | 2225 "//mojo/edk/system", |
| 2226 "//mojo/environment:chromium", | |
| 2227 ] | 2226 ] |
| 2228 | 2227 |
| 2229 if (!is_android && use_ash) { | 2228 if (!is_android && use_ash) { |
| 2230 sources += rebase_path( | 2229 sources += rebase_path( |
| 2231 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 2230 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
| 2232 ".", | 2231 ".", |
| 2233 "//chrome") | 2232 "//chrome") |
| 2234 } | 2233 } |
| 2235 } | 2234 } |
| 2236 | 2235 |
| 2237 if (is_android) { | 2236 if (is_android) { |
| 2238 android_library("unit_tests_java") { | 2237 android_library("unit_tests_java") { |
| 2239 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2238 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2240 deps = [ | 2239 deps = [ |
| 2241 "//base:base_java", | 2240 "//base:base_java", |
| 2242 "//chrome/android:chrome_java", | 2241 "//chrome/android:chrome_java", |
| 2243 "//content/public/android:content_java", | 2242 "//content/public/android:content_java", |
| 2244 ] | 2243 ] |
| 2245 } | 2244 } |
| 2246 } | 2245 } |
| OLD | NEW |