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

Unified Diff: third_party/WebKit/Source/web/BUILD.gn

Issue 2520863002: Enable precompiled headers for Blink on Windows. (Closed)
Patch Set: Created 4 years, 1 month 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: third_party/WebKit/Source/web/BUILD.gn
diff --git a/third_party/WebKit/Source/web/BUILD.gn b/third_party/WebKit/Source/web/BUILD.gn
index c4b846051257fd214f8c0753237a65c0e310cb5b..f6823ec8e87a585b71f3850eec9b3de66a766f4d 100644
--- a/third_party/WebKit/Source/web/BUILD.gn
+++ b/third_party/WebKit/Source/web/BUILD.gn
@@ -30,6 +30,7 @@ component("web") {
"//third_party/WebKit/Source:config",
"//third_party/WebKit/Source:inside_blink",
"//third_party/WebKit/Source:non_test_config",
+ "//third_party/WebKit/Source/core:blink_core_pch",
]
defines = [ "BLINK_WEB_IMPLEMENTATION=1" ]
@@ -295,7 +296,10 @@ static_library("test_support") {
"WebTestingSupport.cpp",
]
- configs += [ "//third_party/WebKit/Source:config" ]
+ configs += [
+ "//third_party/WebKit/Source:config",
+ "//third_party/WebKit/Source/core:blink_core_pch",
+ ]
include_dirs = [ "$root_gen_dir/blink" ]
}
@@ -424,6 +428,7 @@ test("webkit_unit_tests") {
configs += [
"//third_party/WebKit/Source:config",
"//third_party/WebKit/Source:inside_blink",
+ "//third_party/WebKit/Source/core:blink_core_pch",
]
if (is_android) {

Powered by Google App Engine
This is Rietveld 408576698