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

Side by Side Diff: third_party/WebKit/Source/core/core.gni

Issue 2520863002: Enable precompiled headers for Blink on Windows. (Closed)
Patch Set: rebased Created 4 years 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/split_static_library.gni") 6 import("//build/split_static_library.gni")
7 import("//third_party/WebKit/Source/config.gni") 7 import("//third_party/WebKit/Source/config.gni")
8 8
9 blink_core_output_dir = "$root_gen_dir/blink/core" 9 blink_core_output_dir = "$root_gen_dir/blink/core"
10 10
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 "public_deps", 115 "public_deps",
116 "split_count", 116 "split_count",
117 ]) 117 ])
118 } 118 }
119 } 119 }
120 set_defaults("blink_core_sources") { 120 set_defaults("blink_core_sources") {
121 # This sets the default list of configs when the blink_core_sources target 121 # This sets the default list of configs when the blink_core_sources target
122 # is defined. The default_compiler_configs comes from BUILDCONFIG.gn and 122 # is defined. The default_compiler_configs comes from BUILDCONFIG.gn and
123 # is the list normally applied to static libraries and source sets. 123 # is the list normally applied to static libraries and source sets.
124 configs = default_compiler_configs - core_config_remove + core_config_add 124 configs = default_compiler_configs - core_config_remove + core_config_add
125
126 # Compile each of the core sources targets with (core) precompiled header
127 # support, for lower Windows build times.
128 configs += [ "//third_party/WebKit/Source/core:blink_core_pch" ]
125 } 129 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/DEPS ('k') | third_party/WebKit/Source/core/win/Precompile-core.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698