blob: 722f75be80a4cf24ad271172ee67152120ab3c01 [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_test_component.gni")
dart_library("lib") {
package_name = "echo_server"
null_safe = true
sources = [ "main.dart" ]
deps = [
"//examples/fidl/fuchsia.examples:fuchsia.examples_dart",
"//sdk/dart/fidl",
"//sdk/dart/fuchsia_logger",
"//sdk/dart/fuchsia_services",
"//third_party/dart-pkg/pub/meta",
]
}
dart_component("echo-server") {
component_name = "echo_server"
manifest = "meta/server.cml"
null_safe = true
deps = [ ":lib" ]
}