Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.clang-format | 22-Oct-2020 | 126 | |
bs-config.js | 22-Oct-2020 | 2.5K | |
BUILD.gn | 22-Oct-2020 | 14.4K | |
config/ | 22-Oct-2020 | ||
deploy | 22-Oct-2020 | 3K | |
index.html | 22-Oct-2020 | 594 | |
jest.headless.config.js | 22-Oct-2020 | 245 | |
jest.jsdom.config.js | 22-Oct-2020 | 109 | |
jest.unit.config.js | 22-Oct-2020 | 107 | |
node | 22-Oct-2020 | 856 | |
node_modules/ | 22-Oct-2020 | ||
npm | 22-Oct-2020 | 855 | |
OWNERS | 22-Oct-2020 | 20 | |
package-lock.json | 22-Oct-2020 | 286.9K | |
package.json | 22-Oct-2020 | 1K | |
PRESUBMIT.py | 22-Oct-2020 | 2.1K | |
query.html | 22-Oct-2020 | 1.3K | |
README.md | 22-Oct-2020 | 621 | |
rollup.config.js | 22-Oct-2020 | 604 | |
run-dev-server | 22-Oct-2020 | 1.4K | |
src/ | 22-Oct-2020 | ||
tsconfig.json | 22-Oct-2020 | 2.1K | |
tslint.json | 22-Oct-2020 | 2.3K |
1 # Perfetto UI 2 3 Quick Start 4 ----------- 5 Run: 6 7 ```bash 8 $ git clone https://android.googlesource.com/platform/external/perfetto/ 9 $ cd perfetto 10 $ tools/install-build-deps --no-android --ui 11 $ tools/gn gen out/debug --args='is_debug=true is_clang=true' 12 $ tools/ninja -C out/debug ui 13 ``` 14 15 For more details on `gn` configs see 16 [Build Instructions](../docs/build-instructions.md). 17 18 To run the tests: 19 ```bash 20 $ out/debug/ui_unittests 21 $ out/debug/ui_tests 22 ``` 23 24 To run the tests in watch mode: 25 ```bash 26 $ out/debug/ui_unittests --watch 27 ``` 28 29 Finally run: 30 31 ```bash 32 $ ./ui/run-dev-server out/debug 33 ``` 34 35 and navigate to `localhost:3000`. 36