Index: mojo/public/c/system/BUILD.gn |
diff --git a/mojo/public/c/system/BUILD.gn b/mojo/public/c/system/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d10b346af2cd823198ef0bb649cc2e766cb3f708 |
--- /dev/null |
+++ b/mojo/public/c/system/BUILD.gn |
@@ -0,0 +1,25 @@ |
+# 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. |
+ |
+source_set("system") { |
+ sources = [ |
+ "buffer.h", |
+ "core.h", |
+ "data_pipe.h", |
+ "functions.h", |
+ "macros.h", |
+ "message_pipe.h", |
+ "system_export.h", |
+ "types.h", |
+ "../../platform/native/system_thunks.cc", |
+ "../../platform/native/system_thunks.h", |
+ ] |
+ defines = [ "MOJO_SYSTEM_IMPLEMENTATION" ] |
+ |
+ if (is_android) { |
+ all_dependent_configs -= [ |
Chris Masone
2014/07/14 21:38:37
Per the Dependent settings section of https://code
Chris Masone
2014/07/14 21:48:22
Hm. I think the problem is that, essentially, this
Chris Masone
2014/07/15 20:39:22
Discussed with Brett offline, and he points out th
|
+ "//build/config/android:no_export_static_lib_symbols" |
+ ] |
+ } |
+} |