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

Side by Side 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: Cleaner 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2014 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 # Generate IDL bindings, together with auxiliary files
6 # (constructors on global objects, aggregate bindings files).
7 #
8 # Design doc: http://www.chromium.org/developers/design-documents/idl-build
9
10 {
11 'includes': [
12 '../../bindings.gypi',
13 '../../idl.gypi',
14 'generated.gypi',
15 ],
16 ################################################################################
17 'targets': [
18 ################################################################################
19 {
20 'target_name': 'bindings_core_generated_aggregate',
21 'type': 'none',
22 'actions': [{
23 'action_name': 'generate_aggregate_bindings_core',
24 'inputs': [
25 '<(bindings_scripts_dir)/aggregate_generated_bindings.py',
26 '<(core_idl_files_list)',
27 ],
28 'outputs': [
29 '<@(bindings_core_generated_aggregate_files)',
30 ],
31 'action': [
32 'python',
33 '<(bindings_scripts_dir)/aggregate_generated_bindings.py',
34 '<(core_idl_files_list)',
35 '--',
36 '<@(bindings_core_generated_aggregate_files)',
37 ],
38 'message': 'Generating aggregate generated core bindings files',
39 }],
40 },
41 ################################################################################
42 {
43 'target_name': 'bindings_core_generated',
44 'type': 'none',
45 'dependencies': [
46 'bindings_core_generated_aggregate',
47 # FIXME: move individual bindings here http://crbug.com/358074
48 # 'bindings_core_generated_individual',
49 ],
50 },
51 ################################################################################
52 ], # targets
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698