| 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 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 "//chrome") | 643 "//chrome") |
| 644 if (is_chrome_branded) { | 644 if (is_chrome_branded) { |
| 645 # crbug.com/230471 | 645 # crbug.com/230471 |
| 646 sources -= [ "data/webui/accessibility_audit_browsertest.js" ] | 646 sources -= [ "data/webui/accessibility_audit_browsertest.js" ] |
| 647 } | 647 } |
| 648 if (!is_chromeos) { | 648 if (!is_chromeos) { |
| 649 sources -= [ | 649 sources -= [ |
| 650 "data/webui/certificate_viewer_dialog_test.js", | 650 "data/webui/certificate_viewer_dialog_test.js", |
| 651 "data/webui/settings/bluetooth_page_browsertest_chromeos.js", | 651 "data/webui/settings/bluetooth_page_browsertest_chromeos.js", |
| 652 "data/webui/settings/change_picture_browsertest_chromeos.js", | 652 "data/webui/settings/change_picture_browsertest_chromeos.js", |
| 653 "data/webui/settings/easy_unlock_browsertest_chromeos.js", |
| 653 ] | 654 ] |
| 654 } | 655 } |
| 655 if (!enable_app_list) { | 656 if (!enable_app_list) { |
| 656 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] | 657 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] |
| 657 } | 658 } |
| 658 if (!enable_print_preview) { | 659 if (!enable_print_preview) { |
| 659 sources -= [ "data/webui/print_preview.js" ] | 660 sources -= [ "data/webui/print_preview.js" ] |
| 660 } | 661 } |
| 661 if (enable_media_router) { | 662 if (enable_media_router) { |
| 662 sources += | 663 sources += |
| (...skipping 1576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2239 if (is_android) { | 2240 if (is_android) { |
| 2240 android_library("unit_tests_java") { | 2241 android_library("unit_tests_java") { |
| 2241 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2242 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2242 deps = [ | 2243 deps = [ |
| 2243 "//base:base_java", | 2244 "//base:base_java", |
| 2244 "//chrome/android:chrome_java", | 2245 "//chrome/android:chrome_java", |
| 2245 "//content/public/android:content_java", | 2246 "//content/public/android:content_java", |
| 2246 ] | 2247 ] |
| 2247 } | 2248 } |
| 2248 } | 2249 } |
| OLD | NEW |