blob: e154a7c0220e6e1032be9787b633de7bff8058d5 [file] [log] [blame]
/*
* Copyright (C) 2016 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.KmpPlatformsKt
import androidx.build.PlatformIdentifier
import androidx.build.Publish
import androidx.build.SdkHelperKt
import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType
import org.jetbrains.kotlin.konan.target.KonanTarget
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
def nativeEnabled = KmpPlatformsKt.enableNative(project)
configurations {
// Configuration for resolving shared archive file of androidx's SQLite compilation
sqliteSharedArchive {
canBeConsumed = false
canBeResolved = true
attributes {
attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.NATIVE_LINK))
}
}
}
androidXMultiplatform {
android()
androidNative()
ios() {
// Link to sqlite3 available in iOS
binaries.all {
linkerOpts += ["-lsqlite3"]
}
}
linux()
mac()
defaultPlatform(PlatformIdentifier.ANDROID)
sourceSets {
commonMain {
dependencies {
implementation(libs.kotlinStdlib)
api(project(":annotation:annotation"))
api(project(":sqlite:sqlite"))
}
}
commonTest {
dependencies {
implementation(libs.kotlinTest)
implementation(project(":kruth:kruth"))
}
}
androidMain {
dependsOn(commonMain)
}
androidInstrumentedTest {
dependsOn(commonTest)
dependencies {
implementation(libs.kotlinTestJunit)
implementation(libs.testRunner)
implementation(libs.testCore)
}
}
if (nativeEnabled) {
nativeMain {
dependsOn(commonMain)
}
nativeTest {
dependsOn(commonTest)
}
}
targets.all { target ->
if (target.platformType == KotlinPlatformType.native) {
def main = target.compilations["main"]
main.defaultSourceSet {
dependsOn(nativeMain)
}
// For usage of C interop APIs
// See: https://kotlinlang.org/docs/whatsnew19.html#explicit-c-interoperability-stability-guarantees
main.compilerOptions.options.optIn.add("kotlinx.cinterop.ExperimentalForeignApi")
main.cinterops {
sqlite3 {
def externalSQLiteDir = new File(
SdkHelperKt.getCheckoutRoot(project),
"/external/sqlite/dist/orig/"
)
includeDirs(externalSQLiteDir)
}
}
def test = target.compilations["test"]
test.defaultSourceSet {
dependsOn(nativeTest)
}
if (target.konanTarget == KonanTarget.LINUX_X64.INSTANCE) {
// For tests in Linux host, statically include androidx's compiled SQLite
// via a generated C interop definition
createCinteropFromArchiveConfiguration(test, configurations["sqliteSharedArchive"])
} else if (
target.konanTarget == KonanTarget.MACOS_X64.INSTANCE ||
target.konanTarget == KonanTarget.MACOS_ARM64.INSTANCE
) {
// For tests in Mac host, link to shared SQLite library included in MacOS
test.kotlinOptions.freeCompilerArgs += [
"-linker-options", "-lsqlite3"
]
}
}
}
}
}
dependencies {
sqliteSharedArchive(project(":sqlite:sqlite-bundled"))
}
androidx {
name = "SQLite Framework Integration"
publish = Publish.SNAPSHOT_AND_RELEASE
inceptionYear = "2017"
description = "The implementation of SQLite library using the framework code."
metalavaK2UastEnabled = true
}
android {
namespace "androidx.sqlite.driver"
}