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

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, 4 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
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_idl_definition_files': [
15 '<@(core_idl_files)',
16 '<@(core_idl_dictionary_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_definition_files)',
18 '<@(webcore_testing_idl_files)', 23 '<@(webcore_testing_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_definition_fi les))',
25 30
26 # Dependency IDL files: don't generate individual bindings, but do process 31 # Dependency IDL files: don't generate individual bindings, but do process
27 # in IDL dependency computation, and count as build dependencies 32 # in IDL dependency computation, and count as build dependencies
28 # 'core_dependency_idl_files' is already used in Source/core, so avoid 33 # 'core_dependency_idl_files' is already used in Source/core, so avoid
29 # collision 34 # collision
30 'core_all_dependency_idl_files': [ 35 'core_all_dependency_idl_files': [
31 '<@(core_static_dependency_idl_files)', 36 '<@(core_static_dependency_idl_files)',
32 '<@(core_generated_dependency_idl_files)', 37 '<@(core_generated_dependency_idl_files)',
33 ], 38 ],
34 39
(...skipping 10 matching lines...) Expand all
45 'core_static_idl_files_list': 50 'core_static_idl_files_list':
46 '<|(core_static_idl_files_list.tmp <@(core_static_idl_files))', 51 '<|(core_static_idl_files_list.tmp <@(core_static_idl_files))',
47 52
48 'core_generated_idl_files': [ 53 'core_generated_idl_files': [
49 '<@(core_generated_interface_idl_files)', 54 '<@(core_generated_interface_idl_files)',
50 '<@(core_generated_dependency_idl_files)', 55 '<@(core_generated_dependency_idl_files)',
51 ], 56 ],
52 57
53 # Static IDL files 58 # Static IDL files
54 'core_static_interface_idl_files': [ 59 'core_static_interface_idl_files': [
55 '<@(core_idl_files)', 60 '<@(core_idl_definition_files)',
56 '<@(webcore_testing_idl_files)', 61 '<@(webcore_testing_idl_files)',
57 ], 62 ],
58 'core_static_dependency_idl_files': [ 63 'core_static_dependency_idl_files': [
59 '<@(core_dependency_idl_files)', 64 '<@(core_dependency_idl_files)',
60 ], 65 ],
61 66
62 # Generated IDL files 67 # Generated IDL files
63 'core_generated_interface_idl_files': [ 68 'core_generated_interface_idl_files': [
64 '<@(generated_webcore_testing_idl_files)', # interfaces 69 '<@(generated_webcore_testing_idl_files)', # interfaces
65 ], 70 ],
66 71
67 'core_generated_dependency_idl_files': [ 72 'core_generated_dependency_idl_files': [
68 '<@(core_global_constructors_generated_idl_files)', # partial interfaces 73 '<@(core_global_constructors_generated_idl_files)', # partial interfaces
69 ], 74 ],
70 }, 75 },
71 } 76 }
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/dictionaries.gypi » ('j') | Source/bindings/scripts/code_generator_v8.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698