| 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 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 ".", | 657 ".", |
| 658 "//chrome") | 658 "//chrome") |
| 659 if (is_chrome_branded) { | 659 if (is_chrome_branded) { |
| 660 # crbug.com/230471 | 660 # crbug.com/230471 |
| 661 sources -= [ "data/webui/accessibility_audit_browsertest.js" ] | 661 sources -= [ "data/webui/accessibility_audit_browsertest.js" ] |
| 662 } | 662 } |
| 663 if (!is_chromeos) { | 663 if (!is_chromeos) { |
| 664 sources -= [ | 664 sources -= [ |
| 665 "data/webui/certificate_viewer_dialog_test.js", | 665 "data/webui/certificate_viewer_dialog_test.js", |
| 666 "data/webui/settings/bluetooth_page_browsertest_chromeos.js", | 666 "data/webui/settings/bluetooth_page_browsertest_chromeos.js", |
| 667 "data/webui/settings/change_picture_browsertest_chromeos.js", | |
| 668 "data/webui/settings/easy_unlock_browsertest_chromeos.js", | 667 "data/webui/settings/easy_unlock_browsertest_chromeos.js", |
| 669 ] | 668 ] |
| 670 } | 669 } |
| 671 if (!enable_app_list) { | 670 if (!enable_app_list) { |
| 672 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] | 671 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] |
| 673 } | 672 } |
| 674 if (!enable_print_preview) { | 673 if (!enable_print_preview) { |
| 675 sources -= [ "data/webui/print_preview.js" ] | 674 sources -= [ "data/webui/print_preview.js" ] |
| 676 } | 675 } |
| 677 if (enable_media_router) { | 676 if (enable_media_router) { |
| (...skipping 1614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2292 if (is_android) { | 2291 if (is_android) { |
| 2293 android_library("unit_tests_java") { | 2292 android_library("unit_tests_java") { |
| 2294 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2293 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2295 deps = [ | 2294 deps = [ |
| 2296 "//base:base_java", | 2295 "//base:base_java", |
| 2297 "//chrome/android:chrome_java", | 2296 "//chrome/android:chrome_java", |
| 2298 "//content/public/android:content_java", | 2297 "//content/public/android:content_java", |
| 2299 ] | 2298 ] |
| 2300 } | 2299 } |
| 2301 } | 2300 } |
| OLD | NEW |