Home | History | Annotate | Download | only in scripts
      1 # This configuration is written in python and used by binary_cache_builder.py.
      2 
      3 import os
      4 import os.path
      5 
      6 # path of profiling record data.
      7 perf_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.
     14 symfs_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.
     20 binary_cache_dir = "binary_cache"
     21 
     22 
     23 # path of adb.
     24 adb_path = "adb"
     25 
     26 # path of readelf, set to "" if not available.
     27 readelf_path = "readelf"