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

Unified Diff: Source/bindings/core/idl.gypi

Issue 345893002: Implement an infrastructure of Blink-in-JS Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/IDLExtendedAttributes.txt ('k') | Source/bindings/scripts/code_generator_v8.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/idl.gypi
diff --git a/Source/bindings/core/idl.gypi b/Source/bindings/core/idl.gypi
index b4d1842b90dc5a680597edf20274ef426f1dc42b..bc0656cb7418b9091510e304cdba51f87efe0e11 100644
--- a/Source/bindings/core/idl.gypi
+++ b/Source/bindings/core/idl.gypi
@@ -11,17 +11,23 @@
],
'variables': {
+ 'binding_idl_files': [
+ # FIXME: Move this to Source/bindings/core/v8/PrivateScriptTest.idl
+ '../v8/PrivateScriptTest.idl',
+ ],
+
# IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces
# Interface IDL files: generate individual bindings (includes testing)
'core_interface_idl_files': [
'<@(core_idl_files)',
+ '<@(binding_idl_files)',
'<@(webcore_testing_idl_files)',
'<@(generated_webcore_testing_idl_files)',
],
# Write lists of main IDL files to a file, so that the command lines don't
# exceed OS length limits.
- 'core_idl_files_list': '<|(core_idl_files_list.tmp <@(core_idl_files))',
+ 'core_idl_files_list': '<|(core_idl_files_list.tmp <@(core_idl_files) <@(binding_idl_files))',
# Dependency IDL files: don't generate individual bindings, but do process
# in IDL dependency computation, and count as build dependencies
@@ -53,6 +59,7 @@
# Static IDL files
'core_static_interface_idl_files': [
'<@(core_idl_files)',
+ '<@(binding_idl_files)',
'<@(webcore_testing_idl_files)',
],
'core_static_dependency_idl_files': [
« no previous file with comments | « Source/bindings/IDLExtendedAttributes.txt ('k') | Source/bindings/scripts/code_generator_v8.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698