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

Unified Diff: Source/build/scripts/scripts.gni

Issue 410953002: Merge CSSProperties.in and CSSShorthands.in (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@infiles
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
« no previous file with comments | « Source/build/scripts/name_utilities.py ('k') | Source/build/scripts/scripts.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/scripts.gni
diff --git a/Source/build/scripts/scripts.gni b/Source/build/scripts/scripts.gni
index a5561ccf9ad65debaaaad6f2a83cc9b07f30b959..296c8f605223947bcd465f949f6b307e7ae23257 100644
--- a/Source/build/scripts/scripts.gni
+++ b/Source/build/scripts/scripts.gni
@@ -23,6 +23,10 @@ scripts_for_in_files = [
"$_scripts_dir/templates/macros.tmpl",
]
+css_properties_files = scripts_for_in_files + [
+ "$_scripts_dir/css_properties.py",
+]
+
make_event_factory_files = scripts_for_in_files + [
"$_scripts_dir/make_event_factory.py",
"$_scripts_dir/templates/EventFactory.cpp.tmpl",
@@ -114,6 +118,21 @@ template("process_in_files") {
}
}
+# Template for scripts using css_properties.py. This is a special case of
+# process_in_files.
+# outputs: expected results
+template("css_properties") {
+ process_in_files(target_name) {
+ script = invoker.script
+ in_files = ["css/CSSProperties.in"]
+ other_inputs = css_properties_files
+ if (defined(invoker.other_inputs)) {
+ other_inputs += invoker.other_inputs
+ }
+ outputs = invoker.outputs
+ }
+}
+
# Template to run the make_names script. This is a special case of
# process_in_files.
# in_files: files to pass to the script
« no previous file with comments | « Source/build/scripts/name_utilities.py ('k') | Source/build/scripts/scripts.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698