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

Side by Side Diff: third_party/WebKit/Source/core/win/precompile-core.gypi

Issue 2152783002: Enable precompiled headers for Blink on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaning up comments Created 4 years, 5 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
OLDNEW
(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 'include_dirs': [ '<(DEPTH)' ],
16 }
17 }],
18 ],
19 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/win/Precompile-core.cpp ('k') | third_party/WebKit/Source/core/xml/XPathGrammar.y » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698