| 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 2210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2221 } | 2221 } |
| 2222 if (enable_rlz_support) { | 2222 if (enable_rlz_support) { |
| 2223 sources += [ "../browser/rlz/chrome_rlz_tracker_delegate_unittest.cc" ] | 2223 sources += [ "../browser/rlz/chrome_rlz_tracker_delegate_unittest.cc" ] |
| 2224 deps += [ | 2224 deps += [ |
| 2225 "//chrome/browser:rlz", | 2225 "//chrome/browser:rlz", |
| 2226 "//components/rlz", | 2226 "//components/rlz", |
| 2227 "//rlz:test_support", | 2227 "//rlz:test_support", |
| 2228 ] | 2228 ] |
| 2229 } | 2229 } |
| 2230 if (is_win) { | 2230 if (is_win) { |
| 2231 # The PDB gets too large for incremental linking. | 2231 if (!is_component_build) { |
| 2232 configs -= [ "//build/config/win:default_incremental_linking" ] | 2232 # The PDB gets too large for incremental linking. |
| 2233 configs += [ "//build/config/win:no_incremental_linking" ] | 2233 configs -= [ "//build/config/win:default_incremental_linking" ] |
| 2234 configs += |
| 2235 [ "//build/config/win:default_large_module_incremental_linking" ] |
| 2236 } |
| 2234 | 2237 |
| 2235 sources += | 2238 sources += |
| 2236 rebase_path(chrome_tests_unit_gypi_values.chrome_unit_tests_win_sources, | 2239 rebase_path(chrome_tests_unit_gypi_values.chrome_unit_tests_win_sources, |
| 2237 ".", | 2240 ".", |
| 2238 "//chrome") | 2241 "//chrome") |
| 2239 deps += [ | 2242 deps += [ |
| 2240 "//chrome:other_version", | 2243 "//chrome:other_version", |
| 2241 "//chrome/install_static:install_static_util", | 2244 "//chrome/install_static:install_static_util", |
| 2242 "//chrome/installer/util:strings", | 2245 "//chrome/installer/util:strings", |
| 2243 "//chrome_elf:blacklist_test_dll_1", | 2246 "//chrome_elf:blacklist_test_dll_1", |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2491 if (is_android) { | 2494 if (is_android) { |
| 2492 android_library("unit_tests_java") { | 2495 android_library("unit_tests_java") { |
| 2493 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2496 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2494 deps = [ | 2497 deps = [ |
| 2495 "//base:base_java", | 2498 "//base:base_java", |
| 2496 "//chrome/android:chrome_java", | 2499 "//chrome/android:chrome_java", |
| 2497 "//content/public/android:content_java", | 2500 "//content/public/android:content_java", |
| 2498 ] | 2501 ] |
| 2499 } | 2502 } |
| 2500 } | 2503 } |
| OLD | NEW |