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