mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
|
# Copyright 2017 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
import("//build/config/sanitizers/sanitizers.gni")
|
||
|
import("//build/win/message_compiler.gni")
|
||
|
import("//chrome/process_version_rc_template.gni")
|
||
|
|
||
|
message_compiler("eventlog_messages") {
|
||
|
visibility = [
|
||
|
"//chrome/chrome_watcher:chrome_watcher",
|
||
|
"//chrome/common:common",
|
||
|
":eventlog_provider",
|
||
|
]
|
||
|
|
||
|
sources = [
|
||
|
"eventlog_messages.mc",
|
||
|
]
|
||
|
|
||
|
user_mode_logging = false
|
||
|
compile_generated_code = false
|
||
|
}
|
||
|
|
||
|
process_version_rc_template("eventlog_provider_dll_version") {
|
||
|
sources = [
|
||
|
"eventlog_provider.ver",
|
||
|
]
|
||
|
output = "$target_gen_dir/eventlog_provider_dll_version.rc"
|
||
|
}
|
||
|
|
||
|
shared_library("eventlog_provider") {
|
||
|
sources = [
|
||
|
"$root_gen_dir/chrome/common/win/eventlog_messages.rc",
|
||
|
"eventlog_provider.cc",
|
||
|
]
|
||
|
|
||
|
if (!is_asan) {
|
||
|
ldflags = [ "/NOENTRY" ]
|
||
|
}
|
||
|
|
||
|
deps = [
|
||
|
":eventlog_messages",
|
||
|
":eventlog_provider_dll_version",
|
||
|
]
|
||
|
}
|