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 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1309 "../browser/service_process/service_process_control_browsertest.cc", | 1309 "../browser/service_process/service_process_control_browsertest.cc", |
1310 "../browser/ui/webui/print_preview/print_preview_ui_browsertest.cc", | 1310 "../browser/ui/webui/print_preview/print_preview_ui_browsertest.cc", |
1311 "data/webui/print_preview.cc", | 1311 "data/webui/print_preview.cc", |
1312 "data/webui/print_preview.h", | 1312 "data/webui/print_preview.h", |
1313 ] | 1313 ] |
1314 } | 1314 } |
1315 if (enable_mdns) { | 1315 if (enable_mdns) { |
1316 sources += [ "../browser/ui/webui/local_discovery/local_discovery_ui_brows
ertest.cc" ] | 1316 sources += [ "../browser/ui/webui/local_discovery/local_discovery_ui_brows
ertest.cc" ] |
1317 } | 1317 } |
1318 if (use_brlapi) { | 1318 if (use_brlapi) { |
1319 deps += [ "//build/linux:libbrlapi" ] | 1319 deps += [ "//build/linux/libbrlapi" ] |
1320 } else { | 1320 } else { |
1321 sources -= [ "../browser/extensions/api/braille_display_private/braille_di
splay_private_apitest.cc" ] | 1321 sources -= [ "../browser/extensions/api/braille_display_private/braille_di
splay_private_apitest.cc" ] |
1322 } | 1322 } |
1323 if (is_chrome_branded) { | 1323 if (is_chrome_branded) { |
1324 sources -= [ | 1324 sources -= [ |
1325 # These tests depend on single process mode, which is disabled in | 1325 # These tests depend on single process mode, which is disabled in |
1326 # official builds. | 1326 # official builds. |
1327 "../renderer/safe_browsing/phishing_classifier_browsertest.cc", | 1327 "../renderer/safe_browsing/phishing_classifier_browsertest.cc", |
1328 "../renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc", | 1328 "../renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc", |
1329 ] | 1329 ] |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1830 } | 1830 } |
1831 if (!is_android && !is_ios && !is_chromeos) { | 1831 if (!is_android && !is_ios && !is_chromeos) { |
1832 sources += [ | 1832 sources += [ |
1833 "../browser/net/disk_cache_dir_policy_handler_unittest.cc", | 1833 "../browser/net/disk_cache_dir_policy_handler_unittest.cc", |
1834 "//chrome/browser/profiles/profile_list_desktop_unittest.cc", | 1834 "//chrome/browser/profiles/profile_list_desktop_unittest.cc", |
1835 "//chrome/browser/profiles/profile_statistics_unittest.cc", | 1835 "//chrome/browser/profiles/profile_statistics_unittest.cc", |
1836 ] | 1836 ] |
1837 } | 1837 } |
1838 if (!is_chromeos && !use_ozone && is_linux) { | 1838 if (!is_chromeos && !use_ozone && is_linux) { |
1839 deps += [ | 1839 deps += [ |
1840 "//build/linux:gio", | 1840 "//build/linux/libgio", |
1841 "//chrome/browser/ui/libgtk2ui", | 1841 "//chrome/browser/ui/libgtk2ui", |
1842 ] | 1842 ] |
1843 } | 1843 } |
1844 | 1844 |
1845 if (enable_task_manager) { | 1845 if (enable_task_manager) { |
1846 sources += rebase_path( | 1846 sources += rebase_path( |
1847 chrome_tests_unit_gypi_values.chrome_unit_tests_task_manager_sources
, | 1847 chrome_tests_unit_gypi_values.chrome_unit_tests_task_manager_sources
, |
1848 ".", | 1848 ".", |
1849 "//chrome") | 1849 "//chrome") |
1850 } | 1850 } |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2276 if (is_android) { | 2276 if (is_android) { |
2277 android_library("unit_tests_java") { | 2277 android_library("unit_tests_java") { |
2278 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2278 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
2279 deps = [ | 2279 deps = [ |
2280 "//base:base_java", | 2280 "//base:base_java", |
2281 "//chrome/android:chrome_java", | 2281 "//chrome/android:chrome_java", |
2282 "//content/public/android:content_java", | 2282 "//content/public/android:content_java", |
2283 ] | 2283 ] |
2284 } | 2284 } |
2285 } | 2285 } |
OLD | NEW |