contrib/zstd/lib/BUCK in extzstd-0.3.2 vs contrib/zstd/lib/BUCK in extzstd-0.3.3

- old
+ new

@@ -63,13 +63,11 @@ cxx_library( name='zdict', header_namespace='', visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('dictBuilder', 'zdict.h'), - ]), + exported_headers=['zdict.h'], headers=subdir_glob([ ('dictBuilder', 'divsufsort.h'), ('dictBuilder', 'cover.h'), ]), srcs=glob(['dictBuilder/*.c']), @@ -129,13 +127,13 @@ cxx_library( name='errors', header_namespace='', visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'error_private.h'), - ('common', 'zstd_errors.h'), - ]), + exported_headers=[ + 'zstd_errors.h', + 'common/error_private.h', + ] srcs=['common/error_private.c'], ) cxx_library( name='mem',