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

Side by Side Diff: Source/bindings/modules/idl.gni

Issue 319983003: Work on blink GN bindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 import("//third_party/WebKit/Source/bindings/core/idl.gni")
6 import("//third_party/WebKit/Source/modules/modules.gni")
7
8 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces
9
10 # Static IDL files
11 modules_static_interface_idl_files =
12 modules_idl_files
13 modules_static_dependency_idl_files =
14 modules_dependency_idl_files +
15 modules_testing_dependency_idl_files
16
17 # Static IDL files / Generated IDL files
Nils Barth (inactive) 2014/06/10 08:44:17 Same comment about this distinction not being nece
18 # Paths need to be passed separately for static and generated files, as
19 # static files are listed in a temporary file (b/c too long for command
20 # line), but generated files must be passed at the command line, as their
21 # paths are not fixed at GYP time, when the temporary file is generated,
22 # because their paths depend on the build directory, which varies.
23 modules_static_idl_files =
24 modules_static_interface_idl_files +
25 modules_static_dependency_idl_files
26
27 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid
28 # collision
29 modules_all_dependency_idl_files =
30 modules_static_dependency_idl_files
31 #+ modules_generated_dependency_idl_files
32
33 # Dependency IDL files: don't generate individual bindings, but do process
34 # in IDL dependency computation, and count as build dependencies
35 all_dependency_idl_files =
36 core_all_dependency_idl_files +
37 modules_all_dependency_idl_files
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698