browser(firefox): disable background tasks and updater for firefox (#8773)

References #8536
This commit is contained in:
Andrey Lushnikov 2021-09-08 16:15:22 +03:00 committed by GitHub
parent 32ea4f542b
commit 06b69f6a97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 4 deletions

View File

@ -1,2 +1,2 @@
1289
Changed: max@schmitt.mx Mon 6 Sep 2021 16:30:50 CEST
1290
Changed: aslushhnikov@gmail.com Wed 08 Sep 2021 05:57:14 AM PDT

View File

@ -81,6 +81,12 @@ fi
OBJ_FOLDER="obj-build-playwright"
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/${OBJ_FOLDER}" >> .mozconfig
echo "ac_add_options --disable-crashreporter" >> .mozconfig
echo "ac_add_options --disable-backgroundtasks" >> .mozconfig
if [[ "$(uname)" == MINGW* || "$(uname)" == "Darwin" ]]; then
# This options is only available on win and mac.
echo "ac_add_options --disable-update-agent" >> .mozconfig
fi
if [[ $1 != "--juggler" ]]; then
# TODO: rustup is not in the PATH on Windows

View File

@ -1,2 +1,2 @@
1292
Changed: max@schmitt.mx Mon 6 Sep 2021 16:30:50 CEST
1293
Changed: aslushhnikov@gmail.com Wed 08 Sep 2021 05:57:14 AM PDT

View File

@ -81,6 +81,12 @@ fi
OBJ_FOLDER="obj-build-playwright"
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/${OBJ_FOLDER}" >> .mozconfig
echo "ac_add_options --disable-crashreporter" >> .mozconfig
echo "ac_add_options --disable-backgroundtasks" >> .mozconfig
if [[ "$(uname)" == MINGW* || "$(uname)" == "Darwin" ]]; then
# This options is only available on win and mac.
echo "ac_add_options --disable-update-agent" >> .mozconfig
fi
if [[ $1 != "--juggler" ]]; then
# TODO: rustup is not in the PATH on Windows