| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Pre-caching steps used internally by the IDL compiler | 5 # Pre-caching steps used internally by the IDL compiler |
| 6 # | 6 # |
| 7 # Design doc: http://www.chromium.org/developers/design-documents/idl-build | 7 # Design doc: http://www.chromium.org/developers/design-documents/idl-build |
| 8 | 8 |
| 9 { | 9 { |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 # GN version: //third_party/WebKit/Source/bindings/scripts:cached_lex_yacc_t
ables | 25 # GN version: //third_party/WebKit/Source/bindings/scripts:cached_lex_yacc_t
ables |
| 26 'target_name': 'cached_lex_yacc_tables', | 26 'target_name': 'cached_lex_yacc_tables', |
| 27 'type': 'none', | 27 'type': 'none', |
| 28 'actions': [{ | 28 'actions': [{ |
| 29 'action_name': 'cache_lex_yacc_tables', | 29 'action_name': 'cache_lex_yacc_tables', |
| 30 'inputs': [ | 30 'inputs': [ |
| 31 '<@(idl_lexer_parser_files)', | 31 '<@(idl_lexer_parser_files)', |
| 32 ], | 32 ], |
| 33 'outputs': [ | 33 'outputs': [ |
| 34 '<(bindings_scripts_output_dir)/lextab.py', | 34 '<(bindings_scripts_output_dir)/lextab.py', |
| 35 '<(bindings_scripts_output_dir)/lextab.pyc', |
| 35 '<(bindings_scripts_output_dir)/parsetab.pickle', | 36 '<(bindings_scripts_output_dir)/parsetab.pickle', |
| 36 ], | 37 ], |
| 37 'action': [ | 38 'action': [ |
| 38 'python', | 39 'python', |
| 39 'blink_idl_parser.py', | 40 'blink_idl_parser.py', |
| 40 '<(bindings_scripts_output_dir)', | 41 '<(bindings_scripts_output_dir)', |
| 41 ], | 42 ], |
| 42 'message': 'Caching PLY lex & yacc lex/parse tables', | 43 'message': 'Caching PLY lex & yacc lex/parse tables', |
| 43 }], | 44 }], |
| 44 }, | 45 }, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 66 'code_generator_v8.py', | 67 'code_generator_v8.py', |
| 67 '<(bindings_scripts_output_dir)', | 68 '<(bindings_scripts_output_dir)', |
| 68 '<(bindings_scripts_output_dir)/cached_jinja_templates.stamp', | 69 '<(bindings_scripts_output_dir)/cached_jinja_templates.stamp', |
| 69 ], | 70 ], |
| 70 'message': 'Caching bytecode of Jinja templates', | 71 'message': 'Caching bytecode of Jinja templates', |
| 71 }], | 72 }], |
| 72 }, | 73 }, |
| 73 ################################################################################ | 74 ################################################################################ |
| 74 ], # targets | 75 ], # targets |
| 75 } | 76 } |
| OLD | NEW |