blob: 5cc8619d4876d2f0eaddf31789387e96382d39d1 [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("//topaz/runtime/dart_runner/dart_app.gni")
dart_app("timestamp-server-dart") {
main_dart = "lib/main.dart"
meta = [
{
path = rebase_path("meta/timestamp-server-dart.cmx")
dest = "timestamp-server-dart.cmx"
},
]
sources = [ "main.dart" ]
deps = [
"//garnet/examples/fidl/services:echo",
"//third_party/dart-pkg/pub/intl",
"//topaz/public/dart/fidl",
"//topaz/public/dart/fuchsia_logger",
"//topaz/public/dart/fuchsia_services",
"//topaz/public/dart/zircon",
]
resources = [
{
path = rebase_path("//third_party/icu/common/icudtl.dat")
dest = "icudtl.dat"
},
]
}