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