blob: b27d5f813c936afdffbb2301c219c17e4e6b4237 [file] [log] [blame]
# Copyright 2018 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-dart-server") {
main_dart = "lib/main.dart"
meta = [
{
path = rebase_path("meta/server.cmx")
dest = "echo-dart-server.cmx"
},
]
sources = [ "main.dart" ]
deps = [
"//examples/fidl/fuchsia.examples",
dart_package_label.fidl,
dart_package_label.fuchsia_logger,
dart_package_label.fuchsia_services,
]
}
group("server") {
testonly = true
deps = [ ":echo-dart-server" ]
}