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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 test_type = "webui" | 631 test_type = "webui" |
632 sources = rebase_path( | 632 sources = rebase_path( |
633 chrome_tests_gypi_values.chrome_browser_tests_webui_js_sources, | 633 chrome_tests_gypi_values.chrome_browser_tests_webui_js_sources, |
634 ".", | 634 ".", |
635 "//chrome") | 635 "//chrome") |
636 if (is_chrome_branded) { | 636 if (is_chrome_branded) { |
637 # crbug.com/230471 | 637 # crbug.com/230471 |
638 sources -= [ "data/webui/accessibility_audit_browsertest.js" ] | 638 sources -= [ "data/webui/accessibility_audit_browsertest.js" ] |
639 } | 639 } |
640 if (!is_chromeos) { | 640 if (!is_chromeos) { |
641 sources -= [ "data/webui/certificate_viewer_dialog_test.js" ] | 641 sources -= [ |
| 642 "data/webui/certificate_viewer_dialog_test.js", |
| 643 "data/webui/settings/bluetooth_page_browsertest_chromeos.js", |
| 644 ] |
642 } | 645 } |
643 if (!enable_app_list) { | 646 if (!enable_app_list) { |
644 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] | 647 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] |
645 } | 648 } |
646 if (!enable_supervised_users) { | 649 if (!enable_supervised_users) { |
647 sources -= | 650 sources -= |
648 [ "../browser/ui/webui/downloads_ui_supervised_browsertest.js" ] | 651 [ "../browser/ui/webui/downloads_ui_supervised_browsertest.js" ] |
649 } | 652 } |
650 if (!enable_print_preview) { | 653 if (!enable_print_preview) { |
651 sources -= [ "data/webui/print_preview.js" ] | 654 sources -= [ "data/webui/print_preview.js" ] |
(...skipping 1586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2238 if (is_android) { | 2241 if (is_android) { |
2239 android_library("unit_tests_java") { | 2242 android_library("unit_tests_java") { |
2240 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2243 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
2241 deps = [ | 2244 deps = [ |
2242 "//base:base_java", | 2245 "//base:base_java", |
2243 "//chrome/android:chrome_java", | 2246 "//chrome/android:chrome_java", |
2244 "//content/public/android:content_java", | 2247 "//content/public/android:content_java", |
2245 ] | 2248 ] |
2246 } | 2249 } |
2247 } | 2250 } |
OLD | NEW |