aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/android/assets/BUILD
blob: c827de7be1807679c423ff5e9251ed1f9b9cce9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package(default_visibility = ["//visibility:public"])

licenses(["notice"])  # Apache 2.0

# It is necessary to use this filegroup rather than globbing the files in this
# folder directly the examples/android:tensorflow_demo target due to the fact
# that assets_dir is necessarily set to "" there (to allow using other
# arbitrary targets as assets).
filegroup(
    name = "asset_files",
    srcs = glob(
        ["**/*"],
        exclude = ["BUILD"],
    ),
)