aboutsummaryrefslogtreecommitdiff
path: root/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel13
1 files changed, 13 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index c947e83..8fc9eca 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -13,3 +13,16 @@
# limitations under the License.
licenses(["notice"])
+
+cc_library(
+ name = "api",
+ hdrs = ["include/astc-codec/astc-codec.h"],
+ visibility = ["//src/decoder:__pkg__"],
+)
+
+cc_library(
+ name = "astc_codec",
+ deps = ["//src/decoder:codec"],
+ includes = ["include"],
+ visibility = ["//visibility:public"],
+)