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 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1205 # seems to come from //chrome/app:test_support. That reference maybe | 1205 # seems to come from //chrome/app:test_support. That reference maybe |
1206 # should be a dependency on the stubs instead because it could be all | 1206 # should be a dependency on the stubs instead because it could be all |
1207 # tests might want them. Or it could be that we need to make a new | 1207 # tests might want them. Or it could be that we need to make a new |
1208 # "headers" target to make GN check happy, and then force each | 1208 # "headers" target to make GN check happy, and then force each |
1209 # executable to link the correct implementation. Somebody with a | 1209 # executable to link the correct implementation. Somebody with a |
1210 # higher-level understanding of Mac crash reporting needs to think | 1210 # higher-level understanding of Mac crash reporting needs to think |
1211 # about this. | 1211 # about this. |
1212 # "//components/crash/content/app:breakpad_stubs", | 1212 # "//components/crash/content/app:breakpad_stubs", |
1213 "//third_party/ocmock", | 1213 "//third_party/ocmock", |
1214 ] | 1214 ] |
1215 sources += [ | 1215 sources += |
1216 "../browser/renderer_host/chrome_render_widget_host_view_mac_history_swi
per_browsertest.mm", | 1216 rebase_path(chrome_tests_gypi_values.chrome_browser_tests_mac_sources, |
1217 "../browser/spellchecker/spellcheck_message_filter_platform_mac_browsert
est.cc", | 1217 ".", |
1218 ] | 1218 "//chrome") |
1219 sources -= [ | 1219 sources -= [ |
1220 # TODO(groby): This test depends on hunspell and we cannot run it on | 1220 # TODO(groby): This test depends on hunspell and we cannot run it on |
1221 # Mac, which does not use hunspell by default. | 1221 # Mac, which does not use hunspell by default. |
1222 "../browser/spellchecker/spellcheck_service_browsertest.cc", | 1222 "../browser/spellchecker/spellcheck_service_browsertest.cc", |
1223 | 1223 |
1224 # ProcessSingletonMac doesn"t do anything. | 1224 # ProcessSingletonMac doesn"t do anything. |
1225 "../browser/process_singleton_browsertest.cc", | 1225 "../browser/process_singleton_browsertest.cc", |
1226 | 1226 |
1227 # This test depends on GetCommandLineForRelaunch, which is not | 1227 # This test depends on GetCommandLineForRelaunch, which is not |
1228 # available on Mac. | 1228 # available on Mac. |
(...skipping 1154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2383 if (is_android) { | 2383 if (is_android) { |
2384 android_library("unit_tests_java") { | 2384 android_library("unit_tests_java") { |
2385 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2385 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
2386 deps = [ | 2386 deps = [ |
2387 "//base:base_java", | 2387 "//base:base_java", |
2388 "//chrome/android:chrome_java", | 2388 "//chrome/android:chrome_java", |
2389 "//content/public/android:content_java", | 2389 "//content/public/android:content_java", |
2390 ] | 2390 ] |
2391 } | 2391 } |
2392 } | 2392 } |
OLD | NEW |