Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
config/ | 03-May-2024 | - | 293 | 137 | ||
release/ | 03-May-2024 | - | 214 | 135 | ||
src/ | 03-May-2024 | - | 38,017 | 29,096 | ||
.clang-format | D | 03-May-2024 | 126 | 5 | 5 | |
.gitignore | D | 03-May-2024 | 20 | 3 | 2 | |
BUILD.gn | D | 03-May-2024 | 1.6 KiB | 55 | 48 | |
OWNERS | D | 03-May-2024 | 72 | 5 | 4 | |
PRESUBMIT.py | D | 03-May-2024 | 2.1 KiB | 62 | 32 | |
README.md | D | 03-May-2024 | 608 | 36 | 27 | |
build | D | 03-May-2024 | 693 | 19 | 2 | |
build.js | D | 03-May-2024 | 22.9 KiB | 632 | 449 | |
node | D | 03-May-2024 | 713 | 19 | 3 | |
npm | D | 03-May-2024 | 712 | 19 | 3 | |
package-lock.json | D | 03-May-2024 | 245.8 KiB | 6,611 | 6,610 | |
package.json | D | 03-May-2024 | 1.5 KiB | 55 | 54 | |
run-dev-server | D | 03-May-2024 | 708 | 18 | 2 | |
run-tests | D | 03-May-2024 | 705 | 19 | 2 | |
tsconfig.base.json | D | 03-May-2024 | 1.7 KiB | 27 | 26 | |
tsconfig.json | D | 03-May-2024 | 535 | 21 | 20 | |
tslint.json | D | 03-May-2024 | 2.4 KiB | 75 | 74 |
README.md
1# Perfetto UI 2 3Quick Start 4----------- 5Run: 6 7```bash 8$ git clone https://android.googlesource.com/platform/external/perfetto/ 9$ cd perfetto 10$ tools/install-build-deps --ui 11$ tools/gn gen out/debug --args='is_debug=true' 12$ tools/ninja -C out/debug ui 13``` 14 15For more details on `gn` configs see 16[Build Instructions](../docs/contributing/build-instructions.md). 17 18To run the tests: 19```bash 20$ out/debug/ui_unittests 21$ out/debug/ui_tests 22``` 23 24To run the tests in watch mode: 25```bash 26$ out/debug/ui_unittests --watch 27``` 28 29Finally run: 30 31```bash 32$ ./ui/run-dev-server out/debug 33``` 34 35and navigate to `localhost:10000`. 36