| /* |
| * Copyright (C) 2021 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| import androidx.build.LibraryGroups |
| import androidx.build.LibraryType |
| import androidx.build.Publish |
| |
| apply plugin: 'AndroidXPlugin' |
| apply plugin: 'com.android.library' |
| |
| ext { |
| yuvSourceDir = "${project.rootDir.absolutePath}/../../external/libyuv" |
| } |
| |
| android { |
| defaultConfig { |
| externalNativeBuild { |
| cmake { |
| arguments "-DCMAKE_POLICY_DEFAULT_CMP0064=NEW", "-DCMAKE_VERBOSE_MAKEFILE=ON" |
| // Build only the static library target |
| targets "yuv" |
| } |
| } |
| } |
| |
| externalNativeBuild { |
| cmake { |
| version "3.18.1" |
| path "${yuvSourceDir}/files/CMakeLists.txt" |
| } |
| } |
| |
| // Enable generation of Prefab packages and include them in the library's AAR. |
| buildFeatures { |
| prefabPublishing true |
| } |
| |
| // Include the "libyuv" module from the native build system in the AAR, |
| // and export the headers in files/include to its consumers |
| prefab { |
| libyuv { |
| headers "${yuvSourceDir}/files/include" |
| name "yuv" |
| } |
| } |
| } |
| |
| androidx { |
| name = "libyuv" |
| // Only intended to be used as snapshots, do not change to PUBLISHED. |
| publish = Publish.SNAPSHOT_ONLY |
| mavenGroup = LibraryGroups.LIBYUV |
| inceptionYear = "2021" |
| description = "libyuv is an open source project that includes YUV scaling and conversion functionality." |
| } |
| |
| // Entire block is to workaround b/203448887 |
| afterEvaluate { |
| tasks.named("bundleDebugLocalLintAar").configure { |
| it.dependsOn("prefabDebugConfigurePackage") |
| } |
| tasks.named("bundleReleaseAar").configure { |
| it.dependsOn("prefabReleaseConfigurePackage") |
| } |
| tasks.named("reportLibraryMetrics").configure { |
| it.dependsOn("prefabReleaseConfigurePackage") |
| } |
| tasks.named("prefabReleaseConfigurePackage").configure { |
| def releaseAbiJson = project.file("$buildDir/intermediates/prefab_package/release/prefab/modules/yuv/libs/android.armeabi-v7a/abi.json") |
| def releasePrefabJson = project.file("$buildDir/intermediates/prefab_package/release/prefab/prefab.json") |
| it.doLast { |
| if (!releaseAbiJson.exists()) { |
| throw new GradleException("$releaseAbiJson does not exist") |
| } |
| if (!releasePrefabJson.exists()) { |
| throw new GradleException("$releasePrefabJson does not exist") |
| } |
| } |
| } |
| tasks.named("prefabDebugConfigurePackage").configure { |
| def debugAbiJson = project.file("$buildDir/intermediates/prefab_package/debug/prefab/modules/yuv/libs/android.armeabi-v7a/abi.json") |
| def debugPrefabJson = project.file("$buildDir/intermediates/prefab_package/debug/prefab/prefab.json") |
| it.doLast { |
| if (!debugAbiJson.exists()) { |
| throw new GradleException("$debugAbiJson does not exist") |
| } |
| if (!debugPrefabJson.exists()) { |
| throw new GradleException("$debugPrefabJson does not exist") |
| } |
| } |
| } |
| } |