Add test trace

Change-Id: I50a4cc68654b488f1ecf71572d95e65efbf8a152
1 file changed
tree: afd50d2ad2744bb852273bae1b63239c19c0f315
  1. perfetto/
  2. testdata/
  3. trace_processor_shell/
  4. traced/
  5. traced_probes/
  6. README.md
README.md

Trace Processor Shell

The source code for trace_processor_shell lives in external/perfetto in the AOSP source tree.

Building stripped binaries

Check out the detailed build instructions here.

tools/gn args out/<out_folder>

# Use the following config
target_os = "android"
target_cpu = "arm" / "arm64" / "x64" # Depending on the platform
is_debug = false
monolithic_binaries = true

# Finally build the binaries
tools/ninja -C out/<out_folder>

# Strip Binaries
# You should have downloaded the NDK
# ndk_versio = 22.1.7171670
/path/to/sdk/ndk/<ndk_version>/toolchains/llvm/prebuilt/<platform/paths>/bin/strip <binary_name>