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

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

Issue 216803002: Implement all shorthand property. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed parseAnimationProperty 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
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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 ], 263 ],
264 'action': [ 264 'action': [
265 'python', 265 'python',
266 '../build/scripts/make_mediaquery_tokenizer_codepoints.py', 266 '../build/scripts/make_mediaquery_tokenizer_codepoints.py',
267 '--output_dir', 267 '--output_dir',
268 '<(SHARED_INTERMEDIATE_DIR)/blink', 268 '<(SHARED_INTERMEDIATE_DIR)/blink',
269 '--defines', '<(feature_defines)', 269 '--defines', '<(feature_defines)',
270 ], 270 ],
271 }, 271 },
272 { 272 {
273 'action_name': 'generateCSSShorthandIn',
274 'inputs': [
275 '<@(scripts_for_in_files)',
276 '../build/scripts/make_style_shorthands.py',
277 'css/CSSShorthands.in',
278 'css/CSSPropertyNames.in',
279 '../build/scripts/templates/CSSShorthands.in.tmpl',
Nils Barth (inactive) 2014/04/03 06:27:06 Could you move the .tmpl up above the .in files?
tasak 2014/05/12 14:33:27 Done.
280 ],
281 'outputs': [
282 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSShorthands.in',
283 ],
284 'action': [
285 'python',
286 '../build/scripts/make_css_shorthands.py',
287 'css/CSSShorthands.in',
288 'css/CSSPropertyNames.in',
289 '--output_dir',
290 '<(SHARED_INTERMEDIATE_DIR)/blink',
291 ],
292 },
293 {
273 'action_name': 'StylePropertyShorthand', 294 'action_name': 'StylePropertyShorthand',
274 'inputs': [ 295 'inputs': [
275 '<@(scripts_for_in_files)', 296 '<@(scripts_for_in_files)',
276 '../build/scripts/make_style_shorthands.py', 297 '../build/scripts/make_style_shorthands.py',
277 'css/CSSShorthands.in', 298 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSShorthands.in',
Nils Barth (inactive) 2014/04/03 06:27:06 ...likewise here, templates before (generated) .in
tasak 2014/05/12 14:33:27 Done.
278 '../build/scripts/templates/StylePropertyShorthand.h.tmpl', 299 '../build/scripts/templates/StylePropertyShorthand.h.tmpl',
279 '../build/scripts/templates/StylePropertyShorthand.cpp.tmpl', 300 '../build/scripts/templates/StylePropertyShorthand.cpp.tmpl',
280 ], 301 ],
281 'outputs': [ 302 'outputs': [
282 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.cpp', 303 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.cpp',
283 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.h', 304 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.h',
284 ], 305 ],
285 'action': [ 306 'action': [
286 'python', 307 'python',
287 '../build/scripts/make_style_shorthands.py', 308 '../build/scripts/make_style_shorthands.py',
288 'css/CSSShorthands.in', 309 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSShorthands.in',
289 '--output_dir', 310 '--output_dir',
290 '<(SHARED_INTERMEDIATE_DIR)/blink', 311 '<(SHARED_INTERMEDIATE_DIR)/blink',
291 ], 312 ],
292 }, 313 },
293 { 314 {
294 'action_name': 'StyleBuilder', 315 'action_name': 'StyleBuilder',
295 'inputs': [ 316 'inputs': [
296 '<@(scripts_for_in_files)', 317 '<@(scripts_for_in_files)',
297 '../build/scripts/make_style_builder.py', 318 '../build/scripts/make_style_builder.py',
298 'css/CSSProperties.in', 319 'css/CSSProperties.in',
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 '../build/scripts/rule_bison.py', 781 '../build/scripts/rule_bison.py',
761 '<(RULE_INPUT_PATH)', 782 '<(RULE_INPUT_PATH)',
762 '<(SHARED_INTERMEDIATE_DIR)/blink', 783 '<(SHARED_INTERMEDIATE_DIR)/blink',
763 '<(bison_exe)', 784 '<(bison_exe)',
764 ], 785 ],
765 }, 786 },
766 ], 787 ],
767 }, 788 },
768 ], 789 ],
769 } 790 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698