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 }, | |
214 'inputs': [ | 208 'inputs': [ |
215 '<@(scripts_for_in_files)', | 209 '<@(css_properties_files)', |
216 '../build/scripts/make_css_property_names.py', | 210 '../build/scripts/make_css_property_names.py', |
217 '<@(in_files)' | |
218 ], | 211 ], |
219 'outputs': [ | 212 'outputs': [ |
220 '<(blink_core_output_dir)/CSSPropertyNames.cpp', | 213 '<(blink_core_output_dir)/CSSPropertyNames.cpp', |
221 '<(blink_core_output_dir)/CSSPropertyNames.h', | 214 '<(blink_core_output_dir)/CSSPropertyNames.h', |
222 ], | 215 ], |
223 'action': [ | 216 'action': [ |
224 'python', | 217 'python', |
225 '../build/scripts/make_css_property_names.py', | 218 '../build/scripts/make_css_property_names.py', |
226 '<@(in_files)', | 219 'css/CSSProperties.in', |
227 '--output_dir', | 220 '--output_dir', |
228 '<(blink_core_output_dir)', | 221 '<(blink_core_output_dir)', |
229 '--gperf', '<(gperf_exe)', | 222 '--gperf', '<(gperf_exe)', |
230 ], | 223 ], |
231 }, | 224 }, |
232 { | 225 { |
233 'action_name': 'MediaFeatureNames', | 226 'action_name': 'MediaFeatureNames', |
234 'variables': { | 227 'variables': { |
235 'in_files': [ | 228 'in_files': [ |
236 'css/MediaFeatureNames.in', | 229 'css/MediaFeatureNames.in', |
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
818 '../build/scripts/rule_bison.py', | 811 '../build/scripts/rule_bison.py', |
819 '<(RULE_INPUT_PATH)', | 812 '<(RULE_INPUT_PATH)', |
820 '<(blink_core_output_dir)', | 813 '<(blink_core_output_dir)', |
821 '<(bison_exe)', | 814 '<(bison_exe)', |
822 ], | 815 ], |
823 }, | 816 }, |
824 ], | 817 ], |
825 }, | 818 }, |
826 ], | 819 ], |
827 } | 820 } |
OLD | NEW |