xref: /llvm-project/lldb/source/Plugins/Platform/Android/PlatformAndroidProperties.td (revision fabd16c7460e6cfae3106155ec79142bfa54db2e)
1include "../../../../include/lldb/Core/PropertiesBase.td"
2
3let Definition = "android" in {
4  def PlatformPackageName: Property<"package-name", "String">,
5    Global,
6    DefaultStringValue<"">,
7    Desc<"Specify package name to run adb shell command with 'run-as' as the "
8         "package user when necessary (e.g. to get file with 'cat' and 'dd').">;
9}
10