tor-browser

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

64_add-on-devel.py (847B)


      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 import os
      6 
      7 config = {
      8    "default_actions": [
      9        "clobber",
     10        "build",
     11    ],
     12    "stage_platform": "win64-add-on-devel",
     13    #### 64 bit build specific #####
     14    "env": {
     15        "HG_SHARE_BASE_DIR": "C:/builds/hg-shared",
     16        "MOZ_CRASHREPORTER_NO_REPORT": "1",
     17        "MOZ_OBJDIR": "%(abs_obj_dir)s",
     18        "PATH": "C:/mozilla-build/python27;%s" % (os.environ.get("path")),
     19        "TINDERBOX_OUTPUT": "1",
     20        "XPCOM_DEBUG_BREAK": "stack-and-abort",
     21        "TOOLTOOL_CACHE": "c:/builds/tooltool_cache",
     22        "TOOLTOOL_HOME": "/c/builds",
     23    },
     24    "mozconfig_variant": "add-on-devel",
     25    #######################
     26 }