summaryrefslogtreecommitdiff
path: root/libnativeloader/public_libraries.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Drop ANDROID_ADDITIONAL_PUBLIC_LIBRARIES.Martin Stjernholm2021-05-131-35/+0
| | | | | | | | | | It's not needed any more since libarttest(d).so is loaded from the ART linker namespace. Test: art/test/testrunner/testrunner.py --target --64 --optimizing Bug: 130340935 Bug: 167578583 Change-Id: I785133e921277cb25360856e9af20fa681b54a3b
* clean up statsd public librariesJooyung Han2020-09-081-11/+0
| | | | | | | | | | JNI library(libstat_jni) from statsd apex is handled via the build system and linkerconfig. Bug: 150767721 Test: presubmit Test: atest libnativeloader_test Change-Id: Ia7527f053508d5992c3eef209f77260f0d210e81
* libnativeloader: clean-up hard-coded public libsJooyung Han2020-09-081-87/+78
| | | | | | | | | | | | art, nn, i18n apexes provide some of libs listed in public.libraries.txt. The list of these apexes are now read from /linkerconfig/apex.libraries.config.txt generated by /system/bin/linkerconfig. Bug: 150767721 Test: cuttlefish boots Test: atest libnativeloader_test Change-Id: Ic603b42669dff89d5d3da2f6822312e827eddd86
* "Move ICU from ART APEX to i18n APEX" Attempt 2Victor Chang2020-05-071-5/+19
| | | | | | | | | | | | The change was previously submitted in https://r.android.com/1283897 "Calling @IntraCoreApi from core-icu4j should not cause Core platform API violation" https://r.android.com/1299494 Bug: 138994281 Test: m checkbuild on aosp_x86-userdebug Test: device boots Change-Id: Idb3e2450fca5d8300aef353fc1e4e99e24f04372
* Revert "Move ICU from ART APEX to i18n APEX"vichang2020-05-051-19/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert "Move v8 and libpac into i18n APEX" Revert "Move core-icu4j into I18n APEX" Revert "Move ICU from ART APEX into i18n APEX" Revert "Move core-icu4j into i18n APEX" Revert "Move libpac into i18n APEX" Revert "Add shared library into i18n APEX and add the required s..." Revert "Make com_android_i18n namespace visible" Revert submission 1299494-i18nApex Reason for revert: Breaking aosp_x86-eng on aosp-master Reverted Changes: I30fc3735b:Move ICU from ART APEX to i18n APEX Icb7e98b5c:Calling @IntraCoreApi from core-icu4j should not c... Ic7de63fe3:Move core-icu4j into I18n APEX I65b97bdba:Make com_android_i18n namespace visible Ia4c83bc15:Move v8 and libpac into i18n APEX I10e6d4948:Move core-icu4j into i18n APEX I8d989cad7:Move ICU from ART APEX into i18n APEX I72216ca12:Move ICU into i18n APEX Ief9dace85:Add shared library into i18n APEX and add the requ... I7d97a10ba:Move libpac into i18n APEX I90fff9c55:Move ICU from ART APEX into i18n APEX Change-Id: I516a8d290e3a3cc2b45d71ba5400364b0478a57a
* Move ICU from ART APEX to i18n APEXVictor Chang2020-05-051-5/+19
| | | | | | | | | | | | | | It involves a change of boot class path to use core-icu4j from i18n APEX. Bug: 138994281 Test: device boots Test: m build-art-target-tests Test: CtsJniTestCases Test: atest libnativeloader_test Test: ./art/test/testrunner/run_build_test_target.py -j80 art-test Test: art/build/apex/runtests.sh Change-Id: I30fc3735be760cba48856cd102852d2a6c796374
* Add libnativehelper.so to public librariesOrion Hodson2020-05-041-0/+1
| | | | | | | | | | | Exposes one copy libnativehelper to apps and everywhere else. Bug: 150252746 Bug: 151443957 Test: m & boot Test: art/tools/run-gtests.sh -j4 Test: art/test.py --target -r Change-Id: I20b3c5b722bb54a2d4aca74819bd38f801324452
* Use ART_TARGET_ANDROID instead of __ANDROID__Nicolas Geoffray2020-04-271-3/+3
| | | | | | | | | | | On golem, we build for ART_TARGET_LINUX, which doesn't have support for linkerconfig. Therefore, guard all linker namespace code on ART_TARGET_ANDROID instead of __ANDROID__ (which is unfortunately not under ART's control). Test: build for golem and run Bug: 154074847 Change-Id: I7a2b81918177704b42d8aafbd6d7e9d06d34e5f4
* Replaced dangerous uses of sizeof()Chris Wailes2020-04-151-1/+1
| | | | | | | | | | This patch replaces several uses of sizeof with calls to std::array's size method. Bug: 153655228 Test: Compiled with changed static asserts Test: Treehugger Change-Id: I4cf87f2d7fffe0d7c81e0652688bedd4d5c9c5c2
* Skip reading VNDK libs for product if not availableJustin Yun2020-03-241-0/+6
| | | | | | | | | | If a device do not define "ro.product.vndk.version", we don't need to initialize the VNDK libraries for them. In that case, return emtpy string. Bug: 151992099 Test: atest libnativeloader_test Change-Id: Ic4d5e0e1162d367e919b5381e3a6c7d048a5e103
* libnativeloader: Remove hard-coded cronetJooyung Han2020-03-041-11/+0
| | | | | | | | | | Because cronet apex sets its jni_libs, its classloader-namespace is linked automatically via jni.config.txt. Bug: 143733063 Bug: 146420818 Test: atest CronetApiTest Change-Id: I7ae0f7bc60f09e7e384abd1f0a1e4f8f90f64052
* Loading JNI libraries in an APEXJooyung Han2020-03-041-0/+41
| | | | | | | | | | | | | | | | To load JNI libraries in an APEX, libnativeloader relies on jni.config.txt file which contains available JNI libraries for APEX namespaces: com_android_foo libfoo_jni.so:... com_android_bar libbar_jni.so:... This file is generated by linkerconfig. Bug: 143733063 Test: cuttlestone boots (For now, no behavioral changes because jni.config.txt is empty) Change-Id: I066de90a73875118be53972e50d076061922d762
* Use {llndk,vndksp}.libraries.txt from VNDK APEXJooyung Han2020-02-231-12/+16
| | | | | | | | | | /system/etc/{llndk,vndksp}.libraries.txt files will be deprecated. These files can be read from VNDK APEX. Bug: 145184886 Test: build / boot Change-Id: If96fe7c75538e7fa94542e9b4d1d68a16cfa5f62
* Use a different VNDK namespace for product appsJustin Yun2020-02-211-5/+19
| | | | | | | | | | | | As product partition may have a different VNDK version than that of vendor partition, they may not share the same VNDK namespace for their apps. Define a new vndk_product namespace in the system section for product apps that uses ro.product.vndk.version. Bug: 149063221 Test: atest libnativeloader_test Change-Id: I1bb76617104a49b0d11af13d2f116959a18390a3
* Add libstats_jni to linkerconfig/namespaceJeffrey Huang2020-02-161-3/+15
| | | | | | | | | As part of statsd becoming a Mainline module, moving libstats_jni to the apex requires adding it to the linker namespace here. Bug: 145922701 Test: m -j Change-Id: Ifcbea47cc36604e4a86df9af711d678b23012724
* One more missing Result::ok() in native_loader_test.cppBernie Innocenti2020-02-131-1/+1
| | | | | Test: m checkbuild Change-Id: Ic7725afd2d0fd97ea0ced59e48455b92ae433047
* Use product vndk version for product appsJustin Yun2020-02-101-9/+41
| | | | | | | | | | ro.vndk.version is only for vendor modules. Product modules use different vndk version that is set in ro.product.vndk.version. Use product vndk version for creating namespaces for product apps. Bug: 148823287 Test: atest libnativeloader_test Change-Id: Iade4b3ca846f1e47e5138f2ceda81bf188276a91
* Convert art/ to Result::ok()Bernie Innocenti2020-02-071-7/+7
| | | | | | | No functionality changes, this is a mechanical cleanup. Test: m Change-Id: I10030314ad8a06d49a63f1e2f3c5aa5b484e34b6
* Remove extra using statementsTom Cherry2020-02-061-1/+0
| | | | | | | | android::base::Errorf and android::base::ErrnoErrorf are now #define's instead of functions, so remove their using statements. Test: build Change-Id: Ifc2f5cf3ccf4de0b089cfe6b38e1f9724f5ff617
* Make product libs available to unbundled product apks.Justin Yun2020-01-071-0/+12
| | | | | | | | | | | | | | Unbundling product apps must be triggerred if the target is enforcing the product interfaces. The device must have ro.product.vndk.version property if its product interface is enforced. Unbundled product apps can use product libraries. Bug: 144534640 Bug: 127738095 Bug: 128557860 Test: check boot and basic features Change-Id: I32b2a1bd3e4f62b6acdbfab6bd277ec1132478a2
* Add public lib of Cronet apex mainlineLuke Huang2019-12-171-0/+11
| | | | | | | | | | | | | This is a workaround since apex module library path is not supported in jni Bug: 139397529 Bug: 145474221 Test: Build Test: manual test with Cronet Test: atest CtsJniTestCases Test: atest libnativeloader_test Change-Id: Ifd8aa85bd78e95131b2ce3eab0ad32c2bb19cee2
* Read system_ext partition for partner defined public libraries.Justin Yun2019-12-171-1/+3
| | | | | | | | | | | | Let partners define system libraries in system_ext for their apps. They can list the libraries in /system_ext/etc/public.libraries-<companyname>.txt for their apps to use. Bug: 134909174 Bug: 134359158 Test: build and boot Change-Id: I4edc6c19c4e23e2fec2d98aca7a1e4fd64fd5f2e
* Move libnative{bridge,loader} to art/Orion Hodson2019-10-111-0/+371
This change moves system/core/libnative{bridge,loader} under art/. Bug: 137364733 Test: m Change-Id: I9be7333d00fcd3f36cd80520e50a30ea840187ad