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

Unified Diff: Source/bindings/core/v8/generated.gyp

Issue 300133002: Split generated_bindings.gyp into core and modules (1/2) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix missing include 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/core/core.gypi ('k') | Source/bindings/core/v8/generated.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/generated.gyp
diff --git a/Source/bindings/core/v8/generated.gyp b/Source/bindings/core/v8/generated.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..23df6e95d76da8859241bd5954d06968ed07bab7
--- /dev/null
+++ b/Source/bindings/core/v8/generated.gyp
@@ -0,0 +1,52 @@
+# 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.
+
+# Generate IDL bindings for core, plus aggregate bindings files.
+#
+# Design doc: http://www.chromium.org/developers/design-documents/idl-build
+
+{
+ 'includes': [
+ 'generated.gypi',
+ '../../bindings.gypi',
+ '../../idl.gypi',
+ ],
+
+ 'targets': [
+################################################################################
+ {
+ 'target_name': 'bindings_core_generated_aggregate',
+ 'type': 'none',
+ 'actions': [{
+ 'action_name': 'generate_aggregate_bindings_core',
+ 'inputs': [
+ '<(bindings_scripts_dir)/aggregate_generated_bindings.py',
+ '<(core_idl_files_list)',
+ ],
+ 'outputs': [
+ '<@(bindings_core_generated_aggregate_files)',
+ ],
+ 'action': [
+ 'python',
+ '<(bindings_scripts_dir)/aggregate_generated_bindings.py',
+ '<(core_idl_files_list)',
+ '--',
+ '<@(bindings_core_generated_aggregate_files)',
+ ],
+ 'message': 'Generating aggregate generated core bindings files',
+ }],
+ },
+################################################################################
+ {
+ 'target_name': 'bindings_core_generated',
+ 'type': 'none',
+ 'dependencies': [
+ 'bindings_core_generated_aggregate',
+ # FIXME: move individual bindings here http://crbug.com/358074
+ # 'bindings_core_generated_individual',
+ ],
+ },
+################################################################################
+ ], # targets
+}
« no previous file with comments | « Source/bindings/core/core.gypi ('k') | Source/bindings/core/v8/generated.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698