tor-browser

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

build.gradle (1620B)


      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 
      6 import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
      7 
      8 apply plugin: 'com.android.library'
      9 apply plugin: 'kotlin-android'
     10 
     11 android {
     12    namespace = 'mozilla.components.feature.accounts.push'
     13 }
     14 
     15 dependencies {
     16    implementation project(':components:browser-state')
     17    implementation project(':components:concept-push')
     18    implementation project(':components:feature-push')
     19    implementation project(':components:service-firefox-accounts')
     20    implementation project(':components:support-ktx')
     21    implementation project(':components:support-base')
     22 
     23    implementation libs.androidx.lifecycle.process
     24    implementation libs.androidx.work.runtime
     25    implementation libs.kotlinx.coroutines
     26 
     27    testImplementation project(':components:concept-engine')
     28    testImplementation project(':components:support-test')
     29    testImplementation project(':components:support-test-libstate')
     30 
     31    testImplementation libs.androidx.test.core
     32    testImplementation libs.androidx.test.junit
     33    testImplementation platform(libs.junit.bom)
     34    testImplementation libs.junit4
     35    testRuntimeOnly libs.junit.platform.launcher
     36    testRuntimeOnly libs.junit.vintage
     37    testImplementation libs.kotlinx.coroutines.test
     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)