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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/bindings/IDLExtendedAttributes.txt ('k') | Source/bindings/scripts/code_generator_v8.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'generated.gypi', 10 'generated.gypi',
11 ], 11 ],
12 12
13 'variables': { 13 'variables': {
14 'binding_idl_files': [
15 # FIXME: Move this to Source/bindings/core/v8/PrivateScriptTest.idl
16 '../v8/PrivateScriptTest.idl',
17 ],
18
14 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces 19 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces
15 # Interface IDL files: generate individual bindings (includes testing) 20 # Interface IDL files: generate individual bindings (includes testing)
16 'core_interface_idl_files': [ 21 'core_interface_idl_files': [
17 '<@(core_idl_files)', 22 '<@(core_idl_files)',
23 '<@(binding_idl_files)',
18 '<@(webcore_testing_idl_files)', 24 '<@(webcore_testing_idl_files)',
19 '<@(generated_webcore_testing_idl_files)', 25 '<@(generated_webcore_testing_idl_files)',
20 ], 26 ],
21 27
22 # Write lists of main IDL files to a file, so that the command lines don't 28 # Write lists of main IDL files to a file, so that the command lines don't
23 # exceed OS length limits. 29 # exceed OS length limits.
24 'core_idl_files_list': '<|(core_idl_files_list.tmp <@(core_idl_files))', 30 'core_idl_files_list': '<|(core_idl_files_list.tmp <@(core_idl_files) <@(bin ding_idl_files))',
25 31
26 # Dependency IDL files: don't generate individual bindings, but do process 32 # Dependency IDL files: don't generate individual bindings, but do process
27 # in IDL dependency computation, and count as build dependencies 33 # in IDL dependency computation, and count as build dependencies
28 # 'core_dependency_idl_files' is already used in Source/core, so avoid 34 # 'core_dependency_idl_files' is already used in Source/core, so avoid
29 # collision 35 # collision
30 'core_all_dependency_idl_files': [ 36 'core_all_dependency_idl_files': [
31 '<@(core_static_dependency_idl_files)', 37 '<@(core_static_dependency_idl_files)',
32 '<@(core_generated_dependency_idl_files)', 38 '<@(core_generated_dependency_idl_files)',
33 ], 39 ],
34 40
(...skipping 11 matching lines...) Expand all
46 '<|(core_static_idl_files_list.tmp <@(core_static_idl_files))', 52 '<|(core_static_idl_files_list.tmp <@(core_static_idl_files))',
47 53
48 'core_generated_idl_files': [ 54 'core_generated_idl_files': [
49 '<@(core_generated_interface_idl_files)', 55 '<@(core_generated_interface_idl_files)',
50 '<@(core_generated_dependency_idl_files)', 56 '<@(core_generated_dependency_idl_files)',
51 ], 57 ],
52 58
53 # Static IDL files 59 # Static IDL files
54 'core_static_interface_idl_files': [ 60 'core_static_interface_idl_files': [
55 '<@(core_idl_files)', 61 '<@(core_idl_files)',
62 '<@(binding_idl_files)',
56 '<@(webcore_testing_idl_files)', 63 '<@(webcore_testing_idl_files)',
57 ], 64 ],
58 'core_static_dependency_idl_files': [ 65 'core_static_dependency_idl_files': [
59 '<@(core_dependency_idl_files)', 66 '<@(core_dependency_idl_files)',
60 ], 67 ],
61 68
62 # Generated IDL files 69 # Generated IDL files
63 'core_generated_interface_idl_files': [ 70 'core_generated_interface_idl_files': [
64 '<@(generated_webcore_testing_idl_files)', # interfaces 71 '<@(generated_webcore_testing_idl_files)', # interfaces
65 ], 72 ],
66 73
67 'core_generated_dependency_idl_files': [ 74 'core_generated_dependency_idl_files': [
68 '<@(core_global_constructors_generated_idl_files)', # partial interfaces 75 '<@(core_global_constructors_generated_idl_files)', # partial interfaces
69 ], 76 ],
70 }, 77 },
71 } 78 }
OLDNEW
« 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