| Index: build/config/BUILD.gn
|
| diff --git a/build/config/BUILD.gn b/build/config/BUILD.gn
|
| index 09d01d3252c98e180eccc1efb145dc42c3644d16..6d13399d10d828cd408488be282a6ec3eb34e832 100644
|
| --- a/build/config/BUILD.gn
|
| +++ b/build/config/BUILD.gn
|
| @@ -8,6 +8,7 @@ import("//build/config/chromecast_build.gni")
|
| import("//build/config/crypto.gni")
|
| import("//build/config/dcheck_always_on.gni")
|
| import("//build/config/features.gni")
|
| +import("//build/config/pch.gni")
|
| import("//build/config/sanitizers/sanitizers.gni")
|
| import("//build/config/ui.gni")
|
| import("//build/toolchain/goma.gni")
|
| @@ -31,11 +32,6 @@ declare_args() {
|
| # of the current object. For iterator- and thread-heavy code, this can
|
| # significantly slow execution.
|
| enable_iterator_debugging = true
|
| -
|
| - # Normally we try to decide whether to use precompiled headers or
|
| - # not based on the other build arguments, but in some cases it is
|
| - # easiest to force them off explicitly.
|
| - disable_precompiled_headers = false
|
| }
|
|
|
| # ==============================================
|
| @@ -388,7 +384,7 @@ config("shared_library_config") {
|
| #
|
| # Recommend precompiled headers for targets with more than 50 .cc files.
|
| config("precompiled_headers") {
|
| - if (!is_official_build && !use_goma && !disable_precompiled_headers) {
|
| + if (!disable_precompiled_headers) {
|
| if (is_win) {
|
| # This is a string rather than a file GN knows about. It has to match
|
| # exactly what's in the /FI flag below, and what might appear in the
|
|
|