diff options
| author | 2018-11-20 11:59:08 +0800 | |
|---|---|---|
| committer | 2019-01-23 10:15:02 +0800 | |
| commit | 4fcea3d9a3924f25724c4df2d62ff53c75f1d6ad (patch) | |
| tree | d07241323a8e834017a91b9c364fb59c7e64ced9 /android/variable.go | |
| parent | 5c7c78a2e0a1a00cd0bdf7759af8a43e2a4ccac2 (diff) | |
Add prebuilt ABI checker support to soong
This commit adds prebuilt ABI checker support to soong so that
`cc_prebuilt_library_shared` and `cc_prebuilt_binary` are checked.
To opt out the check, add `check_elf_files: false` to your module.
Bug: 119086738
Test: lunch aosp_sailfish-userdebug && CHECK_ELF_FILES=true make check-elf-files
Change-Id: Idb4290c8f48aad545894a7ae718a537cbf832233
Diffstat (limited to 'android/variable.go')
| -rw-r--r-- | android/variable.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go index 8333635a6..6cf28ad2f 100644 --- a/android/variable.go +++ b/android/variable.go @@ -195,6 +195,8 @@ type productVariables struct { Arc *bool `json:",omitempty"` MinimizeJavaDebugInfo *bool `json:",omitempty"` + Check_elf_files *bool `json:",omitempty"` + UncompressPrivAppDex *bool `json:",omitempty"` ModulesLoadedByPrivilegedModules []string `json:",omitempty"` |