| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2015 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 bindings_scripts_dir = "//sky/engine/bindings2/scripts" |
| 6 bindings_output_dir = "$root_gen_dir/sky/bindings" |
| 7 |
| 8 idl_lexer_parser_files = [ |
| 9 # PLY (Python Lex-Yacc) |
| 10 "//third_party/ply/lex.py", |
| 11 "//third_party/ply/yacc.py", |
| 12 |
| 13 # Web IDL lexer/parser (base parser) |
| 14 "//tools/idl_parser/idl_lexer.py", |
| 15 "//tools/idl_parser/idl_node.py", |
| 16 "//tools/idl_parser/idl_parser.py", |
| 17 |
| 18 # Blink IDL lexer/parser/constructor |
| 19 "scripts/blink_idl_lexer.py", |
| 20 "scripts/blink_idl_parser.py", |
| 21 ] |
| 22 |
| 23 idl_compiler_files = [ |
| 24 "scripts/compiler.py", |
| 25 |
| 26 # Blink IDL front end (ex-lexer/parser) |
| 27 "scripts/idl_definitions.py", |
| 28 "scripts/idl_reader.py", |
| 29 "scripts/idl_types.py", |
| 30 "scripts/idl_validator.py", |
| 31 "scripts/interface_dependency_resolver.py", |
| 32 |
| 33 # Dart Code gen goes here. |
| 34 "scripts/dart_attributes.py", |
| 35 "scripts/dart_callback_interface.py", |
| 36 "scripts/dart_compiler.py", |
| 37 "scripts/dart_interface.py", |
| 38 "scripts/dart_methods.py", |
| 39 "scripts/dart_types.py", |
| 40 "scripts/dart_utilities.py", |
| 41 "scripts/code_generator_dart.py", |
| 42 |
| 43 # The dart files depend on the v8 files. :( |
| 44 "scripts/v8_attributes.py", |
| 45 "scripts/v8_globals.py", |
| 46 "scripts/v8_interface.py", |
| 47 "scripts/v8_methods.py", |
| 48 "scripts/v8_types.py", |
| 49 "scripts/v8_utilities.py", |
| 50 ] |
| OLD | NEW |