| 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 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1205 ] | 1205 ] |
| 1206 | 1206 |
| 1207 sources -= [ | 1207 sources -= [ |
| 1208 "message_loop/message_pump_libevent.cc", | 1208 "message_loop/message_pump_libevent.cc", |
| 1209 "strings/string16.cc", | 1209 "strings/string16.cc", |
| 1210 ] | 1210 ] |
| 1211 | 1211 |
| 1212 deps += [ | 1212 deps += [ |
| 1213 "//base/trace_event/etw_manifest:chrome_events_win", | 1213 "//base/trace_event/etw_manifest:chrome_events_win", |
| 1214 "//base/win:base_win_features", | 1214 "//base/win:base_win_features", |
| 1215 "//base/win:eventlog_messages", |
| 1215 ] | 1216 ] |
| 1216 | 1217 |
| 1217 if (is_component_build) { | 1218 if (is_component_build) { |
| 1218 # Copy the VS runtime DLLs into the isolate so that they don't have to be | 1219 # Copy the VS runtime DLLs into the isolate so that they don't have to be |
| 1219 # preinstalled on the target machine. The debug runtimes have a "d" at | 1220 # preinstalled on the target machine. The debug runtimes have a "d" at |
| 1220 # the end. | 1221 # the end. |
| 1221 if (is_debug) { | 1222 if (is_debug) { |
| 1222 vcrt_suffix = "d" | 1223 vcrt_suffix = "d" |
| 1223 } else { | 1224 } else { |
| 1224 vcrt_suffix = "" | 1225 vcrt_suffix = "" |
| (...skipping 1244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2469 } | 2470 } |
| 2470 | 2471 |
| 2471 fuzzer_test("base_json_correctness_fuzzer") { | 2472 fuzzer_test("base_json_correctness_fuzzer") { |
| 2472 sources = [ | 2473 sources = [ |
| 2473 "json/correctness_fuzzer.cc", | 2474 "json/correctness_fuzzer.cc", |
| 2474 ] | 2475 ] |
| 2475 deps = [ | 2476 deps = [ |
| 2476 ":base", | 2477 ":base", |
| 2477 ] | 2478 ] |
| 2478 } | 2479 } |
| OLD | NEW |