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

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

Issue 429853002: IDL: Add build target for IDL dictionary impl generation in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/bindings/core/idl.gni ('k') | Source/bindings/core/v8/BUILD.gn » ('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 'core_testing_definition_idl_files': [
15 '<@(core_testing_dictionary_idl_files)',
16 '<@(webcore_testing_idl_files)',
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)',
18 '<@(webcore_testing_idl_files)', 23 '<@(core_testing_definition_idl_files)',
19 '<@(generated_webcore_testing_idl_files)', 24 '<@(generated_webcore_testing_idl_files)',
20 ], 25 ],
21 26
22 # Write lists of main IDL files to a file, so that the command lines don't 27 # Write lists of main IDL files to a file, so that the command lines don't
23 # exceed OS length limits. 28 # exceed OS length limits.
24 'core_idl_files_list': '<|(core_idl_files_list.tmp <@(core_idl_files))', 29 'core_idl_files_list': '<|(core_idl_files_list.tmp <@(core_idl_files))',
30 'core_dictionary_idl_files_list': '<|(core_dictionary_idl_files_list.tmp <@( core_testing_dictionary_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)',
56 '<@(webcore_testing_idl_files)', 62 '<@(core_testing_definition_idl_files)',
57 ], 63 ],
58 'core_static_dependency_idl_files': [ 64 'core_static_dependency_idl_files': [
59 '<@(core_dependency_idl_files)', 65 '<@(core_dependency_idl_files)',
60 '<@(webcore_testing_dependency_idl_files)', 66 '<@(webcore_testing_dependency_idl_files)',
61 ], 67 ],
62 68
63 # Generated IDL files 69 # Generated IDL files
64 'core_generated_interface_idl_files': [ 70 'core_generated_interface_idl_files': [
65 '<@(generated_webcore_testing_idl_files)', # interfaces 71 '<@(generated_webcore_testing_idl_files)', # interfaces
66 ], 72 ],
67 73
68 'core_generated_dependency_idl_files': [ 74 'core_generated_dependency_idl_files': [
69 '<@(core_global_constructors_generated_idl_files)', # partial interfaces 75 '<@(core_global_constructors_generated_idl_files)', # partial interfaces
70 ], 76 ],
71 }, 77 },
72 } 78 }
OLDNEW
« no previous file with comments | « Source/bindings/core/idl.gni ('k') | Source/bindings/core/v8/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698