# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import os

config = {
    #########################################################################
    ######## ANDROID GENERIC CONFIG KEYS/VAlUES
    # note: overridden by MOZHARNESS_ACTIONS in TaskCluster tasks
    "default_actions": [
        "build",
        "multi-l10n",
    ],
    "secret_files": [
        {
            "filename": "/builds/sb-gapi.data",
            "secret_name": "project/releng/gecko/build/level-%(scm-level)s/sb-gapi.data",
            "min_scm_level": 1,
        },
        {
            "filename": "/builds/mozilla-fennec-geoloc-api.key",
            "secret_name": "project/releng/gecko/build/level-%(scm-level)s/mozilla-fennec-geoloc-api.key",
            "min_scm_level": 2,
            "default": "try-build-has-no-secrets",
        },
    ],
    "vcs_share_base": "/builds/hg-shared",
    "multi_locale": True,
    "upload_env": {
        "UPLOAD_PATH": "/builds/worker/artifacts",
    },
    #########################################################################
    #########################################################################
    "platform": "android",
    "stage_platform": "android",
    "enable_max_vsize": False,
    "env": {
        "MOZBUILD_STATE_PATH": os.path.join(os.getcwd(), ".mozbuild"),
        "DISPLAY": ":2",
        "HG_SHARE_BASE_DIR": "/builds/hg-shared",
        "MOZ_OBJDIR": "%(abs_obj_dir)s",
        "TINDERBOX_OUTPUT": "1",
        "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache",
        "TOOLTOOL_HOME": "/builds",
        "LC_ALL": "C",
        "PATH": "/usr/local/bin:/bin:/usr/bin",
        "SHIP_LICENSED_FONTS": "1",
    },
    "app_name": "mobile/android",
    # Bug 1583594: GeckoView doesn't (yet) produce have a package file
    # from which to extract package metrics.
    "disable_package_metrics": True,
    #########################################################################
}
