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

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

Issue 1397493004: Move //build/module_args/v8.gni to //build_overrides. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rework README to hopefully be clearer Created 5 years, 2 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
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/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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698