| 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 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 if (!is_chromeos) { | 645 if (!is_chromeos) { |
| 646 sources -= [ | 646 sources -= [ |
| 647 "data/webui/certificate_viewer_dialog_test.js", | 647 "data/webui/certificate_viewer_dialog_test.js", |
| 648 "data/webui/settings/bluetooth_page_browsertest_chromeos.js", | 648 "data/webui/settings/bluetooth_page_browsertest_chromeos.js", |
| 649 "data/webui/settings/change_picture_browsertest_chromeos.js", | 649 "data/webui/settings/change_picture_browsertest_chromeos.js", |
| 650 ] | 650 ] |
| 651 } | 651 } |
| 652 if (!enable_app_list) { | 652 if (!enable_app_list) { |
| 653 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] | 653 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] |
| 654 } | 654 } |
| 655 if (!enable_supervised_users) { | |
| 656 sources -= | |
| 657 [ "../browser/ui/webui/downloads_ui_supervised_browsertest.js" ] | |
| 658 } | |
| 659 if (!enable_print_preview) { | 655 if (!enable_print_preview) { |
| 660 sources -= [ "data/webui/print_preview.js" ] | 656 sources -= [ "data/webui/print_preview.js" ] |
| 661 } | 657 } |
| 662 if (enable_media_router) { | 658 if (enable_media_router) { |
| 663 sources += | 659 sources += |
| 664 [ "data/webui/media_router/media_router_elements_browsertest.js" ] | 660 [ "data/webui/media_router/media_router_elements_browsertest.js" ] |
| 665 } | 661 } |
| 666 deps = [ | 662 deps = [ |
| 667 "//chrome/browser/ui", | 663 "//chrome/browser/ui", |
| 668 "//skia", | 664 "//skia", |
| (...skipping 1559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2228 if (is_android) { | 2224 if (is_android) { |
| 2229 android_library("unit_tests_java") { | 2225 android_library("unit_tests_java") { |
| 2230 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2226 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2231 deps = [ | 2227 deps = [ |
| 2232 "//base:base_java", | 2228 "//base:base_java", |
| 2233 "//chrome/android:chrome_java", | 2229 "//chrome/android:chrome_java", |
| 2234 "//content/public/android:content_java", | 2230 "//content/public/android:content_java", |
| 2235 ] | 2231 ] |
| 2236 } | 2232 } |
| 2237 } | 2233 } |
| OLD | NEW |