From c6f35ad9263456c7727cc30669b597894d85773e Mon Sep 17 00:00:00 2001 From: xhe Date: Tue, 7 May 2024 14:47:07 +0800 Subject: [PATCH] fix bazel Signed-off-by: xhe --- BUILD.bazel | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/BUILD.bazel b/BUILD.bazel index 4106c3f2734bd..f80d4432ef040 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,4 +1,3 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") load("@bazel_gazelle//:def.bzl", "gazelle") # gazelle:proto disable_global @@ -14,14 +13,3 @@ xcode_version( name = "xcode_version", version = "10.0", ) - -go_library( - name = "tidb_lib", - srcs = ["a.go"], - importpath = "github.com/pingcap/tidb", -) - -go_binary( - name = "tidb", - embed = [":tidb_lib"], -)