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

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

Issue 1372303003: Make create_installer_archive.py operate silently by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix incorrect param ordering (I hate refactoring Python!) 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/module_args/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
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 rebase_path(release_file, root_build_dir), 102 rebase_path(release_file, root_build_dir),
103 "--resource_file_path", 103 "--resource_file_path",
104 rebase_path(packed_files_rc_file, root_build_dir), 104 rebase_path(packed_files_rc_file, root_build_dir),
105 "--target_arch=$current_cpu", 105 "--target_arch=$current_cpu",
106 "--distribution=_google_chrome", 106 "--distribution=_google_chrome",
107 107
108 # Optional arguments to generate diff installer. 108 # Optional arguments to generate diff installer.
109 #'--last_chrome_installer=C:/Temp/base', 109 #'--last_chrome_installer=C:/Temp/base',
110 #'--setup_exe_format=DIFF', 110 #'--setup_exe_format=DIFF',
111 #'--diff_algorithm=COURGETTE', 111 #'--diff_algorithm=COURGETTE',
112
113 # Optional argument for verbose archiving output.
114 #'--verbose',
112 ] 115 ]
113 116
114 if (enable_hidpi) { 117 if (enable_hidpi) {
115 args += [ "--enable_hidpi=1" ] 118 args += [ "--enable_hidpi=1" ]
116 } 119 }
117 if (is_component_build) { 120 if (is_component_build) {
118 args += [ "--component_build=1" ] 121 args += [ "--component_build=1" ]
119 } else { 122 } else {
120 outputs += [ "$root_out_dir/chrome.packed.7z" ] 123 outputs += [ "$root_out_dir/chrome.packed.7z" ]
121 } 124 }
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 libs = [ "setupapi.lib" ] 192 libs = [ "setupapi.lib" ]
190 193
191 deps = [ 194 deps = [
192 ":archive", 195 ":archive",
193 ":lib", 196 ":lib",
194 ":version", 197 ":version",
195 "//build/config/sanitizers:deps", 198 "//build/config/sanitizers:deps",
196 "//build/win:default_exe_manifest", 199 "//build/win:default_exe_manifest",
197 ] 200 ]
198 } 201 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698