From a488974b892c5147fb4943aaa18c2e0fd5358742 Mon Sep 17 00:00:00 2001 From: Andrew Slabko Date: Thu, 2 Jul 2026 18:35:55 +0200 Subject: [PATCH] Remove leftover Buck build files --- .gitignore | 7 ------- clickhouse/cityhash/BUCK | 13 ------------- contrib/gtest/BUCK | 14 -------------- contrib/lz4/lz4/BUCK | 13 ------------- tests/simple/BUCK | 12 ------------ ut/BUCK | 12 ------------ 6 files changed, 71 deletions(-) delete mode 100644 clickhouse/cityhash/BUCK delete mode 100644 contrib/gtest/BUCK delete mode 100644 contrib/lz4/lz4/BUCK delete mode 100644 tests/simple/BUCK delete mode 100644 ut/BUCK diff --git a/.gitignore b/.gitignore index 8c10e85a..65d0a7c7 100644 --- a/.gitignore +++ b/.gitignore @@ -265,13 +265,6 @@ paket-files/ __pycache__/ *.pyc -# Buck -/buck-out/ -/.buckd/ -/buckaroo/ -.buckconfig.local -BUCKAROO_DEPS - # Visual Studio Code /.vscode/ diff --git a/clickhouse/cityhash/BUCK b/clickhouse/cityhash/BUCK deleted file mode 100644 index 2d14bbb9..00000000 --- a/clickhouse/cityhash/BUCK +++ /dev/null @@ -1,13 +0,0 @@ -cxx_library( - name = 'cityhash', - header_namespace = 'cityhash', - exported_headers = subdir_glob([ - ('', '*.h'), - ]), - srcs = glob([ - '*.cc', - ]), - visibility = [ - '//...', - ], -) diff --git a/contrib/gtest/BUCK b/contrib/gtest/BUCK deleted file mode 100644 index d888dbe2..00000000 --- a/contrib/gtest/BUCK +++ /dev/null @@ -1,14 +0,0 @@ -cxx_library( - name = 'gtest', - # This is a bit weird, but this is how the tests use the headers... - header_namespace = 'contrib/gtest', - exported_headers = subdir_glob([ - ('', '*.h'), - ]), - srcs = glob([ - '*.cc', - ]), - visibility = [ - '//...', - ], -) diff --git a/contrib/lz4/lz4/BUCK b/contrib/lz4/lz4/BUCK deleted file mode 100644 index 0802605b..00000000 --- a/contrib/lz4/lz4/BUCK +++ /dev/null @@ -1,13 +0,0 @@ -cxx_library( - name = 'lz4', - header_namespace = 'lz4', - exported_headers = subdir_glob([ - ('', '*.h'), - ]), - srcs = glob([ - '*.c', - ]), - visibility = [ - '//...', - ], -) diff --git a/tests/simple/BUCK b/tests/simple/BUCK deleted file mode 100644 index 37bf2ce0..00000000 --- a/tests/simple/BUCK +++ /dev/null @@ -1,12 +0,0 @@ -cxx_binary( - name = 'simple', - srcs = [ - 'main.cpp', - ], - compiler_flags = [ - '-std=c++11', - ], - deps = [ - '//:clickhouse-cpp', - ], -) diff --git a/ut/BUCK b/ut/BUCK deleted file mode 100644 index 136716cb..00000000 --- a/ut/BUCK +++ /dev/null @@ -1,12 +0,0 @@ -cxx_test( - name = 'ut', - srcs = glob([ - '*.cpp', - ]), - compiler_flags = [ - '-std=c++11', - ], - deps = [ - '//:clickhouse-cpp', - ], -)