| 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 2171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2182 "base/run_all_unittests.cc", | 2182 "base/run_all_unittests.cc", |
| 2183 ] | 2183 ] |
| 2184 | 2184 |
| 2185 public_deps = [ | 2185 public_deps = [ |
| 2186 ":test_support", | 2186 ":test_support", |
| 2187 "//base", | 2187 "//base", |
| 2188 "//chrome:resources", | 2188 "//chrome:resources", |
| 2189 "//chrome:strings", | 2189 "//chrome:strings", |
| 2190 "//chrome/browser", | 2190 "//chrome/browser", |
| 2191 "//chrome/common", | 2191 "//chrome/common", |
| 2192 "//mojo/edk/system", |
| 2192 "//mojo/environment:chromium", | 2193 "//mojo/environment:chromium", |
| 2193 "//third_party/mojo/src/mojo/edk/system", | |
| 2194 ] | 2194 ] |
| 2195 | 2195 |
| 2196 if (!is_android && use_ash) { | 2196 if (!is_android && use_ash) { |
| 2197 sources += rebase_path( | 2197 sources += rebase_path( |
| 2198 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 2198 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
| 2199 ".", | 2199 ".", |
| 2200 "//chrome") | 2200 "//chrome") |
| 2201 } | 2201 } |
| 2202 } | 2202 } |
| 2203 | 2203 |
| 2204 if (is_android) { | 2204 if (is_android) { |
| 2205 android_library("unit_tests_java") { | 2205 android_library("unit_tests_java") { |
| 2206 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2206 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2207 deps = [ | 2207 deps = [ |
| 2208 "//base:base_java", | 2208 "//base:base_java", |
| 2209 "//chrome/android:chrome_java", | 2209 "//chrome/android:chrome_java", |
| 2210 "//content/public/android:content_java", | 2210 "//content/public/android:content_java", |
| 2211 ] | 2211 ] |
| 2212 } | 2212 } |
| 2213 } | 2213 } |
| OLD | NEW |