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 precompile
d |
| 6 # 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/bui
ld/win/Precompile-core.h', |
| 13 'msvs_precompiled_source': '<(DEPTH)/third_party/WebKit/Source/bui
ld/win/Precompile-core.cpp', |
| 14 'sources': ['<(DEPTH)/third_party/WebKit/Source/build/win/Precompi
le-core.cpp'], |
| 15 } |
| 16 }], |
| 17 ], |
| 18 } |
OLD | NEW |