tor-browser

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

build.gradle (1526B)


      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 plugins {
      6    alias(libs.plugins.kotlin.android)
      7    alias(libs.plugins.kotlin.compose)
      8 }
      9 
     10 apply plugin: 'com.android.library'
     11 
     12 android {
     13    buildFeatures {
     14        viewBinding = true
     15    }
     16 
     17    namespace = 'mozilla.components.ui.tabcounter'
     18 }
     19 
     20 dependencies {
     21    implementation project(':components:browser-menu2')
     22    implementation project(':components:compose-base')
     23    implementation project(':components:concept-menu')
     24    implementation project(':components:support-base')
     25    implementation project(':components:support-ktx')
     26    implementation project(':components:support-utils')
     27    implementation project(':components:ui-colors')
     28    implementation project(':components:ui-icons')
     29 
     30    implementation platform(libs.androidx.compose.bom)
     31    implementation libs.androidx.compose.foundation
     32    implementation libs.androidx.compose.material3
     33    implementation libs.androidx.compose.ui
     34    implementation libs.androidx.compose.ui.tooling.preview
     35    implementation libs.androidx.core.ktx
     36 
     37    testImplementation project(":components:support-test")
     38 
     39    testImplementation libs.androidx.test.junit
     40    testImplementation libs.robolectric
     41 }
     42 
     43 apply from: '../../../common-config.gradle'
     44 apply from: '../../../publish.gradle'
     45 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)