github.com/pingcap/tidb/parser@v0.0.0-20231013125129-93a834a6bf8d/opcode/BUILD.bazel (about)

     1  load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2  
     3  go_library(
     4      name = "opcode",
     5      srcs = ["opcode.go"],
     6      importpath = "github.com/pingcap/tidb/parser/opcode",
     7      visibility = ["//visibility:public"],
     8      deps = ["//parser/format"],
     9  )
    10  
    11  go_test(
    12      name = "opcode_test",
    13      timeout = "short",
    14      srcs = ["opcode_test.go"],
    15      embed = [":opcode"],
    16      flaky = True,
    17  )