tor-browser

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

build.gradle (1621B)


      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.toolbar'
     10 }
     11 
     12 dependencies {
     13    api project(':components:concept-toolbar')
     14    api project(':components:support-base')
     15    api project(':components:ui-autocomplete')
     16 
     17    implementation project(':components:browser-menu')
     18    implementation project(':components:browser-menu2')
     19    implementation project(':components:concept-engine')
     20    implementation project(':components:concept-menu')
     21    implementation project(':components:ui-colors')
     22    implementation project(':components:ui-icons')
     23    implementation project(':components:ui-widgets')
     24    implementation project(':components:support-ktx')
     25    implementation project(':components:support-utils')
     26 
     27    implementation libs.androidx.appcompat
     28    implementation libs.androidx.constraintlayout
     29    implementation libs.androidx.core.ktx
     30    implementation libs.google.material
     31    implementation libs.kotlinx.coroutines
     32 
     33    testImplementation project(':components:support-test')
     34 
     35    testImplementation libs.androidx.test.core
     36    testImplementation libs.androidx.test.junit
     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)