blob: 753a9e115abd48454dbddd1ede824edf235ae052 [file] [log] [blame] [edit]
# 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",
"//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" ]
}