Index: third_party/mojo/src/mojo/public/dart/BUILD.gn |
diff --git a/third_party/mojo/src/mojo/public/dart/BUILD.gn b/third_party/mojo/src/mojo/public/dart/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..711eee392465d54e3b4f26995d4ec63d37e0e709 |
--- /dev/null |
+++ b/third_party/mojo/src/mojo/public/dart/BUILD.gn |
@@ -0,0 +1,33 @@ |
+import("../mojo_sdk.gni") |
+import("rules.gni") |
+ |
+dart_mojo_sdk_sources = [ |
+ "application.dart", |
+ "bindings.dart", |
+ "core.dart", |
+ "src/application_connection.dart", |
+ "src/application.dart", |
+ "src/buffer.dart", |
+ "src/codec.dart", |
+ "src/data_pipe.dart", |
+ "src/drain_data.dart", |
+ "src/event_stream.dart", |
+ "src/handle.dart", |
+ "src/message.dart", |
+ "src/message_pipe.dart", |
+ "src/proxy.dart", |
+ "src/struct.dart", |
+ "src/stub.dart", |
+ "src/types.dart", |
+] |
+ |
+dart_package("dart") { |
+ # This base dir ensures that Dart's Mojo SDK can be imported with, e.g., |
+ # import 'package:mojo/public/dart/core.dart' even when the Mojo SDK lives |
+ # somewhere else in the source tree. |
+ base_dir = rebase_path("../../$mojo_root", ".", ".") |
+ sources = dart_mojo_sdk_sources |
+ deps = [ |
+ "../interfaces/application", |
+ ] |
+} |