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 |
index c36245c924f90a09b9e2de7f8a7e227b32b2f817..b820d96a702fc436c57832871b93d3abf25cebe3 100644 |
--- a/third_party/mojo/src/mojo/public/dart/BUILD.gn |
+++ b/third_party/mojo/src/mojo/public/dart/BUILD.gn |
@@ -19,6 +19,7 @@ dart_mojo_sdk_sources = [ |
"lib/src/proxy.dart", |
"lib/src/struct.dart", |
"lib/src/stub.dart", |
+ "lib/src/union.dart", |
"lib/src/types.dart", |
"sdk_ext/internal.dart", |
"sdk_ext/src/handle_watcher.dart", |
@@ -29,6 +30,7 @@ dart_mojo_sdk_sources = [ |
dartzip_package("dart") { |
sources = dart_mojo_sdk_sources + [ |
"pubspec.yaml", |
+ "CHANGELOG.md", |
"README.md", |
] |
uses_pub = true |
@@ -36,16 +38,19 @@ dartzip_package("dart") { |
deps = [ |
"../interfaces/application", |
"../interfaces/bindings", |
+ "../interfaces/network", |
] |
} |
dart_pkg("mojo") { |
sources = dart_mojo_sdk_sources + [ |
"pubspec.yaml", |
+ "CHANGELOG.md", |
"README.md", |
] |
+ |
+ # List of mojom targets that the mojo pkg exports |
deps = [ |
- "../interfaces/application", |
- "../interfaces/bindings", |
+ "../interfaces", |
] |
} |