tree: e468832372d5adbf43406a0829335b616f2eab79 [path history] [tgz]
  1. faketemplates/
  2. go/
  3. res/
  4. sys/
  5. templates/
  6. .bowerrc
  7. bower.json
  8. build_release
  9. DESIGN.md
  10. elements.html
  11. image.png
  12. Makefile
  13. package.json
  14. PROD.md
  15. README.md
  16. setup-script.sh
  17. vm.go
debugger/README.md

Skia Debugger

The Skia Debugger consists of two components, the C++ command-line application that ingests SKPs and analyzes them, and the HTML/CSS/JS front-end to the debugger that is loaded off of https://debugger.skia.org. This directory contains the code for debugger.skia.org.

See DESIGN.md for more details.

Running

To run the server locally make sure you have Go installed and then run:

go get go.skia.org/infra/debugger/...
cd $GOPATH/src/go.skia.org/infra/debugger
make run_server_local

Make sure you have $GOPATH/bin added to your PATH.

This will spin up a local server on port 9000.

Make sure when you run the command-line debugger that it runs looking for http://localhost:9000 and not https://debugger.skia.org. I.e

./out/Release/skiaserve --source http://localhost:9000