| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 bindings_scripts_dir = "//sky/engine/bindings2/scripts" | 5 bindings_scripts_dir = "//sky/engine/bindings/scripts" |
| 6 bindings_output_dir = "$root_gen_dir/sky/bindings" | 6 bindings_output_dir = "$root_gen_dir/sky/bindings" |
| 7 | 7 |
| 8 idl_lexer_parser_files = [ | 8 idl_lexer_parser_files = [ |
| 9 # PLY (Python Lex-Yacc) | 9 # PLY (Python Lex-Yacc) |
| 10 "//third_party/ply/lex.py", | 10 "//third_party/ply/lex.py", |
| 11 "//third_party/ply/yacc.py", | 11 "//third_party/ply/yacc.py", |
| 12 | 12 |
| 13 # Web IDL lexer/parser (base parser) | 13 # Web IDL lexer/parser (base parser) |
| 14 "//tools/idl_parser/idl_lexer.py", | 14 "//tools/idl_parser/idl_lexer.py", |
| 15 "//tools/idl_parser/idl_node.py", | 15 "//tools/idl_parser/idl_node.py", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 41 "scripts/code_generator_dart.py", | 41 "scripts/code_generator_dart.py", |
| 42 | 42 |
| 43 # The dart files depend on the v8 files. :( | 43 # The dart files depend on the v8 files. :( |
| 44 "scripts/v8_attributes.py", | 44 "scripts/v8_attributes.py", |
| 45 "scripts/v8_globals.py", | 45 "scripts/v8_globals.py", |
| 46 "scripts/v8_interface.py", | 46 "scripts/v8_interface.py", |
| 47 "scripts/v8_methods.py", | 47 "scripts/v8_methods.py", |
| 48 "scripts/v8_types.py", | 48 "scripts/v8_types.py", |
| 49 "scripts/v8_utilities.py", | 49 "scripts/v8_utilities.py", |
| 50 ] | 50 ] |
| OLD | NEW |