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

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

Issue 315003004: IDL build: Split global object computation into core and modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Cleanup Created 6 years, 6 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
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698