tor-browser

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

build.gradle (1378B)


      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 apply plugin: 'kotlin-parcelize'
      8 
      9 android {
     10    namespace = 'mozilla.components.concept.engine'
     11 }
     12 
     13 dependencies {
     14    // We expose this as API because we are using Observable in our public API and do not want every
     15    // consumer to have to manually import "base".
     16    api project(':components:support-base')
     17    api project(':components:browser-errorpages')
     18    api project(':components:concept-storage')
     19    api project(':components:concept-fetch')
     20 
     21    implementation project(':components:support-ktx')
     22 
     23    implementation libs.androidx.annotation
     24    implementation libs.androidx.paging
     25    implementation libs.kotlinx.coroutines
     26 
     27    testImplementation project(':components:support-test')
     28    testImplementation project(':components:support-utils')
     29 
     30    testImplementation libs.androidx.test.core
     31    testImplementation libs.androidx.test.junit
     32    testImplementation libs.kotlin.reflect
     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)