fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

1load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test") 2 3go_library( 4 name = "zoekt-merge-index_lib", 5 srcs = ["main.go"], 6 importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-merge-index", 7 visibility = ["//visibility:private"], 8 deps = ["//:zoekt"], 9) 10 11go_binary( 12 name = "zoekt-merge-index", 13 embed = [":zoekt-merge-index_lib"], 14 visibility = ["//visibility:public"], 15) 16 17go_test( 18 name = "zoekt-merge-index_test", 19 srcs = ["main_test.go"], 20 data = ["//testdata"], 21 embed = [":zoekt-merge-index_lib"], 22 deps = [ 23 "//:zoekt", 24 "//query", 25 "//shards", 26 ], 27)