go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/tools.go (about)

     1  // Copyright 2021 The LUCI Authors.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //      http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  //go:build tools
    16  // +build tools
    17  
    18  package main
    19  
    20  import (
    21  	_ "github.com/envoyproxy/protoc-gen-validate"
    22  	_ "github.com/golang/mock/mockgen"
    23  	_ "github.com/golang/protobuf/protoc-gen-go"
    24  	_ "github.com/smartystreets/goconvey"
    25  	_ "golang.org/x/tools/cmd/goimports"
    26  	_ "golang.org/x/tools/cmd/stringer"
    27  	_ "google.golang.org/api/google-api-go-generator"
    28  	_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
    29  
    30  	_ "go.chromium.org/luci/gae/tools/proto-gae"
    31  	_ "go.chromium.org/luci/grpc/cmd/cproto"
    32  	_ "go.chromium.org/luci/grpc/cmd/svcdec"
    33  	_ "go.chromium.org/luci/grpc/cmd/svcmux"
    34  	_ "go.chromium.org/luci/tools/cmd/apigen"
    35  	_ "go.chromium.org/luci/tools/cmd/assets"
    36  	_ "go.chromium.org/luci/tools/cmd/bqschemaupdater"
    37  )