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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 "//chrome/app/chrome_crash_reporter_client.cc", | 182 "//chrome/app/chrome_crash_reporter_client.cc", |
183 "//chrome/app/chrome_crash_reporter_client_mac.mm", | 183 "//chrome/app/chrome_crash_reporter_client_mac.mm", |
184 ] | 184 ] |
185 public_deps += [ | 185 public_deps += [ |
186 "//breakpad", | 186 "//breakpad", |
187 "//components/crash/content/app", | 187 "//components/crash/content/app", |
188 "//third_party/ocmock", | 188 "//third_party/ocmock", |
189 ] | 189 ] |
190 } | 190 } |
191 if (is_win) { | 191 if (is_win) { |
192 sources += [ "//chrome/app/chrome_crash_reporter_client.cc" ] | 192 sources += [ "//chrome/app/chrome_crash_reporter_client_win.cc" ] |
193 public_deps += [ | 193 public_deps += [ |
194 "//components/crash/content/app", | 194 "//components/crash/content/app", |
195 "//third_party/wtl", | 195 "//third_party/wtl", |
196 ] | 196 ] |
197 if (use_aura) { | 197 if (use_aura) { |
198 public_deps += [ | 198 public_deps += [ |
199 "//win8:test_registrar_constants", | 199 "//win8:test_registrar_constants", |
200 "//win8:test_support_win8", | 200 "//win8:test_support_win8", |
201 ] | 201 ] |
202 } | 202 } |
(...skipping 2090 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2293 if (is_android) { | 2293 if (is_android) { |
2294 android_library("unit_tests_java") { | 2294 android_library("unit_tests_java") { |
2295 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2295 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
2296 deps = [ | 2296 deps = [ |
2297 "//base:base_java", | 2297 "//base:base_java", |
2298 "//chrome/android:chrome_java", | 2298 "//chrome/android:chrome_java", |
2299 "//content/public/android:content_java", | 2299 "//content/public/android:content_java", |
2300 ] | 2300 ] |
2301 } | 2301 } |
2302 } | 2302 } |
OLD | NEW |