1package(default_visibility = ["//visibility:private"])
2
3# Create the LICENSE file for libraries that are used by TensorFlow Lite
4# C library.
5genrule(
6    name = "clicenses_generate",
7    srcs = [
8        "//third_party/eigen3:LICENSE",
9        "@arm_neon_2_x86_sse//:LICENSE",
10        "@farmhash_archive//:COPYING",
11        "@gemmlowp//:LICENSE",
12    ],
13    outs = ["LICENSE"],
14    cmd = "$(location :concat_licenses.sh) $(SRCS) >$@",
15    tools = [":concat_licenses.sh"],
16)
17