| 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 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 # seems to come from //chrome/app:test_support. That reference maybe | 1258 # seems to come from //chrome/app:test_support. That reference maybe |
| 1259 # should be a dependency on the stubs instead because it could be all | 1259 # should be a dependency on the stubs instead because it could be all |
| 1260 # tests might want them. Or it could be that we need to make a new | 1260 # tests might want them. Or it could be that we need to make a new |
| 1261 # "headers" target to make GN check happy, and then force each | 1261 # "headers" target to make GN check happy, and then force each |
| 1262 # executable to link the correct implementation. Somebody with a | 1262 # executable to link the correct implementation. Somebody with a |
| 1263 # higher-level understanding of Mac crash reporting needs to think | 1263 # higher-level understanding of Mac crash reporting needs to think |
| 1264 # about this. | 1264 # about this. |
| 1265 # "//components/crash/content/app:breakpad_stubs", | 1265 # "//components/crash/content/app:breakpad_stubs", |
| 1266 "//third_party/ocmock", | 1266 "//third_party/ocmock", |
| 1267 ] | 1267 ] |
| 1268 sources += [ | 1268 sources += |
| 1269 "../browser/renderer_host/chrome_render_widget_host_view_mac_history_swi
per_browsertest.mm", | 1269 rebase_path(chrome_tests_gypi_values.chrome_browser_tests_mac_sources, |
| 1270 "../browser/spellchecker/spellcheck_message_filter_platform_mac_browsert
est.cc", | 1270 ".", |
| 1271 ] | 1271 "//chrome") |
| 1272 sources -= [ | 1272 sources -= [ |
| 1273 # TODO(groby): This test depends on hunspell and we cannot run it on | 1273 # TODO(groby): This test depends on hunspell and we cannot run it on |
| 1274 # Mac, which does not use hunspell by default. | 1274 # Mac, which does not use hunspell by default. |
| 1275 "../browser/spellchecker/spellcheck_service_browsertest.cc", | 1275 "../browser/spellchecker/spellcheck_service_browsertest.cc", |
| 1276 | 1276 |
| 1277 # ProcessSingletonMac doesn"t do anything. | 1277 # ProcessSingletonMac doesn"t do anything. |
| 1278 "../browser/process_singleton_browsertest.cc", | 1278 "../browser/process_singleton_browsertest.cc", |
| 1279 | 1279 |
| 1280 # This test depends on GetCommandLineForRelaunch, which is not | 1280 # This test depends on GetCommandLineForRelaunch, which is not |
| 1281 # available on Mac. | 1281 # available on Mac. |
| (...skipping 1146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2428 if (is_android) { | 2428 if (is_android) { |
| 2429 android_library("unit_tests_java") { | 2429 android_library("unit_tests_java") { |
| 2430 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2430 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2431 deps = [ | 2431 deps = [ |
| 2432 "//base:base_java", | 2432 "//base:base_java", |
| 2433 "//chrome/android:chrome_java", | 2433 "//chrome/android:chrome_java", |
| 2434 "//content/public/android:content_java", | 2434 "//content/public/android:content_java", |
| 2435 ] | 2435 ] |
| 2436 } | 2436 } |
| 2437 } | 2437 } |
| OLD | NEW |