tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

build.gradle (1322B)


      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.browser.storage.sync.autofill'
     10 }
     11 
     12 dependencies {
     13    api ComponentsDependencies.mozilla_appservices_autofill
     14 
     15    api project(':components:concept-base')
     16    api project(':components:concept-storage')
     17    api project(':components:concept-sync')
     18    api project(':components:lib-dataprotect')
     19 
     20    implementation project(':components:support-ktx')
     21    implementation project(':components:support-utils')
     22 
     23    testImplementation project(':components:support-test')
     24 
     25    testImplementation ComponentsDependencies.mozilla_appservices_full_megazord_libsForTests
     26    testImplementation ComponentsDependencies.mozilla_appservices_init_rust_components
     27    testImplementation libs.androidx.test.core
     28    testImplementation libs.androidx.test.junit
     29    testImplementation libs.kotlinx.coroutines.test
     30    testImplementation libs.robolectric
     31 }
     32 
     33 apply from: '../../../common-config.gradle'
     34 apply from: '../../../publish.gradle'
     35 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)