| 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 1203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1214 ] | 1214 ] |
| 1215 | 1215 |
| 1216 sources -= [ | 1216 sources -= [ |
| 1217 "message_loop/message_pump_libevent.cc", | 1217 "message_loop/message_pump_libevent.cc", |
| 1218 "strings/string16.cc", | 1218 "strings/string16.cc", |
| 1219 ] | 1219 ] |
| 1220 | 1220 |
| 1221 deps += [ | 1221 deps += [ |
| 1222 "//base/trace_event/etw_manifest:chrome_events_win", | 1222 "//base/trace_event/etw_manifest:chrome_events_win", |
| 1223 "//base/win:base_win_features", | 1223 "//base/win:base_win_features", |
| 1224 "//base/win:eventlog_messages", |
| 1224 ] | 1225 ] |
| 1225 | 1226 |
| 1226 if (is_component_build) { | 1227 if (is_component_build) { |
| 1227 # Copy the VS runtime DLLs into the isolate so that they don't have to be | 1228 # Copy the VS runtime DLLs into the isolate so that they don't have to be |
| 1228 # preinstalled on the target machine. The debug runtimes have a "d" at | 1229 # preinstalled on the target machine. The debug runtimes have a "d" at |
| 1229 # the end. | 1230 # the end. |
| 1230 if (is_debug) { | 1231 if (is_debug) { |
| 1231 vcrt_suffix = "d" | 1232 vcrt_suffix = "d" |
| 1232 } else { | 1233 } else { |
| 1233 vcrt_suffix = "" | 1234 vcrt_suffix = "" |
| (...skipping 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2486 } | 2487 } |
| 2487 | 2488 |
| 2488 fuzzer_test("base_json_correctness_fuzzer") { | 2489 fuzzer_test("base_json_correctness_fuzzer") { |
| 2489 sources = [ | 2490 sources = [ |
| 2490 "json/correctness_fuzzer.cc", | 2491 "json/correctness_fuzzer.cc", |
| 2491 ] | 2492 ] |
| 2492 deps = [ | 2493 deps = [ |
| 2493 ":base", | 2494 ":base", |
| 2494 ] | 2495 ] |
| 2495 } | 2496 } |
| OLD | NEW |