Chromium Code Reviews| Index: chrome/chrome_exe.gypi |
| =================================================================== |
| --- chrome/chrome_exe.gypi (revision 94914) |
| +++ chrome/chrome_exe.gypi (working copy) |
| @@ -415,10 +415,21 @@ |
| ], |
| }], |
| ['OS=="mac" or OS=="win"', { |
| - 'dependencies': [ |
| - # On Windows and Mac, make sure we've built chrome_dll, which |
| - # contains all of the library code with Chromium functionality. |
| - 'chrome_dll', |
| + 'conditions': [ |
| + ['OS=="win" and optimize_with_syzygy==1', { |
| + 'dependencies': [ |
| + # When syzygy is enabled on Windows, make sure we've built the |
| + # original chrome_dll, so that the optimize step can run run a |
|
chrisha
2011/08/02 13:31:44
run run?
Roger McFarlane (Google)
2011/08/02 15:03:44
Fixed.
|
| + # profiled chrome to generate the final chrome_dll. |
| + 'original_chrome_dll', |
| + ], |
| + }, { |
| + 'dependencies': [ |
| + # On Windows and Mac, make sure we've built chrome_dll, which |
| + # contains all of the library code with Chromium functionality. |
| + 'chrome_dll', |
| + ], |
| + }], |
| ], |
| }], |
| ['OS=="win"', { |