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

Unified Diff: Source/core/scripts/make_internal_runtime_flags.py

Issue 22546004: Remove .tmpl extension from Jinja templates in core Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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/core/core_derived_sources.gyp ('k') | Source/core/scripts/make_runtime_features.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/scripts/make_internal_runtime_flags.py
diff --git a/Source/core/scripts/make_internal_runtime_flags.py b/Source/core/scripts/make_internal_runtime_flags.py
index 522e00f596228c1d322600fc4e5d1036962e66bc..a549d40029ceeb12304768ff1dfdb367ffcc07b0 100755
--- a/Source/core/scripts/make_internal_runtime_flags.py
+++ b/Source/core/scripts/make_internal_runtime_flags.py
@@ -46,13 +46,13 @@ class InternalRuntimeFlagsWriter(make_runtime_features.RuntimeFeatureWriter):
(self.class_name + ".h"): self.generate_header,
}
- @template_expander.use_jinja(class_name + ".idl.tmpl")
+ @template_expander.use_jinja(class_name + ".idl")
def generate_idl(self):
return {
'features': self._features,
}
- @template_expander.use_jinja(class_name + ".h.tmpl")
+ @template_expander.use_jinja(class_name + ".h")
def generate_header(self):
return {
'features': self._features,
« no previous file with comments | « Source/core/core_derived_sources.gyp ('k') | Source/core/scripts/make_runtime_features.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698