OLD | NEW |
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 '../../modules/modules.gypi', | 9 '../../modules/modules.gypi', |
10 '../core/idl.gypi', | 10 '../core/idl.gypi', |
(...skipping 10 matching lines...) Expand all Loading... |
21 | 21 |
22 # Interface IDL files: generate individual bindings (includes testing) | 22 # Interface IDL files: generate individual bindings (includes testing) |
23 'modules_interface_idl_files': [ | 23 'modules_interface_idl_files': [ |
24 # No testing or generated interface IDL files in modules currently | 24 # No testing or generated interface IDL files in modules currently |
25 '<@(modules_definition_idl_files)', | 25 '<@(modules_definition_idl_files)', |
26 ], | 26 ], |
27 | 27 |
28 # 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 |
29 # exceed OS length limits. | 29 # exceed OS length limits. |
30 # DartFix: Don't include dictionary files in modules_idl_files_list. | 30 # DartFix: Don't include dictionary files in modules_idl_files_list. |
31 'modules_idl_files_list': '<|(modules_idl_files_list.tmp <@(modules_idl_file
s))', | 31 'modules_idl_files_list': '<|(modules_idl_files_list.tmp <@(modules_definiti
on_idl_files))', |
32 'modules_dictionary_idl_files_list': '<|(modules_dictionary_idl_files_list.t
mp <@(modules_dictionary_idl_files))', | 32 'modules_dictionary_idl_files_list': '<|(modules_dictionary_idl_files_list.t
mp <@(modules_dictionary_idl_files))', |
33 | 33 |
34 # Dependency IDL files: don't generate individual bindings, but do process | 34 # Dependency IDL files: don't generate individual bindings, but do process |
35 # in IDL dependency computation, and count as build dependencies | 35 # in IDL dependency computation, and count as build dependencies |
36 'all_dependency_idl_files': [ | 36 'all_dependency_idl_files': [ |
37 '<@(core_all_dependency_idl_files)', | 37 '<@(core_all_dependency_idl_files)', |
38 '<@(modules_all_dependency_idl_files)', | 38 '<@(modules_all_dependency_idl_files)', |
39 ], | 39 ], |
40 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid | 40 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid |
41 # collision | 41 # collision |
(...skipping 28 matching lines...) Expand all Loading... |
70 '<@(modules_testing_dependency_idl_files)', | 70 '<@(modules_testing_dependency_idl_files)', |
71 ], | 71 ], |
72 | 72 |
73 # Generated IDL files | 73 # Generated IDL files |
74 'modules_generated_dependency_idl_files': [ | 74 'modules_generated_dependency_idl_files': [ |
75 '<@(modules_core_global_constructors_generated_idl_files)', # partial int
erfaces | 75 '<@(modules_core_global_constructors_generated_idl_files)', # partial int
erfaces |
76 '<@(modules_global_constructors_generated_idl_files)', # partial interfac
es | 76 '<@(modules_global_constructors_generated_idl_files)', # partial interfac
es |
77 ], | 77 ], |
78 }, | 78 }, |
79 } | 79 } |
OLD | NEW |