build.gradle (1886B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 import org.jetbrains.kotlin.gradle.tasks.KotlinCompile 6 7 8 apply plugin: 'com.android.library' 9 apply plugin: 'kotlin-android' 10 11 android { 12 namespace = 'mozilla.components.feature.customtabs' 13 } 14 15 dependencies { 16 api libs.androidx.browser 17 18 implementation project(':components:browser-menu') 19 implementation project(':components:browser-state') 20 implementation project(':components:browser-toolbar') 21 implementation project(':components:concept-engine') 22 implementation project(':components:concept-fetch') 23 implementation project(':components:concept-menu') 24 implementation project(':components:feature-intent') 25 implementation project(':components:feature-session') 26 implementation project(':components:feature-tabs') 27 implementation project(':components:service-digitalassetlinks') 28 implementation project(':components:support-base') 29 implementation project(':components:support-ktx') 30 implementation project(':components:support-utils') 31 implementation project(':components:ui-icons') 32 33 implementation libs.androidx.core.ktx 34 implementation libs.kotlinx.coroutines 35 36 testImplementation project(':components:support-test') 37 testImplementation project(':components:support-test-libstate') 38 testImplementation testFixtures(project(':components:concept-toolbar')) 39 40 testImplementation libs.androidx.test.core 41 testImplementation libs.androidx.test.junit 42 testImplementation libs.kotlinx.coroutines.test 43 testImplementation libs.robolectric 44 } 45 46 apply from: '../../../common-config.gradle' 47 apply from: '../../../publish.gradle' 48 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)