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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//build/module_args/v8.gni") | 7 import("//build_overrides/v8.gni") |
8 import("//chrome/version.gni") | 8 import("//chrome/version.gni") |
9 import("//third_party/icu/config.gni") | 9 import("//third_party/icu/config.gni") |
10 | 10 |
11 config("mini_installer_compiler_flags") { | 11 config("mini_installer_compiler_flags") { |
12 cflags = [ | 12 cflags = [ |
13 "/bigobj", | 13 "/bigobj", |
14 "/Gy", # Enable function-level linking. | 14 "/Gy", # Enable function-level linking. |
15 "/GS-", # Disable buffer security checking. | 15 "/GS-", # Disable buffer security checking. |
16 "/FS", # Preserve previous PDB behavior. | 16 "/FS", # Preserve previous PDB behavior. |
17 ] | 17 ] |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 libs = [ "setupapi.lib" ] | 193 libs = [ "setupapi.lib" ] |
194 | 194 |
195 deps = [ | 195 deps = [ |
196 ":archive", | 196 ":archive", |
197 ":lib", | 197 ":lib", |
198 ":version", | 198 ":version", |
199 "//build/config/sanitizers:deps", | 199 "//build/config/sanitizers:deps", |
200 "//build/win:default_exe_manifest", | 200 "//build/win:default_exe_manifest", |
201 ] | 201 ] |
202 } | 202 } |
OLD | NEW |