Index: mojo/platform_handle/BUILD.gn |
diff --git a/mojo/platform_handle/BUILD.gn b/mojo/platform_handle/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a9d98a06680b1f93783b2a2b7ef44c7ff8ce9db2 |
--- /dev/null |
+++ b/mojo/platform_handle/BUILD.gn |
@@ -0,0 +1,29 @@ |
+# Copyright 2015 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. |
+ |
+source_set("platform_handle") { |
+ sources = [ |
+ "platform_handle_private_thunks.cc", |
+ "platform_handle_private_thunks.h", |
+ ] |
+ |
+ deps = [ |
+ ":defs", |
+ "//third_party/mojo/src/mojo/public/c/system", |
+ ] |
+ |
+ defines = [ "PLATFORM_HANDLE_IMPLEMENTATION" ] |
+} |
+ |
+# Only targets that are registering the thunks should depend upon this. |
+source_set("defs") { |
+ visibility = [ |
+ ":platform_handle", |
+ "//mojo/runner:native_application_support", |
+ ] |
+ sources = [ |
+ "native_exports.h", |
+ "platform_handle_functions.h", |
+ ] |
+} |