OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # HOW TO WRITE CONDITIONALS IN THIS FILE | 5 # HOW TO WRITE CONDITIONALS IN THIS FILE |
6 # ====================================== | 6 # ====================================== |
7 # | 7 # |
8 # In many other places, one would write a conditional that expresses all the | 8 # In many other places, one would write a conditional that expresses all the |
9 # cases when a source file is used or unused, and then either add or subtract | 9 # cases when a source file is used or unused, and then either add or subtract |
10 # it from the sources list in that case | 10 # it from the sources list in that case |
(...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1170 | 1170 |
1171 sources -= [ | 1171 sources -= [ |
1172 "message_loop/message_pump_libevent.cc", | 1172 "message_loop/message_pump_libevent.cc", |
1173 "strings/string16.cc", | 1173 "strings/string16.cc", |
1174 | 1174 |
1175 # Not using sha1_win.cc because it may have caused a | 1175 # Not using sha1_win.cc because it may have caused a |
1176 # regression to page cycler moz. | 1176 # regression to page cycler moz. |
1177 "sha1_win.cc", | 1177 "sha1_win.cc", |
1178 ] | 1178 ] |
1179 | 1179 |
1180 deps += [ "//base/trace_event/etw_manifest:chrome_events_win" ] | 1180 deps += [ |
| 1181 "//base/trace_event/etw_manifest:chrome_events_win", |
| 1182 "//base/win:base_win_features", |
| 1183 ] |
1181 | 1184 |
1182 if (is_component_build) { | 1185 if (is_component_build) { |
1183 # Copy the VS runtime DLLs into the isolate so that they don't have to be | 1186 # Copy the VS runtime DLLs into the isolate so that they don't have to be |
1184 # preinstalled on the target machine. The debug runtimes have a "d" at | 1187 # preinstalled on the target machine. The debug runtimes have a "d" at |
1185 # the end. | 1188 # the end. |
1186 if (is_debug) { | 1189 if (is_debug) { |
1187 vcrt_suffix = "d" | 1190 vcrt_suffix = "d" |
1188 } else { | 1191 } else { |
1189 vcrt_suffix = "" | 1192 vcrt_suffix = "" |
1190 } | 1193 } |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1624 "//build/config/sanitizers:deps", | 1627 "//build/config/sanitizers:deps", |
1625 ] | 1628 ] |
1626 } | 1629 } |
1627 | 1630 |
1628 loadable_module("scoped_handle_test_dll") { | 1631 loadable_module("scoped_handle_test_dll") { |
1629 sources = [ | 1632 sources = [ |
1630 "win/scoped_handle_test_dll.cc", | 1633 "win/scoped_handle_test_dll.cc", |
1631 ] | 1634 ] |
1632 deps = [ | 1635 deps = [ |
1633 ":base", | 1636 ":base", |
| 1637 "//base/win:base_win_features", |
1634 ] | 1638 ] |
1635 } | 1639 } |
1636 | 1640 |
1637 if (target_cpu == "x64") { | 1641 if (target_cpu == "x64") { |
1638 # Must be a shared library so that it can be unloaded during testing. | 1642 # Must be a shared library so that it can be unloaded during testing. |
1639 shared_library("base_profiler_test_support_library") { | 1643 shared_library("base_profiler_test_support_library") { |
1640 sources = [ | 1644 sources = [ |
1641 "profiler/test_support_library.cc", | 1645 "profiler/test_support_library.cc", |
1642 ] | 1646 ] |
1643 deps = [ | 1647 deps = [ |
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2376 | 2380 |
2377 # GYP: //base.gyp:base_java_unittest_support | 2381 # GYP: //base.gyp:base_java_unittest_support |
2378 android_library("base_java_unittest_support") { | 2382 android_library("base_java_unittest_support") { |
2379 deps = [ | 2383 deps = [ |
2380 ":base_java", | 2384 ":base_java", |
2381 ] | 2385 ] |
2382 java_files = | 2386 java_files = |
2383 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2387 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2384 } | 2388 } |
2385 } | 2389 } |
OLD | NEW |