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

Unified Diff: Source/bindings/scripts/scripts.gypi

Issue 302433005: bindings GYP: split off scripts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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 | « Source/bindings/scripts/scripts.gyp ('k') | Source/bindings/templates/templates.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/scripts.gypi
diff --git a/Source/bindings/scripts/scripts.gypi b/Source/bindings/scripts/scripts.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..27e9846a4831faf3e5a19bc0c1698933851d4f96
--- /dev/null
+++ b/Source/bindings/scripts/scripts.gypi
@@ -0,0 +1,44 @@
+# Copyright 2014 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.
+
+{
+ 'variables': {
+ 'bindings_scripts_dir': '.',
+ 'jinja_module_files': [
+ # jinja2/__init__.py contains version string, so sufficient for package
+ '<(DEPTH)/third_party/jinja2/__init__.py',
+ '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep
+ ],
+ 'idl_lexer_parser_files': [
+ # PLY (Python Lex-Yacc)
+ '<(DEPTH)/third_party/ply/lex.py',
+ '<(DEPTH)/third_party/ply/yacc.py',
+ # Web IDL lexer/parser (base parser)
+ '<(DEPTH)/tools/idl_parser/idl_lexer.py',
+ '<(DEPTH)/tools/idl_parser/idl_node.py',
+ '<(DEPTH)/tools/idl_parser/idl_parser.py',
+ # Blink IDL lexer/parser/constructor
+ 'blink_idl_lexer.py',
+ 'blink_idl_parser.py',
+ ],
+ 'idl_compiler_files': [
+ 'idl_compiler.py',
+ # Blink IDL front end (ex-lexer/parser)
+ 'idl_definitions.py',
+ 'idl_reader.py',
+ 'idl_types.py',
+ 'idl_validator.py',
+ 'interface_dependency_resolver.py',
+ # V8 code generator
+ 'code_generator_v8.py',
+ 'v8_attributes.py',
+ 'v8_callback_interface.py',
+ 'v8_globals.py',
+ 'v8_interface.py',
+ 'v8_methods.py',
+ 'v8_types.py',
+ 'v8_utilities.py',
+ ],
+ },
+}
« no previous file with comments | « Source/bindings/scripts/scripts.gyp ('k') | Source/bindings/templates/templates.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698