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

Side by Side Diff: Source/core/core.gyp/core_derived_sources.gyp

Issue 14905002: Use jinja2 templating engine for Python code generators (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 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 '<@(_outputs)', 147 '<@(_outputs)',
148 '<@(_inputs)' 148 '<@(_inputs)'
149 ], 149 ],
150 }, 150 },
151 { 151 {
152 'action_name': 'RuntimeEnabledFeatures', 152 'action_name': 'RuntimeEnabledFeatures',
153 'inputs': [ 153 'inputs': [
154 '<@(scripts_for_in_files)', 154 '<@(scripts_for_in_files)',
155 '../scripts/make_runtime_features.py', 155 '../scripts/make_runtime_features.py',
156 '../page/RuntimeEnabledFeatures.in', 156 '../page/RuntimeEnabledFeatures.in',
157 '../page/RuntimeEnabledFeatures.cpp.tmpl',
158 '../page/RuntimeEnabledFeatures.h.tmpl',
157 ], 159 ],
158 'outputs': [ 160 'outputs': [
159 '<(SHARED_INTERMEDIATE_DIR)/webkit/RuntimeEnabledFeatures.cpp', 161 '<(SHARED_INTERMEDIATE_DIR)/webkit/RuntimeEnabledFeatures.cpp',
160 '<(SHARED_INTERMEDIATE_DIR)/webkit/RuntimeEnabledFeatures.h', 162 '<(SHARED_INTERMEDIATE_DIR)/webkit/RuntimeEnabledFeatures.h',
161 ], 163 ],
162 'action': [ 164 'action': [
163 'python', 165 'python',
164 '../scripts/make_runtime_features.py', 166 '../scripts/make_runtime_features.py',
165 '../page/RuntimeEnabledFeatures.in', 167 '../page/RuntimeEnabledFeatures.in',
166 '<(SHARED_INTERMEDIATE_DIR)/webkit/', 168 '<(SHARED_INTERMEDIATE_DIR)/webkit/',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 '--extraDefines', '<(feature_defines)' 305 '--extraDefines', '<(feature_defines)'
304 ], 306 ],
305 'msvs_cygwin_shell': 1, 307 'msvs_cygwin_shell': 1,
306 }, 308 },
307 { 309 {
308 'action_name': 'EventFactory', 310 'action_name': 'EventFactory',
309 'inputs': [ 311 'inputs': [
310 '<@(scripts_for_in_files)', 312 '<@(scripts_for_in_files)',
311 '../scripts/make_event_factory.py', 313 '../scripts/make_event_factory.py',
312 '../dom/EventNames.in', 314 '../dom/EventNames.in',
315 '../dom/EventFactory.cpp.tmpl',
313 ], 316 ],
314 'outputs': [ 317 'outputs': [
315 '<(SHARED_INTERMEDIATE_DIR)/webkit/EventFactory.cpp', 318 '<(SHARED_INTERMEDIATE_DIR)/webkit/EventFactory.cpp',
316 ], 319 ],
317 'action': [ 320 'action': [
318 'python', 321 'python',
319 '../scripts/make_event_factory.py', 322 '../scripts/make_event_factory.py',
320 '../dom/EventNames.in', 323 '../dom/EventNames.in',
321 '<(SHARED_INTERMEDIATE_DIR)/webkit/', 324 '<(SHARED_INTERMEDIATE_DIR)/webkit/',
322 ], 325 ],
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 '../scripts/make-hash-tools.pl', 649 '../scripts/make-hash-tools.pl',
647 '<(SHARED_INTERMEDIATE_DIR)/webkit', 650 '<(SHARED_INTERMEDIATE_DIR)/webkit',
648 '<(RULE_INPUT_PATH)', 651 '<(RULE_INPUT_PATH)',
649 '<(gperf_exe)', 652 '<(gperf_exe)',
650 ], 653 ],
651 }, 654 },
652 ], 655 ],
653 }, 656 },
654 ], 657 ],
655 } 658 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698