tor-browser

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

moz.configure (668B)


      1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
      2 # vim: set filetype=python:
      3 # This Source Code Form is subject to the terms of the Mozilla Public
      4 # License, v. 2.0. If a copy of the MPL was not distributed with this
      5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      6 
      7 imply_option("MOZ_GECKOVIEW_HISTORY", True)
      8 
      9 imply_option("MOZ_APP_VENDOR", "Mozilla")
     10 imply_option("MOZ_APP_ID", "{8e3ba928-3798-4bcd-9b64-c788f2d954d3}")
     11 
     12 
     13 @depends(target)
     14 def check_target(target):
     15     if target.os != "iOS":
     16         die("Cannot build mobile/ios with a target other than an iOS one")
     17 
     18 
     19 include("../shared/moz.configure")
     20 include("../../toolkit/moz.configure")