• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# This configuration is written in python and used by binary_cache_builder.py.
2
3import os
4import os.path
5
6# path of profiling record data.
7perf_data_path = "perf.data"
8
9
10# directories to find binaries with symbols and debug information.
11# If binaries are found in any of these directories, having the same build_id
12# as the one recorded in perf.data, then we copy the binary in the directory
13# instead of pulling the binary from device.
14symfs_dirs = []
15
16
17# directory to cache binaries. To report precisely, we pull needed binaries
18# to host. However, We don't need to pull a binary if there is already a binary
19# in binary_cache_dir having the same build_id as the one on device.
20binary_cache_dir = "binary_cache"
21
22
23# path of adb.
24adb_path = "adb"
25
26# path of readelf, set to "" if not available.
27readelf_path = "readelf"