forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
23 lines (22 loc) · 761 Bytes
/
BUILD.bazel
File metadata and controls
23 lines (22 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "codeintel",
srcs = ["services.go"],
importpath = "github.com/sourcegraph/sourcegraph/internal/codeintel",
tags = [TAG_PLATFORM_GRAPH],
visibility = ["//:__subpackages__"],
deps = [
"//internal/codeintel/autoindexing",
"//internal/codeintel/codenav",
"//internal/codeintel/context",
"//internal/codeintel/dependencies",
"//internal/codeintel/policies",
"//internal/codeintel/ranking",
"//internal/codeintel/reposcheduler",
"//internal/codeintel/shared",
"//internal/codeintel/uploads",
"//internal/database",
"//internal/gitserver",
"//internal/observation",
],
)