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

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

Issue 2126673002: Move the Syzygy scripts out of //chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the GYP files. Created 4 years, 5 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
« no previous file with comments | « chrome/chrome_syzygy.gypi ('k') | chrome/tools/build/win/syzygy/BUILD.gn » ('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/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("//build_overrides/v8.gni") 9 import("//build_overrides/v8.gni")
10 import("//chrome/test/mini_installer/mini_installer_test.gni") 10 import("//chrome/test/mini_installer/mini_installer_test.gni")
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 ] 255 ]
256 } 256 }
257 } 257 }
258 258
259 generate_mini_installer("mini_installer") { 259 generate_mini_installer("mini_installer") {
260 out_dir = root_out_dir 260 out_dir = root_out_dir
261 chrome_dll_file = "$root_out_dir/chrome.dll" 261 chrome_dll_file = "$root_out_dir/chrome.dll"
262 chrome_dll_target = "//chrome:main_dll" 262 chrome_dll_target = "//chrome:main_dll"
263 } 263 }
264 264
265 if (syzygy_optimize) { 265 if (syzygy_optimize || is_syzyasan) {
266 generate_mini_installer("mini_installer_syzygy") { 266 generate_mini_installer("mini_installer_syzygy") {
267 out_dir = "$root_out_dir/syzygy/" 267 out_dir = "$root_out_dir/syzygy/"
268 chrome_dll_file = "$root_out_dir/syzygy/chrome.dll" 268 chrome_dll_file = "$root_out_dir/syzygy/chrome.dll"
269 chrome_dll_target = "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" 269 chrome_dll_target = "//chrome/tools/build/win/syzygy:chrome_dll_syzygy"
270 } 270 }
271 } 271 }
272 272
273 # next_version_mini_installer.exe can't be generated in an x86 Debug component 273 # next_version_mini_installer.exe can't be generated in an x86 Debug component
274 # build because it requires too much memory. 274 # build because it requires too much memory.
275 if (!(is_component_build && is_debug && target_cpu == "x86")) { 275 if (!(is_component_build && is_debug && target_cpu == "x86")) {
(...skipping 10 matching lines...) Expand all
286 args = [ 286 args = [
287 "--out", 287 "--out",
288 "$target_name.exe", 288 "$target_name.exe",
289 ] 289 ]
290 deps = [ 290 deps = [
291 ":mini_installer", 291 ":mini_installer",
292 "//chrome/installer/test:alternate_version_generator", 292 "//chrome/installer/test:alternate_version_generator",
293 ] 293 ]
294 } 294 }
295 } 295 }
OLDNEW
« no previous file with comments | « chrome/chrome_syzygy.gypi ('k') | chrome/tools/build/win/syzygy/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698