Bug 1804258 - New SearchTermSuggestionsProvider
[gecko.git] / mobile / android / android-components / components / feature / awesomebar / build.gradle
blob9deb0b72ee4d884d1e4578a5e7214fa13553e3b5
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/. */
5 apply plugin: 'com.android.library'
6 apply plugin: 'kotlin-android'
8 android {
9     compileSdkVersion config.compileSdkVersion
11     defaultConfig {
12         minSdkVersion config.minSdkVersion
13         targetSdkVersion config.targetSdkVersion
14     }
16     buildTypes {
17         release {
18             minifyEnabled false
19             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
20         }
21     }
24 dependencies {
25     implementation project(':concept-awesomebar')
26     implementation project(':concept-fetch')
27     implementation project(':concept-engine')
28     implementation project(':concept-toolbar')
29     implementation project(':concept-storage')
31     implementation project(':browser-state')
32     implementation project(':browser-storage-sync')
33     implementation project(':browser-icons')
35     implementation project(':feature-tabs')
36     implementation project(':feature-session')
37     implementation project(':feature-search')
39     implementation project(':support-ktx')
40     implementation project(':support-utils')
42     implementation project(':ui-icons')
44     implementation Dependencies.androidx_core_ktx
45     implementation Dependencies.kotlin_stdlib
47     testImplementation project(':support-test')
48     testImplementation project(':lib-fetch-httpurlconnection')
50     testImplementation Dependencies.androidx_test_core
51     testImplementation Dependencies.androidx_test_junit
52     testImplementation Dependencies.testing_robolectric
53     testImplementation Dependencies.testing_mockito
54     testImplementation Dependencies.testing_mockwebserver
55     testImplementation Dependencies.testing_coroutines
58 apply from: '../../../android-lint.gradle'
59 apply from: '../../../publish.gradle'
60 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)