| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'bindings_scripts_dir': '.', |
| 8 'jinja_module_files': [ |
| 9 # jinja2/__init__.py contains version string, so sufficient for package |
| 10 '<(DEPTH)/third_party/jinja2/__init__.py', |
| 11 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep |
| 12 ], |
| 13 'idl_lexer_parser_files': [ |
| 14 # PLY (Python Lex-Yacc) |
| 15 '<(DEPTH)/third_party/ply/lex.py', |
| 16 '<(DEPTH)/third_party/ply/yacc.py', |
| 17 # Web IDL lexer/parser (base parser) |
| 18 '<(DEPTH)/tools/idl_parser/idl_lexer.py', |
| 19 '<(DEPTH)/tools/idl_parser/idl_node.py', |
| 20 '<(DEPTH)/tools/idl_parser/idl_parser.py', |
| 21 # Blink IDL lexer/parser/constructor |
| 22 'blink_idl_lexer.py', |
| 23 'blink_idl_parser.py', |
| 24 ], |
| 25 'idl_compiler_files': [ |
| 26 'idl_compiler.py', |
| 27 # Blink IDL front end (ex-lexer/parser) |
| 28 'idl_definitions.py', |
| 29 'idl_reader.py', |
| 30 'idl_types.py', |
| 31 'idl_validator.py', |
| 32 'interface_dependency_resolver.py', |
| 33 # V8 code generator |
| 34 'code_generator_v8.py', |
| 35 'v8_attributes.py', |
| 36 'v8_callback_interface.py', |
| 37 'v8_globals.py', |
| 38 'v8_interface.py', |
| 39 'v8_methods.py', |
| 40 'v8_types.py', |
| 41 'v8_utilities.py', |
| 42 ], |
| 43 }, |
| 44 } |
| OLD | NEW |