You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
340 B
14 lines
340 B
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
root=""
|
||
|
|
||
|
if [ "x$1" != "x" ]; then
|
||
|
root="$1"
|
||
|
fi
|
||
|
cd "$root/perfetto"
|
||
|
GN_ARGS="is_debug=false use_custom_libcxx=false"
|
||
|
tools/install-build-deps --ui
|
||
|
tools/gn gen out/dist --args="${GN_ARGS}" --check
|
||
|
tools/ninja -C out/dist traced traced_probes perfetto trace_to_text ui trace_processor_shell
|
||
|
ui/run-dev-server out/dist/
|