Reland "[debugger] Show an origin visualization"

This reverts commit 9ca73743f64b0e2057dc73e74dfa6c0b478a2894.

Reason for revert: fixed cl 311605

Original change's description:
> Revert "[debugger] Show an origin visualization"
> 
> because the change it depends on failed to submit
> https://skia-review.googlesource.com/c/skia/+/311605
> 
> This reverts commit 52445df151be5f780bd149d509377506dd3b0b84.
> 
> Reason for revert: <INSERT REASONING HERE>
> 
> Original change's description:
> > [debugger] Show an origin visualization
> > 
> > Change-Id: I9aaf42ddb815a000e0a8d7c6752187118e91a4e5
> > Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/311719
> > Reviewed-by: Derek Sollenberger <djsollen@google.com>
> > Commit-Queue: Nathaniel Nifong <nifong@google.com>
> 
> TBR=djsollen@google.com,nifong@google.com
> 
> Change-Id: I2c02140e85776afe57772bfa4c04a2674532db48
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/311896
> Reviewed-by: Nathaniel Nifong <nifong@google.com>
> Commit-Queue: Nathaniel Nifong <nifong@google.com>

TBR=djsollen@google.com,nifong@google.com

# Not skipping CQ checks because this is a reland.

Change-Id: I3a210c2f9ec6c810b257358cd9e0fb4786051d98
Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/312276
Reviewed-by: Nathaniel Nifong <nifong@google.com>
Commit-Queue: Nathaniel Nifong <nifong@google.com>
1 file changed
tree: b1137a141cae3ca99d747357b8f844f5765f766e
  1. am/
  2. android_ingest/
  3. android_stats/
  4. api/
  5. autoroll/
  6. bash/
  7. blamer/
  8. chromeextensions/
  9. comments/
  10. contestk/
  11. cq_watcher/
  12. ct/
  13. datahopper/
  14. debugger/
  15. debugger-assets/
  16. demos/
  17. docker/
  18. docker_pushes_watcher/
  19. docs/
  20. docserverk/
  21. dot/
  22. ds/
  23. fiddlek/
  24. firestore/
  25. get_service_account/
  26. git_cookie_authdaemon/
  27. gitsync/
  28. go/
  29. gold-client/
  30. golden/
  31. hashtag/
  32. html-template-minifier/
  33. infra/
  34. infra-sk/
  35. jsdoc/
  36. jsfiddle/
  37. k8s-checker/
  38. kube/
  39. leasing/
  40. licenses/
  41. machine/
  42. make/
  43. named-fiddles/
  44. particles/
  45. perdiff/
  46. perf/
  47. periodic-trigger/
  48. power/
  49. proberk/
  50. promk/
  51. pulld/
  52. puppeteer-tests/
  53. push/
  54. res/
  55. scripts/
  56. sheriff_emails/
  57. sk8s/
  58. skbug/
  59. skfe/
  60. skolo/
  61. skottie/
  62. status/
  63. task_driver/
  64. task_scheduler/
  65. tools/
  66. tree_status/
  67. trybot_updater/
  68. velero/
  69. webtools/
  70. .bazelrc
  71. .eslintrc.js
  72. .gitattributes
  73. .gitignore
  74. .mocharc.json
  75. BUILD.bazel
  76. build_infra_prod.sh
  77. cipd.ensure
  78. codereview.settings
  79. DATASTORE.md
  80. DEPS
  81. go.mod
  82. go.sum
  83. launch.md
  84. LICENSE
  85. Makefile
  86. package-lock.json
  87. package.json
  88. PRESUBMIT.py
  89. PRIVACY_POLICY.md
  90. README.md
  91. run_unittests
  92. run_unittests.go
  93. STYLEGUIDE.md
  94. tools.go
  95. tsconfig.json
  96. whitespace.txt
  97. WORKSPACE
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.git. It is possible to check out this repository directly with git clone or via go get.

Using git clone allows you to work in whatever directory you want. You will still need to set GOPATH in order to build some apps (recommended to put this in a cache dir). E.g.:

$ cd ${WORKDIR}
$ git clone https://skia.googlesource.com/buildbot.git
$ export GOPATH=${HOME}/.cache/gopath/$(basename ${WORKDIR})
$ mkdir $GOPATH
$ cd buildbot

Using go get will fetch the repository into your GOPATH directory along with all the Go dependencies. You will need to set GOPATH and GO111MODULE=on. E.g.:

$ export GOPATH=${WORKDIR}
$ export GO111MODULE=on
$ go get -u -t go.skia.org/infra/...
$ cd ${GOPATH}/src/go.skia.org/infra/

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 ~everything:

$ 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 \
  github.com/vektra/mockery/...

To generate code run in this directory:

$ go generate ./...

Running unit tests

Install Cloud SDK.

Use this command to run the presubmit tests:

$ ./run_unittests --small