| 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 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1065 } | 1065 } |
| 1066 if (toolkit_views) { | 1066 if (toolkit_views) { |
| 1067 sources -= [ "../browser/ui/views/select_file_dialog_extension_browserte
st.cc" ] | 1067 sources -= [ "../browser/ui/views/select_file_dialog_extension_browserte
st.cc" ] |
| 1068 } | 1068 } |
| 1069 } | 1069 } |
| 1070 if (enable_configuration_policy) { | 1070 if (enable_configuration_policy) { |
| 1071 sources += rebase_path( | 1071 sources += rebase_path( |
| 1072 chrome_tests_gypi_values.chrome_browser_tests_policy_sources, | 1072 chrome_tests_gypi_values.chrome_browser_tests_policy_sources, |
| 1073 ".", | 1073 ".", |
| 1074 "//chrome") | 1074 "//chrome") |
| 1075 if (is_chromeos) { |
| 1076 deps += [ "//components/arc:arc_test_support" ] |
| 1077 } |
| 1075 } | 1078 } |
| 1076 if (enable_web_speech) { | 1079 if (enable_web_speech) { |
| 1077 sources += rebase_path( | 1080 sources += rebase_path( |
| 1078 chrome_tests_gypi_values.chrome_browser_tests_speech_sources, | 1081 chrome_tests_gypi_values.chrome_browser_tests_speech_sources, |
| 1079 ".", | 1082 ".", |
| 1080 "//chrome") | 1083 "//chrome") |
| 1081 } | 1084 } |
| 1082 if (safe_browsing_mode == 1) { | 1085 if (safe_browsing_mode == 1) { |
| 1083 sources += rebase_path( | 1086 sources += rebase_path( |
| 1084 chrome_tests_gypi_values.chrome_browser_tests_full_safe_browsing_s
ources, | 1087 chrome_tests_gypi_values.chrome_browser_tests_full_safe_browsing_s
ources, |
| (...skipping 1154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2239 if (is_android) { | 2242 if (is_android) { |
| 2240 android_library("unit_tests_java") { | 2243 android_library("unit_tests_java") { |
| 2241 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2244 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2242 deps = [ | 2245 deps = [ |
| 2243 "//base:base_java", | 2246 "//base:base_java", |
| 2244 "//chrome/android:chrome_java", | 2247 "//chrome/android:chrome_java", |
| 2245 "//content/public/android:content_java", | 2248 "//content/public/android:content_java", |
| 2246 ] | 2249 ] |
| 2247 } | 2250 } |
| 2248 } | 2251 } |
| OLD | NEW |