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

Unified 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, 9 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
Index: Source/core/core_generated.gyp
diff --git a/Source/core/core_generated.gyp b/Source/core/core_generated.gyp
index 45ecff6f9a8eeb561793c64dde0ff25fd67e3fb2..1ea4bb1db5c3d2523f4bba462646a8f438868d53 100644
--- a/Source/core/core_generated.gyp
+++ b/Source/core/core_generated.gyp
@@ -270,11 +270,32 @@
],
},
{
- 'action_name': 'StylePropertyShorthand',
+ 'action_name': 'generateCSSShorthandIn',
'inputs': [
'<@(scripts_for_in_files)',
'../build/scripts/make_style_shorthands.py',
'css/CSSShorthands.in',
+ 'css/CSSPropertyNames.in',
+ '../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.
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/blink/CSSShorthands.in',
+ ],
+ 'action': [
+ 'python',
+ '../build/scripts/make_css_shorthands.py',
+ 'css/CSSShorthands.in',
+ 'css/CSSPropertyNames.in',
+ '--output_dir',
+ '<(SHARED_INTERMEDIATE_DIR)/blink',
+ ],
+ },
+ {
+ 'action_name': 'StylePropertyShorthand',
+ 'inputs': [
+ '<@(scripts_for_in_files)',
+ '../build/scripts/make_style_shorthands.py',
+ '<(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.
'../build/scripts/templates/StylePropertyShorthand.h.tmpl',
'../build/scripts/templates/StylePropertyShorthand.cpp.tmpl',
],
@@ -285,7 +306,7 @@
'action': [
'python',
'../build/scripts/make_style_shorthands.py',
- 'css/CSSShorthands.in',
+ '<(SHARED_INTERMEDIATE_DIR)/blink/CSSShorthands.in',
'--output_dir',
'<(SHARED_INTERMEDIATE_DIR)/blink',
],

Powered by Google App Engine
This is Rietveld 408576698