// // Vendored, statically-linked real OpenSSL — pawletprofiled's Android build // only, nothing else on the system links against these. See README.md for // why (BoringSSL has no CMS support) and how to populate lib/*/*.a. // cc_prebuilt_library_static { name: "libcrypto_pawlet_static", arch: { arm64: { srcs: ["lib/arm64-v8a/libcrypto.a"] }, arm: { srcs: ["lib/armeabi-v7a/libcrypto.a"] }, x86_64: { srcs: ["lib/x86_64/libcrypto.a"] }, x86: { srcs: ["lib/x86/libcrypto.a"] }, }, export_include_dirs: ["include"], strip: { none: true }, } cc_prebuilt_library_static { name: "libssl_pawlet_static", arch: { arm64: { srcs: ["lib/arm64-v8a/libssl.a"] }, arm: { srcs: ["lib/armeabi-v7a/libssl.a"] }, x86_64: { srcs: ["lib/x86_64/libssl.a"] }, x86: { srcs: ["lib/x86/libssl.a"] }, }, export_include_dirs: ["include"], strip: { none: true }, // libssl depends on libcrypto symbols; Soong needs this to order the // static link correctly. whole_static_libs: ["libcrypto_pawlet_static"], }