blob: 94d50b170b2f43784371a75b299a78357b15a896 [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/dart/dart_app.gni")
import("//build/dart/fidl_move.gni")
dart_app("echo-launcher-dart-server") {
main_dart = "lib/main.dart"
meta = [
{
path = rebase_path("meta/server.cmx")
dest = "echo-launcher-dart-server.cmx"
},
]
sources = [ "main.dart" ]
deps = [
"//examples/fidl/fuchsia.examples",
"//sdk/dart/fidl",
"//sdk/dart/fuchsia_logger",
"//sdk/dart/fuchsia_services",
"//third_party/dart-pkg/pub/meta",
]
}
group("server") {
testonly = true
deps = [ ":echo-launcher-dart-server" ]
}