Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 # Include this file to make core targets in your .gyp use the default | |
| 6 # precompiled header on Windows, when precompiled headers are turned on. | |
| 7 | |
| 8 { | |
| 9 'conditions': [ | |
| 10 ['OS=="win" and chromium_win_pch==1', { | |
| 11 'target_defaults': { | |
| 12 'msvs_precompiled_header': '<(DEPTH)/third_party/WebKit/Source/cor e/win/Precompile-core.h', | |
| 13 'msvs_precompiled_source': '<(DEPTH)/third_party/WebKit/Source/cor e/win/Precompile-core.cpp', | |
| 14 'sources': ['<(DEPTH)/third_party/WebKit/Source/core/win/Precompil e-core.cpp'], | |
| 15 'msvs_settings': { | |
| 16 # Compiling the large headers in Blink hits the | |
| 17 # default size limits in precompile header | |
| 18 # compilation in VS2013. Here we increase the limits | |
|
Nico
2016/07/14 19:58:52
do we still need this?
Daniel Bratell
2016/07/15 06:43:55
I don't think so. This survived in the CL while it
| |
| 19 # to 120% of default. | |
| 20 'VCCLCompilerTool': { | |
| 21 'AdditionalOptions': [ | |
| 22 '-Zm120', | |
| 23 ], | |
| 24 }, | |
| 25 }, | |
| 26 } | |
| 27 }], | |
| 28 ], | |
| 29 } | |
| OLD | NEW |