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

Unified Diff: chrome/chrome_dll_syzygy.gypi

Issue 8685001: Remove the Syzygy optimization alternative from GYP configs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Attemping another CQ commit. Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_dll_syzygy.gypi
diff --git a/chrome/chrome_dll_syzygy.gypi b/chrome/chrome_dll_syzygy.gypi
deleted file mode 100644
index 8200a2554441a1cfb4f4d95c6491fa243f98f8ee..0000000000000000000000000000000000000000
--- a/chrome/chrome_dll_syzygy.gypi
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright (c) 2011 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-{
- 'variables': {
- 'optimize_with_syzygy%': 0,
- },
- 'conditions': [
- ['OS=="win" and optimize_with_syzygy==1', {
- # Optimize the initial chrome DLL file, placing the optimized
- # output and corresponding PDB file into the product directory.
- # If fastbuild!=0 then no PDB files are generated by the build
- # and the syzygy optimizations cannot run (they use the PDB
- # information to properly understand the DLLs contents), so
- # syzygy optimization cannot be performed.
- 'targets': [
- {
- 'target_name': 'chrome_dll',
- 'type': 'none',
- 'sources' : [],
- 'dependencies': [
- 'chrome_dll_initial',
- 'chrome',
- ],
- 'actions': [
- {
- 'action_name': 'Optimize Chrome binaries with syzygy',
- 'msvs_cygwin_shell': 0,
- 'inputs': [
- '<(PRODUCT_DIR)\\initial\\chrome.dll',
- '<(PRODUCT_DIR)\\initial\\chrome_dll.pdb',
- ],
- 'outputs': [
- '<(PRODUCT_DIR)\\chrome.dll',
- '<(PRODUCT_DIR)\\chrome_dll.pdb',
- ],
- 'action': [
- '<(DEPTH)\\third_party\\syzygy\\binaries\\optimize.bat',
- '--verbose',
- '--input-dir="<(PRODUCT_DIR)"',
- '--input-dll="<(PRODUCT_DIR)\\initial\\chrome.dll"',
- '--input-pdb="<(PRODUCT_DIR)\\initial\\chrome_dll.pdb"',
- '--output-dir="<(INTERMEDIATE_DIR)\\optimized"',
- '--copy-to="<(PRODUCT_DIR)"',
- ],
- },
- ],
- },
- ],
- }],
- ],
-}
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698