blob: 711eee392465d54e3b4f26995d4ec63d37e0e709 [file] [log] [blame]
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",
]
}