| 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/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/win/visual_studio_version.gni") | 8 import("//build/config/win/visual_studio_version.gni") |
| 9 import("//chrome/process_version_rc_template.gni") | 9 import("//chrome/process_version_rc_template.gni") |
| 10 import("//chrome/test/mini_installer/mini_installer_test.gni") | 10 import("//chrome/test/mini_installer/mini_installer_test.gni") |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 ] | 256 ] |
| 257 } | 257 } |
| 258 } | 258 } |
| 259 | 259 |
| 260 generate_mini_installer("mini_installer") { | 260 generate_mini_installer("mini_installer") { |
| 261 out_dir = root_out_dir | 261 out_dir = root_out_dir |
| 262 chrome_dll_file = "$root_out_dir/chrome.dll" | 262 chrome_dll_file = "$root_out_dir/chrome.dll" |
| 263 chrome_dll_target = "//chrome:main_dll" | 263 chrome_dll_target = "//chrome:main_dll" |
| 264 } | 264 } |
| 265 | 265 |
| 266 if (syzygy_optimize || is_syzyasan) { | 266 if (is_syzyasan) { |
| 267 generate_mini_installer("mini_installer_syzygy") { | 267 generate_mini_installer("mini_installer_syzygy") { |
| 268 out_dir = "$root_out_dir/syzygy/" | 268 out_dir = "$root_out_dir/syzygy/" |
| 269 chrome_dll_file = "$root_out_dir/syzygy/chrome.dll" | 269 chrome_dll_file = "$root_out_dir/syzygy/chrome.dll" |
| 270 chrome_dll_target = "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" | 270 chrome_dll_target = "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" |
| 271 } | 271 } |
| 272 } | 272 } |
| 273 | 273 |
| 274 # next_version_mini_installer.exe can't be generated in an x86 Debug component | 274 # next_version_mini_installer.exe can't be generated in an x86 Debug component |
| 275 # build because it requires too much memory. | 275 # build because it requires too much memory. |
| 276 if (!(is_component_build && is_debug && target_cpu == "x86")) { | 276 if (!(is_component_build && is_debug && target_cpu == "x86")) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 287 args = [ | 287 args = [ |
| 288 "--out", | 288 "--out", |
| 289 "$target_name.exe", | 289 "$target_name.exe", |
| 290 ] | 290 ] |
| 291 deps = [ | 291 deps = [ |
| 292 ":mini_installer", | 292 ":mini_installer", |
| 293 "//chrome/installer/test:alternate_version_generator", | 293 "//chrome/installer/test:alternate_version_generator", |
| 294 ] | 294 ] |
| 295 } | 295 } |
| 296 } | 296 } |
| OLD | NEW |