| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 '<(blink_core_output_dir)/PrivateScriptSourcesForTesting.h', | 179 '<(blink_core_output_dir)/PrivateScriptSourcesForTesting.h', |
| 180 ], | 180 ], |
| 181 'action': [ | 181 'action': [ |
| 182 'python', | 182 'python', |
| 183 '../build/scripts/make_private_script_source.py', | 183 '../build/scripts/make_private_script_source.py', |
| 184 '<@(_outputs)', | 184 '<@(_outputs)', |
| 185 '<@(_private_script_files)' | 185 '<@(_private_script_files)' |
| 186 ], | 186 ], |
| 187 }, | 187 }, |
| 188 { | 188 { |
| 189 'action_name': 'generateXMLViewerCSS', | |
| 190 'inputs': [ | |
| 191 'xml/XMLViewer.css', | |
| 192 ], | |
| 193 'outputs': [ | |
| 194 '<(blink_core_output_dir)/XMLViewerCSS.h', | |
| 195 ], | |
| 196 'action': [ | |
| 197 'python', | |
| 198 '../build/scripts/xxd.py', | |
| 199 'XMLViewer_css', | |
| 200 '<@(_inputs)', | |
| 201 '<@(_outputs)' | |
| 202 ], | |
| 203 }, | |
| 204 { | |
| 205 'action_name': 'generateXMLViewerJS', | |
| 206 'inputs': [ | |
| 207 'xml/XMLViewer.js', | |
| 208 ], | |
| 209 'outputs': [ | |
| 210 '<(blink_core_output_dir)/XMLViewerJS.h', | |
| 211 ], | |
| 212 'action': [ | |
| 213 'python', | |
| 214 '../build/scripts/xxd.py', | |
| 215 'XMLViewer_js', | |
| 216 '<@(_inputs)', | |
| 217 '<@(_outputs)' | |
| 218 ], | |
| 219 }, | |
| 220 { | |
| 221 'action_name': 'HTMLEntityTable', | 189 'action_name': 'HTMLEntityTable', |
| 222 'inputs': [ | 190 'inputs': [ |
| 223 'html/parser/create-html-entity-table', | 191 'html/parser/create-html-entity-table', |
| 224 'html/parser/HTMLEntityNames.in', | 192 'html/parser/HTMLEntityNames.in', |
| 225 ], | 193 ], |
| 226 'outputs': [ | 194 'outputs': [ |
| 227 '<(blink_core_output_dir)/HTMLEntityTable.cpp' | 195 '<(blink_core_output_dir)/HTMLEntityTable.cpp' |
| 228 ], | 196 ], |
| 229 'action': [ | 197 'action': [ |
| 230 'python', | 198 'python', |
| (...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 851 '../build/scripts/rule_bison.py', | 819 '../build/scripts/rule_bison.py', |
| 852 '<(RULE_INPUT_PATH)', | 820 '<(RULE_INPUT_PATH)', |
| 853 '<(blink_core_output_dir)', | 821 '<(blink_core_output_dir)', |
| 854 '<(bison_exe)', | 822 '<(bison_exe)', |
| 855 ], | 823 ], |
| 856 }, | 824 }, |
| 857 ], | 825 ], |
| 858 }, | 826 }, |
| 859 ], | 827 ], |
| 860 } | 828 } |
| OLD | NEW |