blob: ac70a4cccb60e9c9eb8078858307173c8e08611d [file] [log] [blame]
# Copyright 2017 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/package.gni")
executable("timezone_bin") {
output_name = "timezone"
sources = [
"main.cc",
"timezone.cc",
"timezone.h",
]
deps = [
"//garnet/public/lib/app/cpp",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
"//garnet/public/lib/time_zone/fidl",
"//third_party/icu",
]
}
package("timezone") {
deps = [
":timezone_bin",
]
binary = "timezone"
meta = [
{
path = rebase_path("meta/timezone.cmx")
dest = "timezone.cmx"
},
]
resources = [
{
path = rebase_path("//third_party/icu/common/icudtl.dat")
dest = "icudtl.dat"
},
]
}