summaryrefslogtreecommitdiff
path: root/lib/BUCK
diff options
context:
space:
mode:
Diffstat (limited to 'lib/BUCK')
-rw-r--r--lib/BUCK13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/BUCK b/lib/BUCK
index 9e01468f4dde..dbe8885fc4cf 100644
--- a/lib/BUCK
+++ b/lib/BUCK
@@ -25,6 +25,9 @@ cxx_library(
name='decompress',
header_namespace='',
visibility=['PUBLIC'],
+ headers=subdir_glob([
+ ('decompress', '*_impl.h'),
+ ]),
srcs=glob(['decompress/zstd*.c']),
deps=[
':common',
@@ -81,6 +84,15 @@ cxx_library(
)
cxx_library(
+ name='cpu',
+ header_namespace='',
+ visibility=['PUBLIC'],
+ exported_headers=subdir_glob([
+ ('common', 'cpu.h'),
+ ]),
+)
+
+cxx_library(
name='bitstream',
header_namespace='',
visibility=['PUBLIC'],
@@ -196,6 +208,7 @@ cxx_library(
deps=[
':bitstream',
':compiler',
+ ':cpu',
':entropy',
':errors',
':mem',