aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/cloud.google.com
Commit message (Collapse)AuthorAgeFilesLines
* dashboard/app: update to go116 (#2959)Taras Madan2022-01-0536-281/+6657
| | | | | | 1. Updated the "include"s. 2. No logs read API in the AppEngine anymore. Replaced by the GCP logging API. 3. Use "GO111MODULE=off gcloud beta app deploy ./dashboard/app/app.yaml --no-promote" to test new deployment. 4. Updated the documentation.
* syzkaller: add the gcp secret manager dependency (#2949)Taras Madan2021-12-283-0/+812
| | | | Adds the function to read GCP Secrets.
* vendor: add cloud.google.com/go/pubsubDmitry Vyukov2020-09-3037-91/+6756
| | | | | | Required to talk to KCIDB. Update #2144
* go.mod: upgrade some dependenciesDmitry Vyukov2020-07-0428-397/+2697
| | | | | | | Since we started using modules, it's a good time to update some deps. Update to latest official versions packages that have newer versions. Update #1247
* go.mod: switch to modules for dependency managementDmitry Vyukov2020-07-0411-467/+273
| | | | | | | | | | | | | Godep is long deprecated and modules is the future. Updating dependencies with godep is painful and non-transparent. This will hopefully help to create custom golangci-lint linters. The change was created with: go mod init rm -rf vendor go mod vendor Fixes #1247
* vendor: update vendored filesDmitry Vyukov2020-01-2945-718/+36001
| | | | | | Required to switch dashboard/app to go1.11. Update #1461
* vendor: add github.com/ianlancetaylor/demangleDmitry Vyukov2018-06-285-10/+80
| | | | | | Add the new package required by pkg/report/fuchsia.go. Also update everything else because there does not seem to be a way to add a package without a wholesale update.
* vendor: update all packagesDmitry Vyukov2017-08-088-82/+382
| | | | | | google.golang.org/api/compute/v0.beta again changed public interfaces which causes breakages in other build environments. Update everything to HEAD.
* vendor: switch from dep to godepDmitry Vyukov2017-06-13368-98130/+3
| | | | | | | dep tool vendored too much code (100MB) including tests and unused packages. godep vendored significantly less (12MB) without tests and unused packages. The main advantage is that pre-Go1.9 toolchain does not run tests of all vendor packages now.
* vendor: vendor dependenciesDmitry Vyukov2017-06-13385-0/+101981
All dependencies are vendored with: go get github.com/golang/dep dep init If necessary, can be updated with: dep ensure -update Fixes #215