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

Unified Diff: remoting/host/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/installer/mini_installer/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/BUILD.gn
diff --git a/remoting/host/win/BUILD.gn b/remoting/host/win/BUILD.gn
index f6ddd335c88031124f7013d95a26fd75bf6cdfc8..fa8a0c42b62e2b3c9ce6c80367b2005aa0a0b2a7 100644
--- a/remoting/host/win/BUILD.gn
+++ b/remoting/host/win/BUILD.gn
@@ -261,7 +261,10 @@ message_compiler("messages") {
}
executable("remoting_console") {
- configs += [ "//build/config/compiler:wexit_time_destructors" ]
+ configs += [
+ "//build/config/compiler:wexit_time_destructors",
+ "//build/config/sanitizers:sanitizer_default_libs",
+ ]
defines = host_predefines + [ "REMOTING_HOST_BINARY=BINARY_HOST_ME2ME" ]
@@ -286,6 +289,7 @@ executable("remoting_me2me_host") {
configs += [
"//build/config/compiler:wexit_time_destructors",
"//build/config/win:windowed",
+ "//build/config/sanitizers:sanitizer_default_libs",
"//remoting/build/config:remoting_me2me_host",
]
@@ -419,6 +423,7 @@ shared_library("remoting_core") {
executable("remoting_desktop") {
configs += [
"//build/config/compiler:wexit_time_destructors",
+ "//build/config/sanitizers:sanitizer_default_libs",
"//build/config/win:windowed",
]
« no previous file with comments | « chrome/installer/mini_installer/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698