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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 '../config.gyp:config', | 138 '../config.gyp:config', |
139 ], | 139 ], |
140 'sources': [ | 140 'sources': [ |
141 # bison rule | 141 # bison rule |
142 'css/CSSGrammar.y', | 142 'css/CSSGrammar.y', |
143 'xml/XPathGrammar.y', | 143 'xml/XPathGrammar.y', |
144 ], | 144 ], |
145 'actions': [ | 145 'actions': [ |
146 { | 146 { |
147 'action_name': 'generatePrivateScript', | 147 'action_name': 'generatePrivateScript', |
148 # FIXME: The implementation of Blink-in-JS is not yet mature. | 148 # FIXME: The implementation of Blink-in-JS is not yet mature. |
149 # You can use Blink-in-JS in your local experiment, but don't ship it
. | 149 # You can use Blink-in-JS in your local experiment, but don't ship it. |
150 # crbug.com/341031 | 150 # crbug.com/341031 |
151 'private_script_files': [ | 151 'private_script_files': [ |
152 '../bindings/core/v8/PrivateScriptRunner.js', | 152 '../bindings/core/v8/PrivateScriptRunner.js', |
153 '../core/html/HTMLMarqueeElement.js', | 153 '../core/html/HTMLMarqueeElement.js', |
154 ], | 154 ], |
155 'inputs': [ | 155 'inputs': [ |
156 '../build/scripts/make_private_script_source.py', | 156 '../build/scripts/make_private_script_source.py', |
157 '<@(_private_script_files)', | 157 '<@(_private_script_files)', |
158 ], | 158 ], |
159 'outputs': [ | 159 'outputs': [ |
160 '<(blink_core_output_dir)/PrivateScriptSources.h', | 160 '<(blink_core_output_dir)/PrivateScriptSources.h', |
161 ], | 161 ], |
162 'action': [ | 162 'action': [ |
163 'python', | 163 'python', |
164 '../build/scripts/make_private_script_source.py', | 164 '../build/scripts/make_private_script_source.py', |
165 '<@(_outputs)', | 165 '<@(_outputs)', |
166 '<@(_private_script_files)' | 166 '<@(_private_script_files)' |
167 ], | 167 ], |
168 }, | 168 }, |
169 { | 169 { |
170 'action_name': 'generatePrivateScriptForTesting', | 170 'action_name': 'generatePrivateScriptForTesting', |
171 'private_script_files': [ | 171 'private_script_files': [ |
172 'testing/PrivateScriptTest.js', | 172 'testing/PartialPrivateScriptTest.js', |
| 173 'testing/PrivateScriptTest.js', |
173 ], | 174 ], |
174 'inputs': [ | 175 'inputs': [ |
175 '../build/scripts/make_private_script_source.py', | 176 '../build/scripts/make_private_script_source.py', |
176 '<@(_private_script_files)', | 177 '<@(_private_script_files)', |
177 ], | 178 ], |
178 'outputs': [ | 179 'outputs': [ |
179 '<(blink_core_output_dir)/PrivateScriptSourcesForTesting.h', | 180 '<(blink_core_output_dir)/PrivateScriptSourcesForTesting.h', |
180 ], | 181 ], |
181 'action': [ | 182 'action': [ |
182 'python', | 183 'python', |
183 '../build/scripts/make_private_script_source.py', | 184 '../build/scripts/make_private_script_source.py', |
184 '<@(_outputs)', | 185 '<@(_outputs)', |
185 '<@(_private_script_files)' | 186 '<@(_private_script_files)' |
186 ], | 187 ], |
187 }, | 188 }, |
188 { | 189 { |
189 'action_name': 'HTMLEntityTable', | 190 'action_name': 'HTMLEntityTable', |
190 'inputs': [ | 191 'inputs': [ |
191 'html/parser/create-html-entity-table', | 192 'html/parser/create-html-entity-table', |
192 'html/parser/HTMLEntityNames.in', | 193 'html/parser/HTMLEntityNames.in', |
193 ], | 194 ], |
194 'outputs': [ | 195 'outputs': [ |
195 '<(blink_core_output_dir)/HTMLEntityTable.cpp' | 196 '<(blink_core_output_dir)/HTMLEntityTable.cpp' |
196 ], | 197 ], |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 '../build/scripts/rule_bison.py', | 820 '../build/scripts/rule_bison.py', |
820 '<(RULE_INPUT_PATH)', | 821 '<(RULE_INPUT_PATH)', |
821 '<(blink_core_output_dir)', | 822 '<(blink_core_output_dir)', |
822 '<(bison_exe)', | 823 '<(bison_exe)', |
823 ], | 824 ], |
824 }, | 825 }, |
825 ], | 826 ], |
826 }, | 827 }, |
827 ], | 828 ], |
828 } | 829 } |
OLD | NEW |