Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1070)

Side by Side Diff: sky/engine/bindings2/bindings.gni

Issue 918333002: Add the c++ code part of bindings2/ (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Updated per earlier reviews Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/engine/bindings2/IDLExtendedAttributes.txt ('k') | sky/engine/bindings2/builtin.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 ]
OLDNEW
« no previous file with comments | « sky/engine/bindings2/IDLExtendedAttributes.txt ('k') | sky/engine/bindings2/builtin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698