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

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

Issue 618373003: [bindings] partial interfaces should not violate componentization (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed patch conflict Created 6 years, 2 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/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_definition_idl_files': [ 14 'core_definition_idl_files': [
15 '<@(core_dictionary_idl_files)', 15 '<@(core_dictionary_idl_files)',
16 '<@(core_idl_files)', 16 '<@(core_idl_files)',
17 '<@(core_idl_with_modules_dependency_files)',
17 ], 18 ],
18 'core_testing_definition_idl_files': [ 19 'core_testing_definition_idl_files': [
19 '<@(core_testing_dictionary_idl_files)', 20 '<@(core_testing_dictionary_idl_files)',
20 '<@(webcore_testing_idl_files)', 21 '<@(webcore_testing_idl_files)',
22 '<@(webcore_testing_idl_with_modules_dependency_files)',
21 ], 23 ],
22 24
23 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces 25 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces
24 # Interface IDL files: generate individual bindings (includes testing) 26 # Interface IDL files: generate individual bindings (includes testing)
25 'core_interface_idl_files': [ 27 'core_interface_idl_files': [
26 '<@(core_definition_idl_files)', 28 '<@(core_definition_idl_files)',
27 '<@(core_testing_definition_idl_files)', 29 '<@(core_testing_definition_idl_files)',
28 '<@(generated_webcore_testing_idl_files)', 30 '<@(generated_webcore_testing_idl_files)',
29 ], 31 ],
30 32
31 # Write lists of main IDL files to a file, so that the command lines don't 33 # Write lists of main IDL files to a file, so that the command lines don't
32 # exceed OS length limits. 34 # exceed OS length limits.
33 'core_idl_files_list': '<|(core_idl_files_list.tmp <@(core_definition_idl_fi les))', 35 'core_idl_files_list': '<|(core_idl_files_list.tmp <@(core_definition_idl_fi les))',
34 'core_dictionary_idl_files_list': '<|(core_dictionary_idl_files_list.tmp <@( core_dictionary_idl_files) <@(core_testing_dictionary_idl_files))', 36 'core_dictionary_idl_files_list': '<|(core_dictionary_idl_files_list.tmp <@( core_dictionary_idl_files) <@(core_testing_dictionary_idl_files))',
35 37
38 # Write a list of core IDL files which have dependency IDL files in
39 # modules.
40 'core_idl_with_modules_dependency_files_list': '<|(core_idl_with_modules_dep endency_files_list.tmp <@(core_idl_with_modules_dependency_files))',
41
36 # Dependency IDL files: don't generate individual bindings, but do process 42 # Dependency IDL files: don't generate individual bindings, but do process
37 # in IDL dependency computation, and count as build dependencies 43 # in IDL dependency computation, and count as build dependencies
38 # 'core_dependency_idl_files' is already used in Source/core, so avoid 44 # 'core_dependency_idl_files' is already used in Source/core, so avoid
39 # collision 45 # collision
40 'core_all_dependency_idl_files': [ 46 'core_all_dependency_idl_files': [
41 '<@(core_static_dependency_idl_files)', 47 '<@(core_static_dependency_idl_files)',
42 '<@(core_generated_dependency_idl_files)', 48 '<@(core_generated_dependency_idl_files)',
43 ], 49 ],
44 50
45 # Static IDL files / Generated IDL files 51 # Static IDL files / Generated IDL files
(...skipping 27 matching lines...) Expand all
73 # Generated IDL files 79 # Generated IDL files
74 'core_generated_interface_idl_files': [ 80 'core_generated_interface_idl_files': [
75 '<@(generated_webcore_testing_idl_files)', # interfaces 81 '<@(generated_webcore_testing_idl_files)', # interfaces
76 ], 82 ],
77 83
78 'core_generated_dependency_idl_files': [ 84 'core_generated_dependency_idl_files': [
79 '<@(core_global_constructors_generated_idl_files)', # partial interfaces 85 '<@(core_global_constructors_generated_idl_files)', # partial interfaces
80 ], 86 ],
81 }, 87 },
82 } 88 }
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