| Index: third_party/WebKit/Source/core/BUILD.gn
|
| diff --git a/third_party/WebKit/Source/core/BUILD.gn b/third_party/WebKit/Source/core/BUILD.gn
|
| index 51a4b50300c8c9ce9cf9f45e77f18b499f2a81ae..bcff57da3d1bed08de9443e2924ba6f265aad5e8 100644
|
| --- a/third_party/WebKit/Source/core/BUILD.gn
|
| +++ b/third_party/WebKit/Source/core/BUILD.gn
|
| @@ -373,6 +373,20 @@ action("generated_testing_idls_internal_runtime_flags") {
|
| ]
|
| }
|
|
|
| +css_properties("make_core_generated_computed_style_base") {
|
| + script = "../build/scripts/make_computed_style_base.py"
|
| + other_inputs = [
|
| + "../build/scripts/templates/ComputedStyleBase.cpp.tmpl",
|
| + "../build/scripts/templates/ComputedStyleBase.h.tmpl",
|
| + "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl",
|
| + ]
|
| + outputs = [
|
| + "$blink_core_output_dir/ComputedStyleBase.cpp",
|
| + "$blink_core_output_dir/ComputedStyleBase.h",
|
| + "$blink_core_output_dir/ComputedStyleBaseConstants.h",
|
| + ]
|
| +}
|
| +
|
| css_properties("make_core_generated_css_property_names") {
|
| script = "../build/scripts/make_css_property_names.py"
|
| outputs = [
|
| @@ -811,6 +825,7 @@ target(core_link_small_target_type, "core_generated") {
|
| ":make_core_generated_bison",
|
| ":make_core_generated_css_primitive_value_unit_trie",
|
| ":make_core_generated_css_property_metadata",
|
| + ":make_core_generated_computed_style_base",
|
| ":make_core_generated_css_property_names",
|
| ":make_core_generated_cssom_types",
|
| ":make_core_generated_event_factory",
|
|
|