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

Side by Side Diff: Source/core/scripts/template_expander.py

Issue 15095002: Use jinja2 for make_runtime_features and make_internal_runtime_flags (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 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 unified diff | Download patch
OLDNEW
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2013 Google Inc. All rights reserved. 1 # Copyright (C) 2013 Google Inc. All rights reserved.
4 # 2 #
5 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
7 # met: 5 # met:
8 # 6 #
9 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
11 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
12 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
13 # in the documentation and/or other materials provided with the 11 # in the documentation and/or other materials provided with the
14 # distribution. 12 # distribution.
15 # * Neither the name of Google Inc. nor the names of its 13 # * Neither the name of Google Inc. nor the names of its
16 # contributors may be used to endorse or promote products derived from 14 # contributors may be used to endorse or promote products derived from
17 # this software without specific prior written permission. 15 # this software without specific prior written permission.
18 # 16 #
19 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 28
31 """This file returns a list of all the IDL files that contain a partial interfac e.""" 29 import os
32
33 import re
34 import sys 30 import sys
35 31
36 partial_interface_regex = re.compile(r'partial\s+interface\s+(\w+).+\]', re.M | re.S) 32 _curdir = os.path.dirname(os.path.realpath(__file__))
33 # jinja2 is in chromium's third_party directory
34 sys.path.append(os.path.join(_curdir, *([os.pardir] * 4)))
37 35
38 def DoMain(filenames): 36
39 partial_files = set() 37 def applytemplate(pathtotemplate, params):
abarth-chromium 2013/05/10 16:18:40 applytemplate -> apply_template pathtotemplate ->
40 for filename in filenames: 38 import jinja2
41 with open(filename) as f: 39 dirname, basename = os.path.split(pathtotemplate)
42 match = re.search(partial_interface_regex, f.read()) 40 pathtotemplates = os.path.join(_curdir, "templates")
43 if match: 41 env = jinja2.Environment(loader=jinja2.FileSystemLoader([dirname, pathtotemp lates]))
44 partial_files.add(filename) 42 template = env.get_template(basename)
45 return '\n'.join(partial_files) 43 return template.render(params)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698