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

Side by Side Diff: base/BUILD.gn

Issue 2496323003: Reland:Adds eventlog provider dll to describe the message types of SYSLOG. (Closed)
Patch Set: Adds a dummy export function to force the lib file generation. 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') | base/win/eventlog_provider.cc » ('J')
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 1203 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « no previous file | base/syslog_logging.cc » ('j') | base/win/eventlog_provider.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698