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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/bindings2/IDLExtendedAttributes.txt ('k') | sky/engine/bindings2/builtin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/bindings2/bindings.gni
diff --git a/sky/engine/bindings2/bindings.gni b/sky/engine/bindings2/bindings.gni
new file mode 100644
index 0000000000000000000000000000000000000000..92726b759a868f3f1403008593b353eceb83474b
--- /dev/null
+++ b/sky/engine/bindings2/bindings.gni
@@ -0,0 +1,50 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+bindings_scripts_dir = "//sky/engine/bindings2/scripts"
+bindings_output_dir = "$root_gen_dir/sky/bindings"
+
+idl_lexer_parser_files = [
+ # PLY (Python Lex-Yacc)
+ "//third_party/ply/lex.py",
+ "//third_party/ply/yacc.py",
+
+ # Web IDL lexer/parser (base parser)
+ "//tools/idl_parser/idl_lexer.py",
+ "//tools/idl_parser/idl_node.py",
+ "//tools/idl_parser/idl_parser.py",
+
+ # Blink IDL lexer/parser/constructor
+ "scripts/blink_idl_lexer.py",
+ "scripts/blink_idl_parser.py",
+]
+
+idl_compiler_files = [
+ "scripts/compiler.py",
+
+ # Blink IDL front end (ex-lexer/parser)
+ "scripts/idl_definitions.py",
+ "scripts/idl_reader.py",
+ "scripts/idl_types.py",
+ "scripts/idl_validator.py",
+ "scripts/interface_dependency_resolver.py",
+
+ # Dart Code gen goes here.
+ "scripts/dart_attributes.py",
+ "scripts/dart_callback_interface.py",
+ "scripts/dart_compiler.py",
+ "scripts/dart_interface.py",
+ "scripts/dart_methods.py",
+ "scripts/dart_types.py",
+ "scripts/dart_utilities.py",
+ "scripts/code_generator_dart.py",
+
+ # The dart files depend on the v8 files. :(
+ "scripts/v8_attributes.py",
+ "scripts/v8_globals.py",
+ "scripts/v8_interface.py",
+ "scripts/v8_methods.py",
+ "scripts/v8_types.py",
+ "scripts/v8_utilities.py",
+]
« 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