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