mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 15:51:43 +00:00
Also renames a bunch of related types such as - config.IndexJob -> config.AutoIndexJobSpec - IndexLoader -> AutoIndexJobLoader and so on.
27 lines
761 B
Python
27 lines
761 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "shared",
|
|
srcs = [
|
|
"indexers.go",
|
|
"indexers2.go",
|
|
"scip_compressor.go",
|
|
"scip_decompressor.go",
|
|
"scip_symbols.go",
|
|
"types.go",
|
|
],
|
|
importpath = "github.com/sourcegraph/sourcegraph/internal/codeintel/uploads/shared",
|
|
tags = [TAG_PLATFORM_GRAPH],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/api",
|
|
"//internal/codeintel/core",
|
|
"//internal/executor",
|
|
"//lib/codeintel/autoindex/config",
|
|
"//lib/errors",
|
|
"@com_github_life4_genesis//slices",
|
|
"@com_github_sourcegraph_scip//bindings/go/scip",
|
|
"@io_opentelemetry_go_otel//attribute",
|
|
],
|
|
)
|