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

Unified Diff: Source/build/win/precompile-core.gypi

Issue 1178823003: Precompile Document.h and LayoutObject.h for Source/web Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/build/win/precompile-core.gypi
diff --git a/Source/build/win/precompile-core.gypi b/Source/build/win/precompile-core.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..f258cb73f7ec955e233854854d66a5c6fc774b07
--- /dev/null
+++ b/Source/build/win/precompile-core.gypi
@@ -0,0 +1,18 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Include this file to make core targets in your .gyp use the default precompiled
+# header on Windows, when precompiled headers are turned on.
+
+{
+ 'conditions': [
+ ['OS=="win" and chromium_win_pch==1', {
+ 'target_defaults': {
+ 'msvs_precompiled_header': '<(DEPTH)/third_party/WebKit/Source/build/win/Precompile-core.h',
+ 'msvs_precompiled_source': '<(DEPTH)/third_party/WebKit/Source/build/win/Precompile-core.cpp',
+ 'sources': ['<(DEPTH)/third_party/WebKit/Source/build/win/Precompile-core.cpp'],
+ }
+ }],
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698