OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |