| 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 2275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2286 } | 2286 } |
| 2287 | 2287 |
| 2288 if (!is_android) { | 2288 if (!is_android) { |
| 2289 # TODO(609855): Make this compile on Android and run on the bots. | 2289 # TODO(609855): Make this compile on Android and run on the bots. |
| 2290 test("chrome_app_unittests") { | 2290 test("chrome_app_unittests") { |
| 2291 sources = [ | 2291 sources = [ |
| 2292 "../app/chrome_watcher_client_unittest_win.cc", | 2292 "../app/chrome_watcher_client_unittest_win.cc", |
| 2293 "../app/chrome_watcher_client_win.cc", | 2293 "../app/chrome_watcher_client_win.cc", |
| 2294 "../app/chrome_watcher_command_line_win.cc", | 2294 "../app/chrome_watcher_command_line_win.cc", |
| 2295 "../app/chrome_watcher_command_line_win_unittest.cc", | 2295 "../app/chrome_watcher_command_line_win_unittest.cc", |
| 2296 "../app/delay_load_hook_unittest_win.cc", | |
| 2297 "../app/delay_load_hook_win.cc", | |
| 2298 "../app/delay_load_hook_win.h", | |
| 2299 "../app/resources/resources_unittest.cc", | 2296 "../app/resources/resources_unittest.cc", |
| 2300 "../common/crash_keys.cc", | 2297 "../common/crash_keys.cc", |
| 2301 "../common/crash_keys.h", | 2298 "../common/crash_keys.h", |
| 2302 ] | 2299 ] |
| 2303 deps = [ | 2300 deps = [ |
| 2304 ":test_support", | 2301 ":test_support", |
| 2305 "//base/test:run_all_unittests", | 2302 "//base/test:run_all_unittests", |
| 2306 "//base/test:test_support", | 2303 "//base/test:test_support", |
| 2307 "//breakpad:client", | 2304 "//breakpad:client", |
| 2308 "//chrome/browser", | 2305 "//chrome/browser", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2390 if (is_android) { | 2387 if (is_android) { |
| 2391 android_library("unit_tests_java") { | 2388 android_library("unit_tests_java") { |
| 2392 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2389 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2393 deps = [ | 2390 deps = [ |
| 2394 "//base:base_java", | 2391 "//base:base_java", |
| 2395 "//chrome/android:chrome_java", | 2392 "//chrome/android:chrome_java", |
| 2396 "//content/public/android:content_java", | 2393 "//content/public/android:content_java", |
| 2397 ] | 2394 ] |
| 2398 } | 2395 } |
| 2399 } | 2396 } |
| OLD | NEW |