OLD | NEW |
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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 'action': [ | 198 'action': [ |
199 'python', | 199 'python', |
200 'html/parser/create-html-entity-table', | 200 'html/parser/create-html-entity-table', |
201 '-o', | 201 '-o', |
202 '<@(_outputs)', | 202 '<@(_outputs)', |
203 '<@(_inputs)' | 203 '<@(_inputs)' |
204 ], | 204 ], |
205 }, | 205 }, |
206 { | 206 { |
207 'action_name': 'CSSPropertyNames', | 207 'action_name': 'CSSPropertyNames', |
| 208 'variables': { |
| 209 'in_files': [ |
| 210 'css/CSSPropertyNames.in', |
| 211 'css/SVGCSSPropertyNames.in', |
| 212 ], |
| 213 }, |
208 'inputs': [ | 214 'inputs': [ |
209 '<@(css_properties_files)', | 215 '<@(scripts_for_in_files)', |
210 '../build/scripts/make_css_property_names.py', | 216 '../build/scripts/make_css_property_names.py', |
| 217 '<@(in_files)' |
211 ], | 218 ], |
212 'outputs': [ | 219 'outputs': [ |
213 '<(blink_core_output_dir)/CSSPropertyNames.cpp', | 220 '<(blink_core_output_dir)/CSSPropertyNames.cpp', |
214 '<(blink_core_output_dir)/CSSPropertyNames.h', | 221 '<(blink_core_output_dir)/CSSPropertyNames.h', |
215 ], | 222 ], |
216 'action': [ | 223 'action': [ |
217 'python', | 224 'python', |
218 '../build/scripts/make_css_property_names.py', | 225 '../build/scripts/make_css_property_names.py', |
219 'css/CSSProperties.in', | 226 '<@(in_files)', |
220 '--output_dir', | 227 '--output_dir', |
221 '<(blink_core_output_dir)', | 228 '<(blink_core_output_dir)', |
222 '--gperf', '<(gperf_exe)', | 229 '--gperf', '<(gperf_exe)', |
223 ], | 230 ], |
224 }, | 231 }, |
225 { | 232 { |
226 'action_name': 'MediaFeatureNames', | 233 'action_name': 'MediaFeatureNames', |
227 'variables': { | 234 'variables': { |
228 'in_files': [ | 235 'in_files': [ |
229 'css/MediaFeatureNames.in', | 236 'css/MediaFeatureNames.in', |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 ], | 351 ], |
345 'action': [ | 352 'action': [ |
346 'python', | 353 'python', |
347 '../build/scripts/make_style_builder.py', | 354 '../build/scripts/make_style_builder.py', |
348 'css/CSSProperties.in', | 355 'css/CSSProperties.in', |
349 '--output_dir', | 356 '--output_dir', |
350 '<(blink_core_output_dir)', | 357 '<(blink_core_output_dir)', |
351 ], | 358 ], |
352 }, | 359 }, |
353 { | 360 { |
354 'action_name': 'CSSPropertyMetadata', | |
355 'inputs': [ | |
356 '<@(css_properties_files)', | |
357 '../build/scripts/make_css_property_metadata.py', | |
358 '../build/scripts/templates/CSSPropertyMetadata.cpp.tmpl', | |
359 ], | |
360 'outputs': [ | |
361 '<(blink_core_output_dir)/CSSPropertyMetadata.cpp', | |
362 ], | |
363 'action': [ | |
364 'python', | |
365 '../build/scripts/make_css_property_metadata.py', | |
366 'css/CSSProperties.in', | |
367 '--output_dir', | |
368 '<(blink_core_output_dir)', | |
369 ], | |
370 }, | |
371 { | |
372 'action_name': 'CSSValueKeywords', | 361 'action_name': 'CSSValueKeywords', |
373 'variables': { | 362 'variables': { |
374 'in_files': [ | 363 'in_files': [ |
375 'css/CSSValueKeywords.in', | 364 'css/CSSValueKeywords.in', |
376 'css/SVGCSSValueKeywords.in', | 365 'css/SVGCSSValueKeywords.in', |
377 ], | 366 ], |
378 }, | 367 }, |
379 'inputs': [ | 368 'inputs': [ |
380 '<@(scripts_for_in_files)', | 369 '<@(scripts_for_in_files)', |
381 '../build/scripts/make_css_value_keywords.py', | 370 '../build/scripts/make_css_value_keywords.py', |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 '../build/scripts/rule_bison.py', | 818 '../build/scripts/rule_bison.py', |
830 '<(RULE_INPUT_PATH)', | 819 '<(RULE_INPUT_PATH)', |
831 '<(blink_core_output_dir)', | 820 '<(blink_core_output_dir)', |
832 '<(bison_exe)', | 821 '<(bison_exe)', |
833 ], | 822 ], |
834 }, | 823 }, |
835 ], | 824 ], |
836 }, | 825 }, |
837 ], | 826 ], |
838 } | 827 } |
OLD | NEW |