| Index: Source/core/BUILD.gn
|
| diff --git a/Source/core/BUILD.gn b/Source/core/BUILD.gn
|
| index 00f37c89cef01e95cc4a8e966d63270d7310f01d..917080943ddfdcf4121ff51c3ee91d0119485294 100644
|
| --- a/Source/core/BUILD.gn
|
| +++ b/Source/core/BUILD.gn
|
| @@ -414,6 +414,9 @@ source_set("core_generated") {
|
| # Generated from make_style_builder.py
|
| "$blink_core_output_dir/StyleBuilder.cpp",
|
| "$blink_core_output_dir/StyleBuilderFunctions.cpp",
|
| +
|
| + # Generated from make_css_property_metadata.py
|
| + "$blink_core_output_dir/CSSPropertyMetadata.cpp",
|
| ]
|
|
|
| configs -= core_config_remove
|
| @@ -640,6 +643,17 @@ css_properties("make_core_generated_style_builder") {
|
| ]
|
| }
|
|
|
| +# "CSSPropertyMetadata" in make_core_generated from GYP.
|
| +css_properties("make_core_generated_css_property_metadata") {
|
| + script = "../build/scripts/make_css_property_metadata.py"
|
| + other_inputs = [
|
| + "../build/scripts/templates/CSSPropertyMetadata.cpp.tmpl",
|
| + ]
|
| + outputs = [
|
| + "$blink_core_output_dir/CSSPropertyMetadata.cpp",
|
| + ]
|
| +}
|
| +
|
| # "CSSValueKeywords" in make_core_generated from GYP.
|
| process_in_files("make_core_generated_css_value_keywords") {
|
| script = "../build/scripts/make_css_value_keywords.py"
|
|
|