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

Unified Diff: Source/core/BUILD.gn

Issue 454423003: Add animatable flag to CSSProperties.in (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months 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 side-by-side diff with in-line comments
Download patch
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"
« no previous file with comments | « Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl ('k') | Source/core/animation/StringKeyframe.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698