• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

config/H03-May-2022-2111

node_modules/H16-Feb-2021-43

src/H16-Feb-2021-35,22726,957

.clang-formatH A D16-Feb-2021126 55

.gitignoreH A D16-Feb-20216 21

BUILD.gnH A D16-Feb-202118.4 KiB601540

OWNERSH A D16-Feb-202151 43

PRESUBMIT.pyH A D16-Feb-20212.1 KiB6232

README.mdH A D16-Feb-2021595 3627

deployH A D16-Feb-20213.1 KiB131103

nodeH A D16-Feb-2021856 245

npmH A D16-Feb-2021855 245

package-lock.jsonH A D16-Feb-2021297.5 KiB7,9007,899

package.jsonH A D16-Feb-20211.4 KiB5150

run-dev-serverH A D16-Feb-20211.3 KiB4826

tsconfig.base.jsonH A D16-Feb-20211.8 KiB2827

tsconfig.jsonH A D16-Feb-2021495 1918

tslint.jsonH A D16-Feb-20212.4 KiB7574

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/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