Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: base/BUILD.gn

Issue 2476353003: Adds eventlog provider dll to describe the message types of SYSLOG. (Closed)
Patch Set: Make the mc file unicode encoded. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/syslog_logging.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | base/syslog_logging.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698