summaryrefslogtreecommitdiff
path: root/BUILD.bazel
diff options
context:
space:
mode:
authorJiyong <jiyong.min@samsung.com>2023-12-26 10:55:00 +0900
committerJiyong <jiyong.min@samsung.com>2023-12-26 11:08:07 +0900
commit3b773d382e34fcfc7c8995d8bd681a6ef0529b02 (patch)
tree2dd316dd1fb388662a34065d3e15b2298384fbfe /BUILD.bazel
parent7fa2aaed0a5c855460b77fb1fedcc01591ff6470 (diff)
downloadlibjxl-3b773d382e34fcfc7c8995d8bd681a6ef0529b02.tar.gz
libjxl-3b773d382e34fcfc7c8995d8bd681a6ef0529b02.tar.bz2
libjxl-3b773d382e34fcfc7c8995d8bd681a6ef0529b02.zip
Imported Upstream version 0.9.0upstream/0.9.0upstream
Change-Id: I60862786d19d92bb65425923bfeaa8ec236d8722
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel22
1 files changed, 22 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
new file mode 100644
index 0000000..0b81fc7
--- /dev/null
+++ b/BUILD.bazel
@@ -0,0 +1,22 @@
+package(default_visibility = ["//:__subpackages__"])
+
+filegroup(
+ name = "testdata",
+ srcs = glob([
+ "testdata/**/*.icc",
+ "testdata/**/*.pam",
+ "testdata/**/*.pfm",
+ "testdata/**/*.pgm",
+ "testdata/**/*.pnm",
+ "testdata/**/*.ppm",
+ "testdata/**/*.png",
+ "testdata/**/*.jpg",
+ "testdata/**/*.jxl",
+ "testdata/**/*.gif",
+ "testdata/**/*.y4m",
+ "testdata/**/*.jxl",
+ "testdata/**/*.png",
+ "testdata/**/*.jpg",
+ "testdata/position_encoding/*.txt",
+ ]),
+)