Chromium Code Reviews| 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', |
| ], |