tor-browser

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

build.gradle (1528B)


      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 
     10 android {
     11    namespace = 'mozilla.components.support.ktx'
     12 }
     13 
     14 dependencies {
     15    implementation project(':components:lib-publicsuffixlist')
     16    implementation project(':components:support-base')
     17    implementation project(':components:support-utils')
     18 
     19    implementation libs.androidx.core
     20    implementation libs.androidx.core.ktx
     21    implementation libs.kotlinx.coroutines
     22 
     23    testImplementation project(':components:support-test')
     24    testImplementation project(':components:support-test-fakes')
     25 
     26    testImplementation libs.androidx.test.core
     27    testImplementation libs.androidx.test.junit
     28    testImplementation libs.kotlin.reflect
     29    testImplementation libs.kotlinx.coroutines.test
     30    testImplementation libs.robolectric
     31 
     32    androidTestImplementation project(':components:support-android-test')
     33 
     34    androidTestImplementation libs.androidx.test.core
     35    androidTestImplementation libs.androidx.test.junit
     36    androidTestImplementation libs.androidx.test.rules
     37    androidTestImplementation libs.androidx.test.runner
     38 }
     39 
     40 apply from: '../../../common-config.gradle'
     41 apply from: '../../../publish.gradle'
     42 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)