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