f9fcc7adab
date: 2026-06-28T09:48:35 master commit: da6313dbe95b3f24bb5d8018b0e5f950f5823ca7
12 lines
323 B
Bash
Executable File
12 lines
323 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ ! -d perfetto ]; then
|
|
git clone https://android.googlesource.com/platform/external/perfetto/
|
|
fi
|
|
|
|
cd perfetto
|
|
|
|
tools/install-build-deps --linux-arm
|
|
tools/gn gen --args='is_debug=false target_os="linux" target_cpu="arm64"' out/linux
|
|
tools/ninja -C out/linux tracebox traced traced_probes perfetto
|