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

Side by Side Diff: chrome/installer/mini_installer/BUILD.gn

Issue 2215693003: gn: Make mini_installer link in static asan builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: better better rebase Created 4 years, 4 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') | no next file » | 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("//build/config/win/visual_studio_version.gni") 8 import("//build/config/win/visual_studio_version.gni")
9 import("//chrome/test/mini_installer/mini_installer_test.gni") 9 import("//chrome/test/mini_installer/mini_installer_test.gni")
10 import("//chrome/version.gni") 10 import("//chrome/version.gni")
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 # specify our own to keep the size down. Also make sure that we don't use 226 # specify our own to keep the size down. Also make sure that we don't use
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/win:sdk_link", 237 "//build/config/win:sdk_link",
237 "//build/config/win:windowed", 238 "//build/config/win:windowed",
238 ] 239 ]
239 240
240 ldflags = [ 241 ldflags = [
241 "/ENTRY:MainEntryPoint", 242 "/ENTRY:MainEntryPoint",
242 "/FIXED:NO", 243 "/FIXED:NO",
243 "/ignore:4199", 244 "/ignore:4199",
244 "/NXCOMPAT", 245 "/NXCOMPAT",
245 ] 246 ]
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 args = [ 287 args = [
287 "--out", 288 "--out",
288 "$target_name.exe", 289 "$target_name.exe",
289 ] 290 ]
290 deps = [ 291 deps = [
291 ":mini_installer", 292 ":mini_installer",
292 "//chrome/installer/test:alternate_version_generator", 293 "//chrome/installer/test:alternate_version_generator",
293 ] 294 ]
294 } 295 }
295 } 296 }
OLDNEW
« no previous file with comments | « build/config/sanitizers/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698