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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: Source/bindings/modules/idl.gni
diff --git a/Source/bindings/modules/idl.gni b/Source/bindings/modules/idl.gni
new file mode 100644
index 0000000000000000000000000000000000000000..5f4aa0376d9443c3eb67ed00e8994baa2737daa6
--- /dev/null
+++ b/Source/bindings/modules/idl.gni
@@ -0,0 +1,37 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//third_party/WebKit/Source/bindings/core/idl.gni")
+import("//third_party/WebKit/Source/modules/modules.gni")
+
+# IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces
+
+# Static IDL files
+modules_static_interface_idl_files =
+ modules_idl_files
+modules_static_dependency_idl_files =
+ modules_dependency_idl_files +
+ modules_testing_dependency_idl_files
+
+# Static IDL files / Generated IDL files
Nils Barth (inactive) 2014/06/10 08:44:17 Same comment about this distinction not being nece
+# Paths need to be passed separately for static and generated files, as
+# static files are listed in a temporary file (b/c too long for command
+# line), but generated files must be passed at the command line, as their
+# paths are not fixed at GYP time, when the temporary file is generated,
+# because their paths depend on the build directory, which varies.
+modules_static_idl_files =
+ modules_static_interface_idl_files +
+ modules_static_dependency_idl_files
+
+# 'modules_dependency_idl_files' is already used in Source/modules, so avoid
+# collision
+modules_all_dependency_idl_files =
+ modules_static_dependency_idl_files
+ #+ modules_generated_dependency_idl_files
+
+# Dependency IDL files: don't generate individual bindings, but do process
+# in IDL dependency computation, and count as build dependencies
+all_dependency_idl_files =
+ core_all_dependency_idl_files +
+ modules_all_dependency_idl_files

Powered by Google App Engine
This is Rietveld 408576698