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

Side by Side Diff: base/win/BUILD.gn

Issue 2570153002: Fix missing CRT libraries with ASAN unittests (Closed)
Patch Set: nits Created 3 years, 11 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 | « no previous file | build/config/sanitizers/BUILD.gn » ('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) 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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/config/sanitizers/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698