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

Unified Diff: third_party/WebKit/Source/core/BUILD.gn

Issue 2567473002: Made a generator for CSSPropertyDescriptor.cpp (Closed)
Patch Set: moved comment outside of loop Created 4 years 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: 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 1e923e0fea2eba567e422926c60c61c61b99961c..36d87947b86d62780a1ef650acefcd7f94335fab 100644
--- a/third_party/WebKit/Source/core/BUILD.gn
+++ b/third_party/WebKit/Source/core/BUILD.gn
@@ -426,6 +426,14 @@ css_properties("make_core_generated_computed_style_base") {
]
}
+css_properties("make_core_generated_css_property_descriptor") {
+ script = "../build/scripts/make_css_property_descriptor.py"
+ other_inputs = [ "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl" ]
+ outputs = [
+ "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp",
+ ]
+}
+
css_properties("make_core_generated_css_property_names") {
script = "../build/scripts/make_css_property_names.py"
outputs = [
@@ -908,6 +916,7 @@ targets_generating_sources = [
":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_descriptor",
":make_core_generated_css_property_names",
":make_core_generated_cssom_types",
":make_core_generated_event_factory",

Powered by Google App Engine
This is Rietveld 408576698