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

Side by Side Diff: chrome/common/win/BUILD.gn

Issue 2946983002: Move eventlog_provider from //base/win to //chrome/common/win (Closed)
Patch Set: Address review comments on #5 Created 3 years, 6 months 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 | « chrome/common/logging_chrome.cc ('k') | chrome/common/win/eventlog_messages.mc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/config/sanitizers/sanitizers.gni")
6 import("//build/win/message_compiler.gni")
7 import("//chrome/process_version_rc_template.gni")
8
9 message_compiler("eventlog_messages") {
10 visibility = [
11 "//chrome/common:common",
12 ":eventlog_provider",
13 ]
14
15 sources = [
16 "eventlog_messages.mc",
17 ]
18
19 user_mode_logging = false
20 compile_generated_code = false
21 }
22
23 process_version_rc_template("eventlog_provider_dll_version") {
24 sources = [
25 "eventlog_provider.ver",
26 ]
27 output = "$target_gen_dir/eventlog_provider_dll_version.rc"
28 }
29
30 shared_library("eventlog_provider") {
31 sources = [
32 "$root_gen_dir/chrome/common/win/eventlog_messages.rc",
33 "eventlog_provider.cc",
34 ]
35
36 if (!is_asan) {
37 ldflags = [ "/NOENTRY" ]
38 }
39
40 deps = [
41 ":eventlog_messages",
42 ":eventlog_provider_dll_version",
43 ]
44 }
OLDNEW
« no previous file with comments | « chrome/common/logging_chrome.cc ('k') | chrome/common/win/eventlog_messages.mc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698