2021-09-03 14:46:55 +00:00
|
|
|
//go:build tools
|
2018-10-01 06:08:12 +00:00
|
|
|
// +build tools
|
|
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
2019-10-01 21:32:40 +00:00
|
|
|
// zoekt-* used in sourcegraph/server docker image build
|
2022-08-17 22:30:49 +00:00
|
|
|
_ "github.com/sourcegraph/zoekt/cmd/zoekt-archive-index"
|
|
|
|
|
_ "github.com/sourcegraph/zoekt/cmd/zoekt-git-index"
|
|
|
|
|
_ "github.com/sourcegraph/zoekt/cmd/zoekt-sourcegraph-indexserver"
|
|
|
|
|
_ "github.com/sourcegraph/zoekt/cmd/zoekt-webserver"
|
2019-10-01 21:32:40 +00:00
|
|
|
|
2020-04-24 13:22:14 +00:00
|
|
|
// go-mockgen is used to codegen mockable interfaces, used in precise code intel tests
|
2024-03-07 00:38:43 +00:00
|
|
|
_ "github.com/derision-test/go-mockgen/v2/cmd/go-mockgen"
|
2020-04-24 13:22:14 +00:00
|
|
|
|
2019-10-01 21:32:40 +00:00
|
|
|
// used in schema pkg
|
2018-10-01 06:08:12 +00:00
|
|
|
_ "github.com/sourcegraph/go-jsonschema/cmd/go-jsonschema-compiler"
|
2019-10-01 21:32:40 +00:00
|
|
|
|
2021-09-20 07:47:26 +00:00
|
|
|
_ "golang.org/x/tools/cmd/goimports"
|
2019-10-01 21:32:40 +00:00
|
|
|
// used in many places
|
2018-10-01 06:08:12 +00:00
|
|
|
_ "golang.org/x/tools/cmd/stringer"
|
2023-05-02 17:53:31 +00:00
|
|
|
|
2023-05-30 15:44:27 +00:00
|
|
|
// Used for cody-gateway to generate a GraphQL client
|
2023-05-02 17:53:31 +00:00
|
|
|
_ "github.com/Khan/genqlient"
|
2023-09-28 20:51:44 +00:00
|
|
|
|
|
|
|
|
// Used to generate schema
|
2024-04-12 15:18:43 +00:00
|
|
|
_ "chainguard.dev/apko/pkg/lock"
|
2023-09-28 20:51:44 +00:00
|
|
|
_ "github.com/pseudomuto/protoc-gen-doc"
|
2024-05-07 07:14:05 +00:00
|
|
|
|
|
|
|
|
_ "github.com/maxbrunsfeld/counterfeiter/v6"
|
2018-10-01 06:08:12 +00:00
|
|
|
)
|