tor-browser

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

build.gradle (1413B)


      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 apply plugin: 'com.google.devtools.ksp'
     10 
     11 android {
     12    namespace = 'mozilla.components.feature.app.links'
     13 }
     14 
     15 dependencies {
     16    implementation project(':components:browser-state')
     17    implementation project(':components:concept-engine')
     18    implementation project(':components:support-base')
     19    implementation project(':components:support-ktx')
     20    implementation project(':components:support-utils')
     21    implementation project(':components:feature-session')
     22    implementation project(':components:ui-widgets')
     23 
     24    implementation libs.kotlinx.coroutines
     25    implementation libs.google.material
     26 
     27    testImplementation project(':components:support-test')
     28    testImplementation project(':components:support-test-libstate')
     29 
     30    testImplementation libs.androidx.test.core
     31    testImplementation libs.androidx.test.junit
     32    testImplementation libs.kotlinx.coroutines.test
     33    testImplementation libs.robolectric
     34 }
     35 
     36 apply from: '../../../common-config.gradle'
     37 apply from: '../../../publish.gradle'
     38 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)