| OLD | NEW |
| 1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2016 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 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/win/message_compiler.gni") | 6 import("//build/win/message_compiler.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 # Indicates if the handle verifier should operate in a single module mode. By | 9 # Indicates if the handle verifier should operate in a single module mode. By |
| 10 # default a single instance gets shared by all the modules. | 10 # default a single instance gets shared by all the modules. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 compile_generated_code = false | 37 compile_generated_code = false |
| 38 } | 38 } |
| 39 shared_library("eventlog_provider") { | 39 shared_library("eventlog_provider") { |
| 40 sources = [ | 40 sources = [ |
| 41 "$root_gen_dir/base/win/eventlog_messages.rc", | 41 "$root_gen_dir/base/win/eventlog_messages.rc", |
| 42 "eventlog_provider.cc", | 42 "eventlog_provider.cc", |
| 43 ] | 43 ] |
| 44 | 44 |
| 45 ldflags = [ "/NOENTRY" ] | 45 ldflags = [ "/NOENTRY" ] |
| 46 | 46 |
| 47 configs += [ "//build/config/sanitizers:sanitizer_default_libs" ] |
| 48 |
| 47 deps = [ | 49 deps = [ |
| 48 "//base/win:eventlog_messages", | 50 "//base/win:eventlog_messages", |
| 51 "//build/config/sanitizers:deps", |
| 49 ] | 52 ] |
| 50 } | 53 } |
| OLD | NEW |