OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces | |
6 | |
7 { | |
8 'includes': [ | |
9 '../core/core.gypi', | |
10 '../modules/modules.gypi', | |
11 ], | |
12 | |
13 'variables': { | |
14 # Main interface IDL files (excluding dependencies and testing) | |
15 # are included as properties on global objects, and in aggregate bindings | |
16 # FIXME: split into core vs. modules http://crbug.com/358074 | |
17 'main_interface_idl_files': [ | |
18 '<@(core_idl_files)', | |
19 '<@(modules_idl_files)', | |
20 ], | |
21 # Write lists of main IDL files to a file, so that the command lines don't | |
22 # exceed OS length limits. | |
23 'main_interface_idl_files_list': '<|(main_interface_idl_files_list.tmp <@(ma
in_interface_idl_files))', | |
24 }, | |
25 } | |
OLD | NEW |