blob: 6a3c35d670e12568853be0457c75f6899d6784d5 [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-client") {
main_dart = "lib/main.dart"
meta = [
{
path = rebase_path("meta/client.cmx")
dest = "echo-dart-client.cmx"
},
]
sources = [ "main.dart" ]
# [START deps]
deps = [
"//examples/fidl/fuchsia.examples",
dart_package_label.fidl,
dart_package_label.fuchsia,
dart_package_label.fuchsia_logger,
dart_package_label.fuchsia_services,
]
# [END deps]
}
group("client") {
testonly = true
deps = [ ":echo-dart-client" ]
}