summaryrefslogtreecommitdiff
path: root/services/incremental/BinderIncrementalService.cpp
diff options
context:
space:
mode:
authorSongchun Fan <schfan@google.com>2020-05-27 22:17:23 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-05-27 22:17:23 +0000
commitf2a6af4b8a4ea7d889b83b7e54135fca6dcfcb40 (patch)
tree78c35875466c851915046052199991ea15c7f6b2 /services/incremental/BinderIncrementalService.cpp
parent09aa3bc4b7c2033af7dffc6e46b3db7aa6224623 (diff)
parent14f6c3c735164f8c0f879e96a568168b0c564fa6 (diff)
Merge "[incremental] respect extractNativeLibs in native lib config" into rvc-dev
Diffstat (limited to 'services/incremental/BinderIncrementalService.cpp')
-rw-r--r--services/incremental/BinderIncrementalService.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/services/incremental/BinderIncrementalService.cpp b/services/incremental/BinderIncrementalService.cpp
index 6018b9e0b2e0..e790a196ad64 100644
--- a/services/incremental/BinderIncrementalService.cpp
+++ b/services/incremental/BinderIncrementalService.cpp
@@ -280,8 +280,9 @@ binder::Status BinderIncrementalService::startLoading(int32_t storageId, bool* _
binder::Status BinderIncrementalService::configureNativeBinaries(
int32_t storageId, const std::string& apkFullPath, const std::string& libDirRelativePath,
- const std::string& abi, bool* _aidl_return) {
- *_aidl_return = mImpl.configureNativeBinaries(storageId, apkFullPath, libDirRelativePath, abi);
+ const std::string& abi, bool extractNativeLibs, bool* _aidl_return) {
+ *_aidl_return = mImpl.configureNativeBinaries(storageId, apkFullPath, libDirRelativePath, abi,
+ extractNativeLibs);
return ok();
}