tor-browser

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

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


      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    "stage_platform": "linux64-add-on-devel",
      9    #### 64 bit build specific #####
     10    "env": {
     11        "MOZBUILD_STATE_PATH": os.path.join(os.getcwd(), ".mozbuild"),
     12        "HG_SHARE_BASE_DIR": "/builds/hg-shared",
     13        "MOZ_OBJDIR": "%(abs_obj_dir)s",
     14        "TINDERBOX_OUTPUT": "1",
     15        "TOOLTOOL_CACHE": "/builds/tooltool_cache",
     16        "TOOLTOOL_HOME": "/builds",
     17        "MOZ_CRASHREPORTER_NO_REPORT": "1",
     18        "LC_ALL": "C",
     19        ## 64 bit specific
     20        "PATH": "/builds/worker/workspace/build/src/gcc/bin:/usr/local/bin:/bin:\
     21 /usr/bin:/usr/local/sbin:/usr/sbin:/sbin",
     22    },
     23    #######################
     24 }