From 23eaa74a851e3452e52007b6e8ae94329c35aa89 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 10 Sep 2019 07:32:09 -0700 Subject: [PATCH] Disable openssl for folly libevent builds too Summary: This has been tripping up the release builds, luckily caught by Circle: https://circleci.com/gh/facebook/flipper/1480 Reviewed By: jknoxville Differential Revision: D17282130 fbshipit-source-id: a17adb18bc75e4fa5d645a062343622167785fa6 --- android/third-party/overrides/Folly/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/third-party/overrides/Folly/build.gradle b/android/third-party/overrides/Folly/build.gradle index 7f003971d..5d80a3b91 100644 --- a/android/third-party/overrides/Folly/build.gradle +++ b/android/third-party/overrides/Folly/build.gradle @@ -17,7 +17,7 @@ android { buildConfigField "boolean", "IS_INTERNAL_BUILD", 'true' externalNativeBuild { cmake { - arguments '-DANDROID_TOOLCHAIN=clang', '-DANDROID_STL=c++_shared' + arguments '-DANDROID_TOOLCHAIN=clang', '-DANDROID_STL=c++_shared', '-DEVENT__DISABLE_OPENSSL=on' } } }