Chromium Code Reviews| Index: chrome/syzygy.gypi |
| =================================================================== |
| --- chrome/syzygy.gypi (revision 0) |
| +++ chrome/syzygy.gypi (revision 0) |
| @@ -0,0 +1,55 @@ |
| +# 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', { |
| + 'targets': [ |
| + { |
| + 'target_name': 'chrome_dll', |
| + 'type': 'none', |
| + 'sources' : [], |
| + 'dependencies': [ |
| + 'original_chrome_dll', |
| + 'chrome', |
| + #'chrome_nacl_win64', |
| + #'default_extensions', |
|
chrisha
2011/08/02 13:31:44
Why are these commented out?
Roger McFarlane (Google)
2011/08/02 15:03:44
Was playing with dependencies ... meant to delete
|
| + ], |
| + 'actions': [ |
| + { |
| + 'action_name': 'Optimize Chrome binaries with syzygy', |
| + 'variables':{ |
| + 'variables': { |
| + 'syzygy_ver%': |
| + '<!(cmd /C type <(DEPTH)\\tools\\syzygy\\LATEST)', |
| + }, |
| + 'syzygy_dir%': '<(DEPTH)\\tools\\syzygy\\<(syzygy_ver)', |
| + }, |
| + 'msvs_cygwin_shell': 0, |
| + 'inputs': [ |
| + '<(PRODUCT_DIR)\\original\\chrome.dll', |
| + '<(PRODUCT_DIR)\\original\\chrome_dll.pdb', |
| + ], |
| + 'outputs': [ |
| + '<(PRODUCT_DIR)\\chrome.dll', |
| + '<(PRODUCT_DIR)\\chrome_dll.pdb', |
| + ], |
| + 'action': [ |
| + '<(syzygy_dir)\\optimize.bat', |
| + '--verbose', |
| + '--input-dir="<(PRODUCT_DIR)"', |
| + '--input-dll="<(PRODUCT_DIR)\\original\\chrome.dll"', |
| + '--input-pdb="<(PRODUCT_DIR)\\original\\chrome_dll.pdb"', |
| + '--output-dir="<(INTERMEDIATE_DIR)\\optimized"', |
| + '--copy-to="<(PRODUCT_DIR)"', |
| + ], |
| + }, |
| + ], |
| + }, |
| + ], |
| + }], |
| + ], |
| +} |
| Property changes on: chrome\syzygy.gypi |
| ___________________________________________________________________ |
| Added: svn:eol-style |
| + LF |