| OLD | NEW |
| 1 This is an application designed to collect and analyze build/compile stats. | 1 This is an application designed to collect and analyze build/compile stats. |
| 2 | 2 |
| 3 Deign Doc: [Chromium build time profiler](https://docs.google.com/a/chromium.org
/document/d/16TdPTIIZbtAarXZIMJdiT9CePG5WYCrdxm5u9UuHXNY/edit#heading=h.xgjl2srt
ytjt) | 3 Deign Doc: [Chromium build time profiler](https://docs.google.com/a/chromium.org
/document/d/16TdPTIIZbtAarXZIMJdiT9CePG5WYCrdxm5u9UuHXNY/edit#heading=h.xgjl2srt
ytjt) |
| 4 | 4 |
| 5 default module | 5 default module |
| 6 in default/ dir | 6 in default/ dir |
| 7 | 7 |
| 8 How to: | 8 How to: |
| 9 | 9 |
| 10 to generate trace-viewer contents | 10 to generate trace-viewer contents |
| 11 $ ./gen-trace-viewer.sh | 11 $ cd default; go generate |
| 12 it will use ../third_party/catapult/tracing/bin/trace2html |
| 12 | 13 |
| 13 to compile | 14 to compile |
| 14 $ cd default; ../goenv.sh goapp build | 15 $ cd default; ../goenv.sh goapp build |
| 15 | 16 |
| 16 to run locally with dev_appserver | 17 to run locally with dev_appserver |
| 17 (note: no service account available, so you couldn't | 18 (note: no service account available, so you couldn't |
| 18 fetch file from gs://chrome-goma-log) | 19 fetch file from gs://chrome-goma-log) |
| 19 $ ./goenv.sh goapp serve default | 20 $ ./goenv.sh goapp serve default |
| 20 (or | 21 (or |
| 21 $ cd default; ../goenv.sh goapp serve | 22 $ cd default; ../goenv.sh goapp serve |
| (...skipping 19 matching lines...) Expand all Loading... |
| 41 $ cd default; ../goenv.sh goapp test | 42 $ cd default; ../goenv.sh goapp test |
| 42 | 43 |
| 43 to read go documentation | 44 to read go documentation |
| 44 | 45 |
| 45 $ ./goenv.sh godoc <package> | 46 $ ./goenv.sh godoc <package> |
| 46 $ ./goenv.sh godoc <package> <symbol> | 47 $ ./goenv.sh godoc <package> <symbol> |
| 47 (or | 48 (or |
| 48 $ ./goenv.sh godoc -http :6060 | 49 $ ./goenv.sh godoc -http :6060 |
| 49 and go to http://localhost:6060 | 50 and go to http://localhost:6060 |
| 50 ) | 51 ) |
| OLD | NEW |