blob: 1a798bcf3e5aceab540a7153aa8ba0a0e056a00c [file] [log] [blame]
# Copyright 2019 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/host.gni")
if (is_host) {
executable("icu_data_extractor") {
output_name = "icu_data_extractor"
sources = [
"command.h",
"common.cc",
"common.h",
"main.cc",
"tz_ids.cc",
"tz_ids.h",
"tz_version.cc",
"tz_version.h",
]
deps = [
"//src/lib/files",
"//src/lib/fxl",
"//third_party/icu",
]
}
}
install_host_tools("host") {
testonly = true
deps = [ ":icu_data_extractor" ]
outputs = [ "icu_data_extractor" ]
}