Home | History | Annotate | only in /external/perfetto/ui
Up to higher level directory
NameDateSize
.clang-format22-Oct-2020126
bs-config.js22-Oct-20202.5K
BUILD.gn22-Oct-202014.4K
config/22-Oct-2020
deploy22-Oct-20203K
index.html22-Oct-2020594
jest.headless.config.js22-Oct-2020245
jest.jsdom.config.js22-Oct-2020109
jest.unit.config.js22-Oct-2020107
node22-Oct-2020856
node_modules/22-Oct-2020
npm22-Oct-2020855
OWNERS22-Oct-202020
package-lock.json22-Oct-2020286.9K
package.json22-Oct-20201K
PRESUBMIT.py22-Oct-20202.1K
query.html22-Oct-20201.3K
README.md22-Oct-2020621
rollup.config.js22-Oct-2020604
run-dev-server22-Oct-20201.4K
src/22-Oct-2020
tsconfig.json22-Oct-20202.1K
tslint.json22-Oct-20202.3K

README.md

      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