Roll recipe dependencies (trivial).

This is an automated CL created by the recipe roller. This CL rolls recipe
changes from upstream projects (e.g. depot_tools) into downstream projects
(e.g. tools/build).


More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug.
depot_tools:
  https://crrev.com/59127a5d394103ae8453b38651ae702955e952d8 metrics: Spell out PII. (ehmaldonado@chromium.org)
  https://crrev.com/8ada4d523eb440c9978390a8a38fe167b576b91e [cipd] Roll cipd to allow long paths on Windows (iannucci@chromium.org)
  https://crrev.com/5705acabe03a84815779adda7c0928b67dfaa6ae [gclient] Make getdep and setdep to provide builtin vars (borenet@google.com)
  https://crrev.com/6343daaa40feeeea0d340b4bcce89790d6037566 [led] Update led to latest version. (iannucci@chromium.org)
  https://crrev.com/801b5ddb145f189f301bc824a6b1ac9c109d480e [DevTools] Add a fetch config for the inspector_protocol. (johannes@chromium.org)
  https://crrev.com/767024c68dfec7d1047309cc319db36a4297d126 Revert "[gclient] Make getdep and setdep to provide builtin vars" (sergiyb@chromium.org)
  https://crrev.com/c6ffd7af7d84ec354a92a0dc11613ec23cf82c60 Include ARM64 bits into win_toolchain/package_from_installed.py (brucedawson@chromium.org)


TBR=borenet@google.com

Recipe-Tryjob-Bypass-Reason: Autoroller
Bugdroid-Send-Email: False
Change-Id: Ie3d0f8f0166520fb1e5c979630a88665679ad18f
Reviewed-on: https://skia-review.googlesource.com/c/171577
Commit-Queue: Recipe Roller <recipe-roller@chromium.org>
Reviewed-by: Recipe Roller <recipe-roller@chromium.org>
Reviewed-by: Sergiy Byelozyorov <sergiyb@chromium.org>
2 files changed
tree: de4a062de228973e9f7274bc0c2d0f8d22584293
  1. am/
  2. android_compile/
  3. android_ingest/
  4. android_stats/
  5. appengine_scripts/
  6. autoroll/
  7. bash/
  8. blamer/
  9. chromeextensions/
  10. cmd/
  11. comments/
  12. common-sk/
  13. contestk/
  14. cq_watcher/
  15. ct/
  16. ct_pixel_diff/
  17. datahopper/
  18. debugger/
  19. debugger-assets/
  20. docker/
  21. docserverk/
  22. ds/
  23. fiddlek/
  24. flakiness/
  25. fuzzer/
  26. get_service_account/
  27. git_cookie_authdaemon/
  28. go/
  29. gold-client/
  30. golden/
  31. grafana/
  32. html-template-minifier/
  33. infra/
  34. infra-sk/
  35. jsdoc/
  36. jsfiddle/
  37. kube/
  38. leasing/
  39. logmetrics/
  40. make/
  41. monitoring/
  42. named-fiddles/
  43. notifier/
  44. pdfium/
  45. perdiff/
  46. perf/
  47. power/
  48. prober/
  49. proberk/
  50. prometheus/
  51. promk/
  52. proxy/
  53. pulld/
  54. push/
  55. res/
  56. scripts/
  57. sheriff_emails/
  58. skfe/
  59. skolo/
  60. skottie/
  61. status/
  62. statusv2/
  63. swarming_logger/
  64. task_driver/
  65. task_scheduler/
  66. tools/
  67. tracedb/
  68. webtools/
  69. .gitattributes
  70. .gitignore
  71. build_infra_prod.sh
  72. codereview.settings
  73. DATASTORE.md
  74. DEPS
  75. launch.md
  76. LICENSE
  77. Makefile
  78. PRESUBMIT.py
  79. PRIVACY_POLICY.md
  80. README.md
  81. run_unittests
  82. run_unittests.go
  83. STYLEGUIDE.md
  84. whitespace.txt
README.md

Skia-Buildbot Repository

This repo contains infrastructure code for Skia.

Getting the Source Code

The main source code repository is a Git repository hosted at https://skia.googlesource.com/buildbot. Although it is possible to check out this repository directly with git clone or using gclient fetch, it is preferred to use go get so that the code is arranged correctly for Go. If this is your first time working on Go code, read about the GOPATH environment variable. Make sure that $GOPATH/bin comes before /usr/bin in your PATH. If you have GOPATH set, run:

$ go get -u -t go.skia.org/infra/...

This fetches the repository into your $GOPATH directory along with all the Go dependencies. Note: go.skia.org is a custom import path and will only work if used like the examples here.

Install Node.js (not as root) and add the bin dir to your path. Optionally run npm install npm -g, as suggested by the npm getting started doc.

Install other dependencies:

$ sudo apt-get install python-django
$ go get -u github.com/kisielk/errcheck \
  golang.org/x/tools/cmd/goimports \
  go.chromium.org/luci/client/cmd/isolate
$ npm install -g polylint bower

Build from GOPATH:

$ cd $GOPATH/src/go.skia.org/infra/
$ make all

Generated Code

Some code is generated using go generate with external binaries. First, install the version of protoc referenced in the asset creation script and ensure it is on your PATH before other versions of protoc.

Install the necessary go packages:

$ go get -u \
  github.com/golang/protobuf/protoc-gen-go \
  golang.org/x/tools/cmd/stringer \
  google.golang.org/grpc

To generate code run in this directory:

$ go generate ./...

Database Setup for Testing

Tests which use the database package's testutils require you to have a MySQL instance running with a database named “sk_testing” and users called “readwrite” and “test_root” with appropriate permissions for sk_testing. The ‘setup_test_db’ script in ‘go/database’ is included for convenience in setting up this test database and user.

Go tests require a local installation of MySQL. For a Debian based distro:

$ sudo apt-get install mysql-client mysql-server

Leave the root password blank.

Then, to set up local versions of the production databases:

$ cd $GOPATH/src/go.skia.org/infra/go/database
$ ./setup_test_db

Running unit tests

Install Cloud SDK.

The installed python-django version must be >= 1.7. Run the following to update:

$ sudo pip install Django --upgrade

Use this command to run the presubmit tests:

$ ./run_unittests --small