| 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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 ".", | 640 ".", |
| 641 "//chrome") | 641 "//chrome") |
| 642 if (is_chrome_branded) { | 642 if (is_chrome_branded) { |
| 643 # crbug.com/230471 | 643 # crbug.com/230471 |
| 644 sources -= [ "data/webui/accessibility_audit_browsertest.js" ] | 644 sources -= [ "data/webui/accessibility_audit_browsertest.js" ] |
| 645 } | 645 } |
| 646 if (!is_chromeos) { | 646 if (!is_chromeos) { |
| 647 sources -= [ | 647 sources -= [ |
| 648 "data/webui/certificate_viewer_dialog_test.js", | 648 "data/webui/certificate_viewer_dialog_test.js", |
| 649 "data/webui/settings/bluetooth_page_browsertest_chromeos.js", | 649 "data/webui/settings/bluetooth_page_browsertest_chromeos.js", |
| 650 "data/webui/settings/change_picture_browsertest_chromeos.js", | |
| 651 "data/webui/settings/easy_unlock_browsertest_chromeos.js", | 650 "data/webui/settings/easy_unlock_browsertest_chromeos.js", |
| 652 ] | 651 ] |
| 653 } | 652 } |
| 654 if (!enable_app_list) { | 653 if (!enable_app_list) { |
| 655 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] | 654 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] |
| 656 } | 655 } |
| 657 if (!enable_print_preview) { | 656 if (!enable_print_preview) { |
| 658 sources -= [ "data/webui/print_preview.js" ] | 657 sources -= [ "data/webui/print_preview.js" ] |
| 659 } | 658 } |
| 660 if (enable_media_router) { | 659 if (enable_media_router) { |
| (...skipping 1603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2264 if (is_android) { | 2263 if (is_android) { |
| 2265 android_library("unit_tests_java") { | 2264 android_library("unit_tests_java") { |
| 2266 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2265 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2267 deps = [ | 2266 deps = [ |
| 2268 "//base:base_java", | 2267 "//base:base_java", |
| 2269 "//chrome/android:chrome_java", | 2268 "//chrome/android:chrome_java", |
| 2270 "//content/public/android:content_java", | 2269 "//content/public/android:content_java", |
| 2271 ] | 2270 ] |
| 2272 } | 2271 } |
| 2273 } | 2272 } |
| OLD | NEW |