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

Side by Side Diff: chrome/installer/mini_installer/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 | « build/config/sanitizers/BUILD.gn ('k') | remoting/host/win/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/config/compiler/compiler.gni") 5 import("//build/config/compiler/compiler.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/process_version_rc_template.gni") 8 import("//chrome/process_version_rc_template.gni")
9 import("//chrome/test/mini_installer/mini_installer_test.gni") 9 import("//chrome/test/mini_installer/mini_installer_test.gni")
10 import("//third_party/icu/config.gni") 10 import("//third_party/icu/config.gni")
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 # WPO as it's not supported by the mini installer. 227 # WPO as it's not supported by the mini installer.
228 configs -= [ 228 configs -= [
229 "//build/config/compiler:default_optimization", 229 "//build/config/compiler:default_optimization",
230 "//build/config:executable_config", 230 "//build/config:executable_config",
231 "//build/config/win:console", 231 "//build/config/win:console",
232 ] 232 ]
233 configs += [ 233 configs += [
234 ":mini_installer_compiler_flags", 234 ":mini_installer_compiler_flags",
235 "//build/config/compiler:optimize_no_wpo", 235 "//build/config/compiler:optimize_no_wpo",
236 "//build/config/sanitizers:link_executable", 236 "//build/config/sanitizers:link_executable",
237 "//build/config/sanitizers:sanitizer_default_libs",
237 "//build/config/win:sdk_link", 238 "//build/config/win:sdk_link",
238 "//build/config/win:windowed", 239 "//build/config/win:windowed",
239 ] 240 ]
240 241
241 ldflags = [ 242 ldflags = [
242 "/ENTRY:MainEntryPoint", 243 "/ENTRY:MainEntryPoint",
243 "/FIXED:NO", 244 "/FIXED:NO",
244 "/ignore:4199", 245 "/ignore:4199",
245 "/NXCOMPAT", 246 "/NXCOMPAT",
246 ] 247 ]
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 args = [ 288 args = [
288 "--out", 289 "--out",
289 "$target_name.exe", 290 "$target_name.exe",
290 ] 291 ]
291 deps = [ 292 deps = [
292 ":mini_installer", 293 ":mini_installer",
293 "//chrome/installer/test:alternate_version_generator", 294 "//chrome/installer/test:alternate_version_generator",
294 ] 295 ]
295 } 296 }
296 } 297 }
OLDNEW
« no previous file with comments | « build/config/sanitizers/BUILD.gn ('k') | remoting/host/win/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698