зеркало из https://github.com/mozilla/gecko-dev.git
34 строки
1.2 KiB
Bash
34 строки
1.2 KiB
Bash
# 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/.
|
|
|
|
MOZ_APP_VENDOR=Mozilla
|
|
|
|
MOZ_APP_UA_NAME=Firefox
|
|
|
|
BROWSER_CHROME_URL=chrome://browser/content/browser.xul
|
|
|
|
MOZ_BRANDING_DIRECTORY=mobile/android/branding/unofficial
|
|
MOZ_OFFICIAL_BRANDING_DIRECTORY=mobile/android/branding/official
|
|
# MOZ_APP_DISPLAYNAME is set by branding/configure.sh
|
|
|
|
# We support Android SDK version 21 and up by default (16 in lite mode).
|
|
# See the --enable-android-min-sdk and --enable-android-max-sdk arguments in configure.in.
|
|
#
|
|
# Warning: Before increasing the with-android-min-sdk value, please note several places in and out
|
|
# of tree have to be changed. Otherwise, places like Treeherder or archive.mozilla.org will
|
|
# advertise a bad API level. This may confuse people. As an example, please look at bug 1384482.
|
|
# If you think you can't handle the whole set of changes, please reach out to the Release
|
|
# Engineering team.
|
|
if test "$MOZ_ANDROID_GECKOVIEW_LITE"; then
|
|
MOZ_ANDROID_MIN_SDK_VERSION=16
|
|
else
|
|
MOZ_ANDROID_MIN_SDK_VERSION=21
|
|
fi
|
|
|
|
MOZ_NO_SMART_CARDS=1
|
|
|
|
MOZ_RAW=1
|
|
|
|
MOZ_APP_ID={aa3c5121-dab2-40e2-81ca-7ea25febc110}
|