Files
IronFox/paths.sh
relan cff4cc4e90 Use microG for WebAuthn support in Gecko
Also drop Ads Identifier library dummy to avoid a conflict between
microG library and this dummy.

WebAuthn will work only if microG Service Core is installed on the
device! It will not work with Google Services because Google requires
a cumbersome registration of an app before they allow it to use
WebAuthn API in GMS.

See https://microg.org for more info on microG.
2023-12-15 13:52:00 +03:00

31 lines
1.3 KiB
Bash

#!/bin/bash
#
# Fennec build scripts
# Copyright (C) 2020-2022 Andrew Nayenko
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
readonly patches=$(dirname "$(realpath "$0")")
readonly android_components_as=$(realpath ../srclib/FirefoxAndroidAS/android-components)
readonly android_components=$(realpath ./android-components)
readonly application_services=$(realpath ../srclib/MozAppServices)
readonly glean_as=$(realpath ../srclib/MozGleanAS)
readonly glean=$(realpath ../srclib/MozGlean)
readonly fenix=$(realpath ./fenix)
readonly mozilla_release=$(realpath ../srclib/MozFennec)
readonly rustup=$(realpath ../srclib/rustup)
readonly wasi=$(realpath ../srclib/wasi-sdk)
readonly gmscore=$(realpath ../srclib/gmscore)