| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 "//chrome/app/chrome_crash_reporter_client.cc", | 187 "//chrome/app/chrome_crash_reporter_client.cc", |
| 188 "//chrome/app/chrome_crash_reporter_client_mac.mm", | 188 "//chrome/app/chrome_crash_reporter_client_mac.mm", |
| 189 ] | 189 ] |
| 190 public_deps += [ | 190 public_deps += [ |
| 191 "//breakpad", | 191 "//breakpad", |
| 192 "//components/crash/content/app", | 192 "//components/crash/content/app", |
| 193 "//third_party/ocmock", | 193 "//third_party/ocmock", |
| 194 ] | 194 ] |
| 195 } | 195 } |
| 196 if (is_win) { | 196 if (is_win) { |
| 197 public_deps += [ "//third_party/wtl" ] | 197 public_deps += [ |
| 198 "//components/crash/content/app", |
| 199 "//third_party/wtl", |
| 200 ] |
| 198 if (use_aura) { | 201 if (use_aura) { |
| 199 public_deps += [ | 202 public_deps += [ |
| 200 "//win8:test_registrar_constants", | 203 "//win8:test_registrar_constants", |
| 201 "//win8:test_support_win8", | 204 "//win8:test_support_win8", |
| 202 ] | 205 ] |
| 203 } | 206 } |
| 204 } | 207 } |
| 205 if (is_chromeos) { | 208 if (is_chromeos) { |
| 206 public_deps += [ "//components/ownership" ] | 209 public_deps += [ "//components/ownership" ] |
| 207 } | 210 } |
| (...skipping 2023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2231 if (is_android) { | 2234 if (is_android) { |
| 2232 android_library("unit_tests_java") { | 2235 android_library("unit_tests_java") { |
| 2233 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2236 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2234 deps = [ | 2237 deps = [ |
| 2235 "//base:base_java", | 2238 "//base:base_java", |
| 2236 "//chrome/android:chrome_java", | 2239 "//chrome/android:chrome_java", |
| 2237 "//content/public/android:content_java", | 2240 "//content/public/android:content_java", |
| 2238 ] | 2241 ] |
| 2239 } | 2242 } |
| 2240 } | 2243 } |
| OLD | NEW |