|  | # 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" ] | 
|  | } |