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
30 lines (28 loc) · 749 Bytes
/
BUILD.bazel
File metadata and controls
30 lines (28 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_cross_binary", "go_library")
go_library(
name = "query_lib",
srcs = [
"graphql.go",
"main.go",
"queries.go",
"query.go",
"query_types.go",
"state.go",
"test_cases.go",
"test_cases_utils.go",
],
importpath = "github.com/sourcegraph/sourcegraph/dev/codeintel-qa/cmd/query",
tags = [TAG_PLATFORM_GRAPH],
visibility = ["//visibility:private"],
deps = [
"//dev/codeintel-qa/internal",
"//lib/errors",
"@com_github_google_go_cmp//cmp",
],
)
go_binary(
name = "query",
embed = [":query_lib"],
tags = [TAG_PLATFORM_GRAPH],
visibility = ["//visibility:public"],
)