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

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

Issue 1430043002: Support script response files in GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment, random build fix Created 5 years, 1 month 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 | « no previous file | components/domain_reliability.gypi » ('j') | 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build_overrides/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
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 args += [ "--enable_hidpi=1" ] 119 args += [ "--enable_hidpi=1" ]
120 } 120 }
121 if (is_component_build) { 121 if (is_component_build) {
122 args += [ "--component_build=1" ] 122 args += [ "--component_build=1" ]
123 } else { 123 } else {
124 outputs += [ "$root_out_dir/chrome.packed.7z" ] 124 outputs += [ "$root_out_dir/chrome.packed.7z" ]
125 } 125 }
126 126
127 if (enable_nacl) { 127 if (enable_nacl) {
128 inputs += [ "$root_out_dir/nacl_irt_x86_64.nexe" ] 128 inputs += [ "$root_out_dir/nacl_irt_x86_64.nexe" ]
129 if (cpu_arch == "x86") { 129 if (current_cpu == "x86") {
130 inputs += [ 130 inputs += [
131 "$root_out_dir/nacl64.exe", 131 "$root_out_dir/nacl64.exe",
132 "$root_out_dir/nacl_irt_x86_32.nexe", 132 "$root_out_dir/nacl_irt_x86_32.nexe",
133 ] 133 ]
134 } 134 }
135 } 135 }
136 136
137 if (icu_use_data_file) { 137 if (icu_use_data_file) {
138 inputs += [ "$root_out_dir/icudtl.dat" ] 138 inputs += [ "$root_out_dir/icudtl.dat" ]
139 } else { 139 } else {
(...skipping 53 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
« no previous file with comments | « no previous file | components/domain_reliability.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698