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

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

Issue 235673007: Fix deps problems in Jinja template use in build/scripts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/build/scripts/make_media_features.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 ], 181 ],
182 }, 182 },
183 { 183 {
184 'action_name': 'MediaFeatureNames', 184 'action_name': 'MediaFeatureNames',
185 'variables': { 185 'variables': {
186 'in_files': [ 186 'in_files': [
187 'css/MediaFeatureNames.in', 187 'css/MediaFeatureNames.in',
188 ], 188 ],
189 }, 189 },
190 'inputs': [ 190 'inputs': [
191 '<@(scripts_for_in_files)', 191 '<@(make_names_files)',
192 '../build/scripts/make_media_feature_names.py', 192 '../build/scripts/make_media_feature_names.py',
193 '<@(in_files)' 193 '<@(in_files)'
194 ], 194 ],
195 'outputs': [ 195 'outputs': [
196 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaFeatureNames.cpp', 196 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaFeatureNames.cpp',
197 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaFeatureNames.h', 197 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaFeatureNames.h',
198 ], 198 ],
199 'action': [ 199 'action': [
200 'python', 200 'python',
201 '../build/scripts/make_media_feature_names.py', 201 '../build/scripts/make_media_feature_names.py',
202 '<@(in_files)', 202 '<@(in_files)',
203 '--output_dir', 203 '--output_dir',
204 '<(SHARED_INTERMEDIATE_DIR)/blink', 204 '<(SHARED_INTERMEDIATE_DIR)/blink',
205 '--defines', '<(feature_defines)', 205 '--defines', '<(feature_defines)',
206 ], 206 ],
207 }, 207 },
208 { 208 {
209 'action_name': 'MediaFeatures', 209 'action_name': 'MediaFeatures',
210 'variables': { 210 'variables': {
211 'in_files': [ 211 'in_files': [
212 'css/MediaFeatureNames.in', 212 'css/MediaFeatureNames.in',
213 ], 213 ],
214 }, 214 },
215 'inputs': [ 215 'inputs': [
216 '<@(scripts_for_in_files)', 216 '<@(scripts_for_in_files)',
217 '../build/scripts/make_media_features.py', 217 '../build/scripts/make_media_features.py',
218 '../build/scripts/templates/MediaFeatures.h.tmpl',
218 '<@(in_files)' 219 '<@(in_files)'
219 ], 220 ],
220 'outputs': [ 221 'outputs': [
221 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaFeatures.h', 222 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaFeatures.h',
222 ], 223 ],
223 'action': [ 224 'action': [
224 'python', 225 'python',
225 '../build/scripts/make_media_features.py', 226 '../build/scripts/make_media_features.py',
226 '<@(in_files)', 227 '<@(in_files)',
227 '--output_dir', 228 '--output_dir',
228 '<(SHARED_INTERMEDIATE_DIR)/blink', 229 '<(SHARED_INTERMEDIATE_DIR)/blink',
229 '--defines', '<(feature_defines)', 230 '--defines', '<(feature_defines)',
230 ], 231 ],
231 }, 232 },
232 { 233 {
233 'action_name': 'MediaTypeNames', 234 'action_name': 'MediaTypeNames',
234 'variables': { 235 'variables': {
235 'in_files': [ 236 'in_files': [
236 'css/MediaTypeNames.in', 237 'css/MediaTypeNames.in',
237 ], 238 ],
238 }, 239 },
239 'inputs': [ 240 'inputs': [
240 '<@(scripts_for_in_files)', 241 '<@(make_names_files)',
241 '../build/scripts/make_names.py',
242 '<@(in_files)' 242 '<@(in_files)'
243 ], 243 ],
244 'outputs': [ 244 'outputs': [
245 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaTypeNames.cpp', 245 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaTypeNames.cpp',
246 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaTypeNames.h', 246 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaTypeNames.h',
247 ], 247 ],
248 'action': [ 248 'action': [
249 'python', 249 'python',
250 '../build/scripts/make_names.py', 250 '../build/scripts/make_names.py',
251 '<@(in_files)', 251 '<@(in_files)',
(...skipping 16 matching lines...) Expand all
268 '--output_dir', 268 '--output_dir',
269 '<(SHARED_INTERMEDIATE_DIR)/blink', 269 '<(SHARED_INTERMEDIATE_DIR)/blink',
270 '--defines', '<(feature_defines)', 270 '--defines', '<(feature_defines)',
271 ], 271 ],
272 }, 272 },
273 { 273 {
274 'action_name': 'StylePropertyShorthand', 274 'action_name': 'StylePropertyShorthand',
275 'inputs': [ 275 'inputs': [
276 '<@(scripts_for_in_files)', 276 '<@(scripts_for_in_files)',
277 '../build/scripts/make_style_shorthands.py', 277 '../build/scripts/make_style_shorthands.py',
278 '../build/scripts/templates/StylePropertyShorthand.cpp.tmpl',
279 '../build/scripts/templates/StylePropertyShorthand.h.tmpl',
278 'css/CSSShorthands.in', 280 'css/CSSShorthands.in',
279 '../build/scripts/templates/StylePropertyShorthand.h.tmpl',
280 '../build/scripts/templates/StylePropertyShorthand.cpp.tmpl',
281 ], 281 ],
282 'outputs': [ 282 'outputs': [
283 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.cpp', 283 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.cpp',
284 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.h', 284 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.h',
285 ], 285 ],
286 'action': [ 286 'action': [
287 'python', 287 'python',
288 '../build/scripts/make_style_shorthands.py', 288 '../build/scripts/make_style_shorthands.py',
289 'css/CSSShorthands.in', 289 'css/CSSShorthands.in',
290 '--output_dir', 290 '--output_dir',
291 '<(SHARED_INTERMEDIATE_DIR)/blink', 291 '<(SHARED_INTERMEDIATE_DIR)/blink',
292 ], 292 ],
293 }, 293 },
294 { 294 {
295 'action_name': 'StyleBuilder', 295 'action_name': 'StyleBuilder',
296 'inputs': [ 296 'inputs': [
297 '<@(scripts_for_in_files)', 297 '<@(scripts_for_in_files)',
298 '../build/scripts/make_style_builder.py', 298 '../build/scripts/make_style_builder.py',
299 '../build/scripts/templates/StyleBuilder.cpp.tmpl',
300 '../build/scripts/templates/StyleBuilderFunctions.cpp.tmpl',
301 '../build/scripts/templates/StyleBuilderFunctions.h.tmpl',
299 'css/CSSProperties.in', 302 'css/CSSProperties.in',
300 '../build/scripts/templates/StyleBuilder.cpp.tmpl',
301 '../build/scripts/templates/StyleBuilderFunctions.h.tmpl',
302 '../build/scripts/templates/StyleBuilderFunctions.cpp.tmpl',
303 ], 303 ],
304 'outputs': [ 304 'outputs': [
305 '<(SHARED_INTERMEDIATE_DIR)/blink/StyleBuilder.cpp', 305 '<(SHARED_INTERMEDIATE_DIR)/blink/StyleBuilder.cpp',
306 '<(SHARED_INTERMEDIATE_DIR)/blink/StyleBuilderFunctions.h', 306 '<(SHARED_INTERMEDIATE_DIR)/blink/StyleBuilderFunctions.h',
307 '<(SHARED_INTERMEDIATE_DIR)/blink/StyleBuilderFunctions.cpp', 307 '<(SHARED_INTERMEDIATE_DIR)/blink/StyleBuilderFunctions.cpp',
308 ], 308 ],
309 'action': [ 309 'action': [
310 'python', 310 'python',
311 '../build/scripts/make_style_builder.py', 311 '../build/scripts/make_style_builder.py',
312 'css/CSSProperties.in', 312 'css/CSSProperties.in',
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 '../build/scripts/rule_bison.py', 761 '../build/scripts/rule_bison.py',
762 '<(RULE_INPUT_PATH)', 762 '<(RULE_INPUT_PATH)',
763 '<(SHARED_INTERMEDIATE_DIR)/blink', 763 '<(SHARED_INTERMEDIATE_DIR)/blink',
764 '<(bison_exe)', 764 '<(bison_exe)',
765 ], 765 ],
766 }, 766 },
767 ], 767 ],
768 }, 768 },
769 ], 769 ],
770 } 770 }
OLDNEW
« no previous file with comments | « Source/build/scripts/make_media_features.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698