mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 12:51:06 +00:00
13b57c569e
Differential Revision: https://phabricator.services.mozilla.com/D85354
12 lines
365 B
Plaintext
12 lines
365 B
Plaintext
# Common options for testing artifact builds in automation.
|
|
|
|
# Enable the artifact build.
|
|
ac_add_options --enable-artifact-builds
|
|
if test -n "$MOZ_ARTIFACT_TASK_WIN32_OPT" -a -n "$MOZ_ENABLE_FULL_SYMBOLS"; then
|
|
ac_add_options --enable-artifact-build-symbols=full
|
|
else
|
|
ac_add_options --enable-artifact-build-symbols
|
|
fi
|
|
|
|
. "$topsrcdir/build/mozconfig.no-compile"
|