build.gradle (1792B)
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 apply plugin: 'com.android.library' 6 apply plugin: 'kotlin-android' 7 8 android { 9 namespace = 'mozilla.components.feature.awesomebar' 10 } 11 12 dependencies { 13 implementation project(':components:browser-icons') 14 implementation project(':components:browser-state') 15 implementation project(':components:browser-storage-sync') 16 implementation project(':components:concept-awesomebar') 17 implementation project(':components:concept-engine') 18 implementation project(':components:concept-fetch') 19 implementation project(':components:concept-storage') 20 implementation project(':components:concept-toolbar') 21 implementation project(':components:feature-search') 22 implementation project(':components:feature-session') 23 implementation project(':components:feature-tabs') 24 implementation project(':components:feature-top-sites') 25 implementation project(':components:support-ktx') 26 implementation project(':components:support-utils') 27 implementation project(':components:ui-icons') 28 29 implementation libs.androidx.core.ktx 30 31 testImplementation project(':components:lib-fetch-httpurlconnection') 32 testImplementation project(':components:support-test') 33 34 testImplementation libs.androidx.test.core 35 testImplementation libs.androidx.test.junit 36 testImplementation libs.kotlinx.coroutines.test 37 testImplementation libs.mockwebserver 38 testImplementation libs.robolectric 39 } 40 41 apply from: '../../../common-config.gradle' 42 apply from: '../../../publish.gradle' 43 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)