mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
851ab5ec78
Differential Revision: https://phabricator.services.mozilla.com/D24449
12 lines
366 B
Plaintext
12 lines
366 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 -z "$MOZ_DISABLE_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"
|