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

Side by Side Diff: Source/bindings/core/idl.gypi

Issue 310563004: IDL build: Split global constructors into core and modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Tweak (reupload) 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces 5 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces
6 6
7 { 7 {
8 'includes': [ 8 'includes': [
9 '../../core/core.gypi', 9 '../../core/core.gypi',
10 '../idl.gypi', 10 'core.gypi',
11 ], 11 ],
12 12
13 'variables': { 13 'variables': {
14 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces 14 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces
15 # Interface IDL files: generate individual bindings (includes testing) 15 # Interface IDL files: generate individual bindings (includes testing)
16 'core_interface_idl_files': [ 16 'core_interface_idl_files': [
17 '<@(core_idl_files)', 17 '<@(core_idl_files)',
18 '<@(webcore_testing_idl_files)', 18 '<@(webcore_testing_idl_files)',
19 '<@(generated_webcore_testing_idl_files)', 19 '<@(generated_webcore_testing_idl_files)',
20 ], 20 ],
21 21
22 # Write lists of main IDL files to a file, so that the command lines don't
23 # exceed OS length limits.
24 'core_idl_files_list': '<|(core_idl_files_list.tmp <@(core_idl_files))',
25
22 # Dependency IDL files: don't generate individual bindings, but do process 26 # Dependency IDL files: don't generate individual bindings, but do process
23 # in IDL dependency computation, and count as build dependencies 27 # in IDL dependency computation, and count as build dependencies
24 # 'core_dependency_idl_files' is already used in Source/core, so avoid 28 # 'core_dependency_idl_files' is already used in Source/core, so avoid
25 # collision 29 # collision
26 'core_all_dependency_idl_files': [ 30 'core_all_dependency_idl_files': [
27 '<@(core_static_dependency_idl_files)', 31 '<@(core_static_dependency_idl_files)',
28 '<@(core_generated_dependency_idl_files)', 32 '<@(core_generated_dependency_idl_files)',
29 ], 33 ],
30 34
31 # Static IDL files / Generated IDL files 35 # Static IDL files / Generated IDL files
(...skipping 22 matching lines...) Expand all
54 'core_static_dependency_idl_files': [ 58 'core_static_dependency_idl_files': [
55 '<@(core_dependency_idl_files)', 59 '<@(core_dependency_idl_files)',
56 ], 60 ],
57 61
58 # Generated IDL files 62 # Generated IDL files
59 'core_generated_interface_idl_files': [ 63 'core_generated_interface_idl_files': [
60 '<@(generated_webcore_testing_idl_files)', # interfaces 64 '<@(generated_webcore_testing_idl_files)', # interfaces
61 ], 65 ],
62 66
63 'core_generated_dependency_idl_files': [ 67 'core_generated_dependency_idl_files': [
64 # FIXME: Generate separate core_global_constructors_idls 68 '<@(core_global_constructors_generated_idl_files)', # partial interfaces
65 # http://crbug.com/358074
66 '<@(generated_global_constructors_idl_files)', # partial interfaces
67 ], 69 ],
68 }, 70 },
69 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698