Files
flipper/xplat/build.gradle
Lorenzo Blasa c8c40bca17 openssl from prefab (google) (#3429)
Summary:
Pull Request resolved: https://github.com/facebook/flipper/pull/3429

Instead of downloading/patching/building openssl, use the prefab package prepared by Google.

changelog: Consume openssl from maven (prefab)

Reviewed By: passy

Differential Revision: D34143349

fbshipit-source-id: 0ca92be6628b1b27a59b3e4ad8278cf8fef6d5d8
2022-02-11 02:59:45 -08:00

49 lines
1.1 KiB
Groovy

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.compileSdkVersion
buildToolsVersion rootProject.buildToolsVersion
ndkVersion rootProject.ndkVersion
defaultConfig {
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
externalNativeBuild {
cmake {
arguments '-DANDROID_TOOLCHAIN=clang', '-DANDROID_STL=c++_shared'
}
}
}
externalNativeBuild {
cmake {
path './CMakeLists.txt'
}
}
sourceSets {
main {
manifest.srcFile './AndroidManifest.xml'
}
}
buildFeatures {
prefab true
}
dependencies {
implementation project(':third-party')
implementation project(':rsocket')
implementation project(':folly')
implementation deps.openssl
}
}
preBuild.dependsOn(tasks.getByPath(':third-party:prepare'))