| 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 2159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2170 chrome_tests_unit_gypi_values.chrome_unit_tests_app_list_chromeos_ar
c_sources, | 2170 chrome_tests_unit_gypi_values.chrome_unit_tests_app_list_chromeos_ar
c_sources, |
| 2171 ".", | 2171 ".", |
| 2172 "//chrome") | 2172 "//chrome") |
| 2173 deps += [ "//components/arc:arc_test_support" ] | 2173 deps += [ "//components/arc:arc_test_support" ] |
| 2174 } | 2174 } |
| 2175 if (enable_plugins && !enable_plugin_installation) { | 2175 if (enable_plugins && !enable_plugin_installation) { |
| 2176 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] | 2176 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] |
| 2177 } | 2177 } |
| 2178 } | 2178 } |
| 2179 | 2179 |
| 2180 if (is_win || is_mac || (is_linux && !is_chromeos)) { | 2180 if (is_win || is_mac || is_linux) { |
| 2181 # TODO(GYP): Figure out which of these work and are needed on other | 2181 # TODO(GYP): Figure out which of these work and are needed on other |
| 2182 # platforms. | 2182 # platforms. |
| 2183 test("chrome_app_unittests") { | 2183 test("chrome_app_unittests") { |
| 2184 sources = [ | 2184 sources = [ |
| 2185 "../app/chrome_watcher_client_unittest_win.cc", | 2185 "../app/chrome_watcher_client_unittest_win.cc", |
| 2186 "../app/chrome_watcher_client_win.cc", | 2186 "../app/chrome_watcher_client_win.cc", |
| 2187 "../app/chrome_watcher_command_line_win.cc", | 2187 "../app/chrome_watcher_command_line_win.cc", |
| 2188 "../app/chrome_watcher_command_line_win_unittest.cc", | 2188 "../app/chrome_watcher_command_line_win_unittest.cc", |
| 2189 "../app/delay_load_hook_unittest_win.cc", | 2189 "../app/delay_load_hook_unittest_win.cc", |
| 2190 "../app/delay_load_hook_win.cc", | 2190 "../app/delay_load_hook_win.cc", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2293 if (is_android) { | 2293 if (is_android) { |
| 2294 android_library("unit_tests_java") { | 2294 android_library("unit_tests_java") { |
| 2295 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2295 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2296 deps = [ | 2296 deps = [ |
| 2297 "//base:base_java", | 2297 "//base:base_java", |
| 2298 "//chrome/android:chrome_java", | 2298 "//chrome/android:chrome_java", |
| 2299 "//content/public/android:content_java", | 2299 "//content/public/android:content_java", |
| 2300 ] | 2300 ] |
| 2301 } | 2301 } |
| 2302 } | 2302 } |
| OLD | NEW |