| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 '<(blink_core_output_dir)/PrivateScriptSources.h', | 159 '<(blink_core_output_dir)/PrivateScriptSources.h', |
| 160 ], | 160 ], |
| 161 'action': [ | 161 'action': [ |
| 162 'python', | 162 'python', |
| 163 '../build/scripts/make_private_script_source.py', | 163 '../build/scripts/make_private_script_source.py', |
| 164 '<@(_outputs)', | 164 '<@(_outputs)', |
| 165 '<@(_private_script_files)' | 165 '<@(_private_script_files)' |
| 166 ], | 166 ], |
| 167 }, | 167 }, |
| 168 { | 168 { |
| 169 'action_name': 'generatePrivateScriptForTesting', |
| 170 'private_script_files': [ |
| 171 'testing/Internals.js', |
| 172 ], |
| 173 'inputs': [ |
| 174 '../build/scripts/make_private_script_source.py', |
| 175 '<@(_private_script_files)', |
| 176 ], |
| 177 'outputs': [ |
| 178 '<(blink_core_output_dir)/PrivateScriptSourcesForTesting.h', |
| 179 ], |
| 180 'action': [ |
| 181 'python', |
| 182 '../build/scripts/make_private_script_source.py', |
| 183 '<@(_outputs)', |
| 184 '<@(_private_script_files)' |
| 185 ], |
| 186 }, |
| 187 { |
| 169 'action_name': 'generateXMLViewerCSS', | 188 'action_name': 'generateXMLViewerCSS', |
| 170 'inputs': [ | 189 'inputs': [ |
| 171 'xml/XMLViewer.css', | 190 'xml/XMLViewer.css', |
| 172 ], | 191 ], |
| 173 'outputs': [ | 192 'outputs': [ |
| 174 '<(blink_core_output_dir)/XMLViewerCSS.h', | 193 '<(blink_core_output_dir)/XMLViewerCSS.h', |
| 175 ], | 194 ], |
| 176 'action': [ | 195 'action': [ |
| 177 'python', | 196 'python', |
| 178 '../build/scripts/xxd.py', | 197 '../build/scripts/xxd.py', |
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 '../build/scripts/rule_bison.py', | 857 '../build/scripts/rule_bison.py', |
| 839 '<(RULE_INPUT_PATH)', | 858 '<(RULE_INPUT_PATH)', |
| 840 '<(blink_core_output_dir)', | 859 '<(blink_core_output_dir)', |
| 841 '<(bison_exe)', | 860 '<(bison_exe)', |
| 842 ], | 861 ], |
| 843 }, | 862 }, |
| 844 ], | 863 ], |
| 845 }, | 864 }, |
| 846 ], | 865 ], |
| 847 } | 866 } |
| OLD | NEW |