diff options
author | 2023-10-20 19:58:53 +0000 | |
---|---|---|
committer | 2023-10-20 20:24:28 +0000 | |
commit | c7b93c036d2d58a257f18aca7268fe84f124f19b (patch) | |
tree | 1f17c6e943a9ecefb6996860b805529904673095 /cmds/installd/InstalldNativeService.cpp | |
parent | 678bf2cdd69bbf89548eda943daf5c6f15215704 (diff) |
Remove installd support for compiled views
This feature did not ship and is being removed. Remove the associated
compilation hooks in installd.
Bug: 158121974
Test: m
Change-Id: I9d80f67faaddf2813e1c0389116b510139915939
Diffstat (limited to 'cmds/installd/InstalldNativeService.cpp')
-rw-r--r-- | cmds/installd/InstalldNativeService.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cmds/installd/InstalldNativeService.cpp b/cmds/installd/InstalldNativeService.cpp index 073d0c4854..d7c9b40d92 100644 --- a/cmds/installd/InstalldNativeService.cpp +++ b/cmds/installd/InstalldNativeService.cpp @@ -69,7 +69,6 @@ #include "installd_deps.h" #include "otapreopt_utils.h" #include "utils.h" -#include "view_compiler.h" #include "CacheTracker.h" #include "CrateManager.h" @@ -3258,17 +3257,6 @@ binder::Status InstalldNativeService::controlDexOptBlocking(bool block) { return ok(); } -binder::Status InstalldNativeService::compileLayouts(const std::string& apkPath, - const std::string& packageName, - const std ::string& outDexFile, int uid, - bool* _aidl_return) { - const char* apk_path = apkPath.c_str(); - const char* package_name = packageName.c_str(); - const char* out_dex_file = outDexFile.c_str(); - *_aidl_return = android::installd::view_compiler(apk_path, package_name, out_dex_file, uid); - return *_aidl_return ? ok() : error("viewcompiler failed"); -} - binder::Status InstalldNativeService::linkNativeLibraryDirectory( const std::optional<std::string>& uuid, const std::string& packageName, const std::string& nativeLibPath32, int32_t userId) { |