Index: mojo/public/c/bindings/BUILD.gn |
diff --git a/mojo/public/c/bindings/BUILD.gn b/mojo/public/c/bindings/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3539879957c31ed96bb7df4c7e706a01a762428b |
--- /dev/null |
+++ b/mojo/public/c/bindings/BUILD.gn |
@@ -0,0 +1,16 @@ |
+# Copyright 2016 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("../../mojo_sdk.gni") |
+ |
+mojo_sdk_source_set("bindings") { |
+ sources = [ |
+ "message.h", |
+ "struct.h", |
+ |
+ # Implementation details. |
+ "lib/message.c", |
+ "lib/struct.c", |
+ ] |
+} |