build.gradle (1347B)
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 apply plugin: 'com.android.library' 8 apply plugin: 'kotlin-android' 9 10 android { 11 namespace = 'mozilla.components.browser.thumbnails' 12 } 13 14 dependencies { 15 implementation project(':components:browser-state') 16 implementation project(':components:concept-base') 17 implementation project(':components:concept-engine') 18 implementation project(':components:support-images') 19 implementation project(':components:support-ktx') 20 21 implementation libs.androidx.annotation 22 implementation libs.androidx.core.ktx 23 implementation libs.disklrucache 24 implementation libs.kotlinx.coroutines 25 26 testImplementation project(':components:support-test') 27 testImplementation project(':components:support-test-libstate') 28 29 testImplementation libs.androidx.test.core 30 testImplementation libs.androidx.test.junit 31 testImplementation libs.kotlinx.coroutines.test 32 testImplementation libs.robolectric 33 } 34 35 apply from: '../../../common-config.gradle' 36 apply from: '../../../publish.gradle' 37 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)