| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 "//components/user_manager:test_support", | 146 "//components/user_manager:test_support", |
| 147 "//components/web_resource:test_support", | 147 "//components/web_resource:test_support", |
| 148 "//content/public/child", | 148 "//content/public/child", |
| 149 "//content/public/common", | 149 "//content/public/common", |
| 150 "//content/public/plugin", | 150 "//content/public/plugin", |
| 151 "//content/public/renderer", | 151 "//content/public/renderer", |
| 152 "//content/public/utility", | 152 "//content/public/utility", |
| 153 "//google_apis:test_support", | 153 "//google_apis:test_support", |
| 154 "//ipc:test_support", | 154 "//ipc:test_support", |
| 155 "//media:test_support", | 155 "//media:test_support", |
| 156 "//ppapi/shared_impl", | |
| 157 "//sql:test_support", | 156 "//sql:test_support", |
| 158 "//third_party/leveldatabase", | 157 "//third_party/leveldatabase", |
| 159 "//ui/base", | 158 "//ui/base", |
| 160 "//ui/events:events_base", | 159 "//ui/events:events_base", |
| 161 "//ui/gl", | 160 "//ui/gl", |
| 162 ] | 161 ] |
| 163 } | 162 } |
| 163 if (enable_plugins) { |
| 164 public_deps += [ "//ppapi/shared_impl" ] |
| 165 } |
| 164 | 166 |
| 165 if (is_android) { | 167 if (is_android) { |
| 166 public_deps -= [ "//ui/message_center:test_support" ] | 168 public_deps -= [ "//ui/message_center:test_support" ] |
| 167 sources -= [ | 169 sources -= [ |
| 168 "base/dialog_test_browser_window.cc", | 170 "base/dialog_test_browser_window.cc", |
| 169 "base/dialog_test_browser_window.h", | 171 "base/dialog_test_browser_window.h", |
| 170 "base/test_browser_window.cc", | 172 "base/test_browser_window.cc", |
| 171 "base/test_browser_window.h", | 173 "base/test_browser_window.h", |
| 172 ] | 174 ] |
| 173 } | 175 } |
| (...skipping 2059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2233 if (is_android) { | 2235 if (is_android) { |
| 2234 android_library("unit_tests_java") { | 2236 android_library("unit_tests_java") { |
| 2235 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2237 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2236 deps = [ | 2238 deps = [ |
| 2237 "//base:base_java", | 2239 "//base:base_java", |
| 2238 "//chrome/android:chrome_java", | 2240 "//chrome/android:chrome_java", |
| 2239 "//content/public/android:content_java", | 2241 "//content/public/android:content_java", |
| 2240 ] | 2242 ] |
| 2241 } | 2243 } |
| 2242 } | 2244 } |
| OLD | NEW |