| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |