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