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 += [ | 1180 deps += [ "//base/trace_event/etw_manifest:chrome_events_win" ] |
1181 "//base/trace_event/etw_manifest:chrome_events_win", | |
1182 "//base/win:base_win_features", | |
1183 ] | |
1184 | 1181 |
1185 if (is_component_build) { | 1182 if (is_component_build) { |
1186 # Copy the VS runtime DLLs into the isolate so that they don't have to be | 1183 # Copy the VS runtime DLLs into the isolate so that they don't have to be |
1187 # preinstalled on the target machine. The debug runtimes have a "d" at | 1184 # preinstalled on the target machine. The debug runtimes have a "d" at |
1188 # the end. | 1185 # the end. |
1189 if (is_debug) { | 1186 if (is_debug) { |
1190 vcrt_suffix = "d" | 1187 vcrt_suffix = "d" |
1191 } else { | 1188 } else { |
1192 vcrt_suffix = "" | 1189 vcrt_suffix = "" |
1193 } | 1190 } |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1627 "//build/config/sanitizers:deps", | 1624 "//build/config/sanitizers:deps", |
1628 ] | 1625 ] |
1629 } | 1626 } |
1630 | 1627 |
1631 loadable_module("scoped_handle_test_dll") { | 1628 loadable_module("scoped_handle_test_dll") { |
1632 sources = [ | 1629 sources = [ |
1633 "win/scoped_handle_test_dll.cc", | 1630 "win/scoped_handle_test_dll.cc", |
1634 ] | 1631 ] |
1635 deps = [ | 1632 deps = [ |
1636 ":base", | 1633 ":base", |
1637 "//base/win:base_win_features", | |
1638 ] | 1634 ] |
1639 } | 1635 } |
1640 | 1636 |
1641 if (target_cpu == "x64") { | 1637 if (target_cpu == "x64") { |
1642 # Must be a shared library so that it can be unloaded during testing. | 1638 # Must be a shared library so that it can be unloaded during testing. |
1643 shared_library("base_profiler_test_support_library") { | 1639 shared_library("base_profiler_test_support_library") { |
1644 sources = [ | 1640 sources = [ |
1645 "profiler/test_support_library.cc", | 1641 "profiler/test_support_library.cc", |
1646 ] | 1642 ] |
1647 deps = [ | 1643 deps = [ |
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2380 | 2376 |
2381 # GYP: //base.gyp:base_java_unittest_support | 2377 # GYP: //base.gyp:base_java_unittest_support |
2382 android_library("base_java_unittest_support") { | 2378 android_library("base_java_unittest_support") { |
2383 deps = [ | 2379 deps = [ |
2384 ":base_java", | 2380 ":base_java", |
2385 ] | 2381 ] |
2386 java_files = | 2382 java_files = |
2387 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2383 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2388 } | 2384 } |
2389 } | 2385 } |
OLD | NEW |