tor-browser

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

nightly-android-lints (978B)


      1 # Many things aren't appropriate for a frontend-only build.
      2 MOZ_AUTOMATION_BUILD_SYMBOLS=0
      3 MOZ_AUTOMATION_PACKAGE=0
      4 MOZ_AUTOMATION_UPLOAD=0
      5 MOZ_AUTOMATION_PACKAGE_GENERATED_SOURCES=0
      6 
      7 NO_CACHE=1
      8 NO_NDK=1
      9 
     10 . "$topsrcdir/mobile/android/config/mozconfigs/common"
     11 
     12 . "$topsrcdir/build/mozconfig.no-compile"
     13 
     14 ac_add_options --disable-tests
     15 
     16 # From here on, like ../android-arm/nightly.
     17 
     18 # Android
     19 ac_add_options --target=arm-linux-androideabi
     20 
     21 ac_add_options --with-branding=mobile/android/branding/nightly
     22 
     23 export MOZILLA_OFFICIAL=1
     24 
     25 # mozconfigs/common.override would be here, but it needs to be last in the file.
     26 # End ../android-arm/nightly.
     27 
     28 # Disable Keyfile Loading (and checks) since.
     29 # This overrides the settings in the common android mozconfig
     30 ac_add_options --without-mozilla-api-keyfile
     31 ac_add_options --without-google-location-service-api-keyfile
     32 ac_add_options --without-google-safebrowsing-api-keyfile
     33 
     34 . "$topsrcdir/mobile/android/config/mozconfigs/common.override"