1package {
2    // http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // the below license kinds from "system_timezone_license":
5    //   SPDX-license-identifier-Apache-2.0
6    default_applicable_licenses: ["system_timezone_license"],
7}
8
9// ========================================================
10// Executable
11// ========================================================
12cc_binary {
13    name: "tzdatacheck",
14    host_supported: true,
15    srcs: ["tzdatacheck.cpp"],
16    shared_libs: [
17        "libbase",
18        "libcutils",
19        "liblog",
20    ],
21    cflags: ["-Werror"],
22}
23