blob: b2b12d0faf50eb413859bb7cc6f8cb8b2918c812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# 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"
|