| 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_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 import("//ui/base/ui_features.gni") | 10 import("//ui/base/ui_features.gni") |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 libs = [ "setupapi.lib" ] | 197 libs = [ "setupapi.lib" ] |
| 198 | 198 |
| 199 deps = [ | 199 deps = [ |
| 200 ":archive", | 200 ":archive", |
| 201 ":lib", | 201 ":lib", |
| 202 ":version", | 202 ":version", |
| 203 "//build/config/sanitizers:deps", | 203 "//build/config/sanitizers:deps", |
| 204 "//build/win:default_exe_manifest", | 204 "//build/win:default_exe_manifest", |
| 205 ] | 205 ] |
| 206 } | 206 } |
| 207 | |
| 208 # next_version_mini_installer.exe can't be generated in an x86 Debug component | |
| 209 # build because it requires too much memory. | |
| 210 if (!(is_component_build && is_debug && target_cpu == "x86")) { | |
| 211 action("next_version_mini_installer") { | |
| 212 script = "generate_next_version_mini_installer.py" | |
| 213 testonly = true | |
| 214 inputs = [ | |
| 215 "$root_out_dir/alternate_version_generator.exe", | |
| 216 "$root_out_dir/mini_installer.exe", | |
| 217 ] | |
| 218 outputs = [ | |
| 219 "$root_out_dir/$target_name.exe", | |
| 220 ] | |
| 221 args = [ | |
| 222 "--out", | |
| 223 "$target_name.exe", | |
| 224 ] | |
| 225 deps = [ | |
| 226 ":mini_installer", | |
| 227 "//chrome/installer/test:alternate_version_generator", | |
| 228 ] | |
| 229 } | |
| 230 } | |
| OLD | NEW |