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

Side by Side Diff: chrome/syzygy.gypi

Issue 7464040: Integrate syzygy (optionally) into the chrome build process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: fixed dependencies Created 9 years, 4 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 | Annotate | Revision Log
« chrome/chrome_exe.gypi ('K') | « chrome/chrome_exe.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 {
5 'variables': {
6 'optimize_with_syzygy%': 0,
7 },
8 'conditions': [
9 [ 'OS=="win" and optimize_with_syzygy==1', {
10 'targets': [
11 {
12 'target_name': 'chrome_dll',
13 'type': 'none',
14 'sources' : [],
15 'dependencies': [
16 'original_chrome_dll',
17 'chrome',
18 #'chrome_nacl_win64',
19 #'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
20 ],
21 'actions': [
22 {
23 'action_name': 'Optimize Chrome binaries with syzygy',
24 'variables':{
25 'variables': {
26 'syzygy_ver%':
27 '<!(cmd /C type <(DEPTH)\\tools\\syzygy\\LATEST)',
28 },
29 'syzygy_dir%': '<(DEPTH)\\tools\\syzygy\\<(syzygy_ver)',
30 },
31 'msvs_cygwin_shell': 0,
32 'inputs': [
33 '<(PRODUCT_DIR)\\original\\chrome.dll',
34 '<(PRODUCT_DIR)\\original\\chrome_dll.pdb',
35 ],
36 'outputs': [
37 '<(PRODUCT_DIR)\\chrome.dll',
38 '<(PRODUCT_DIR)\\chrome_dll.pdb',
39 ],
40 'action': [
41 '<(syzygy_dir)\\optimize.bat',
42 '--verbose',
43 '--input-dir="<(PRODUCT_DIR)"',
44 '--input-dll="<(PRODUCT_DIR)\\original\\chrome.dll"',
45 '--input-pdb="<(PRODUCT_DIR)\\original\\chrome_dll.pdb"',
46 '--output-dir="<(INTERMEDIATE_DIR)\\optimized"',
47 '--copy-to="<(PRODUCT_DIR)"',
48 ],
49 },
50 ],
51 },
52 ],
53 }],
54 ],
55 }
OLDNEW
« chrome/chrome_exe.gypi ('K') | « chrome/chrome_exe.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698