1234567891011121314151617181920212223242526272829303132333435363738394041 |
- . $topsrcdir/browser/config/mozconfig
- mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-@CONFIG_GUESS@
- mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
- export MOZILLA_OFFICIAL=1
- # We want to build with clang now and point to the GCC toolchain until #29041 is
- # fixed. We explicitly need to define the host compiler as well as for some
- # reason the gcc-toolchain argument does not get passed along otherwise.
- CC="clang --gcc-toolchain=/var/tmp/dist/gcc"
- CXX="clang++ --gcc-toolchain=/var/tmp/dist/gcc"
- HOST_CC=$CC
- HOST_CXX=$CXX
- export BINDGEN_CFLAGS='
- ac_add_options
- ac_add_options
- ac_add_options
- # Let's support GTK3 for ESR60
- ac_add_options
- ac_add_options
- ac_add_options
- ac_add_options
- ac_add_options
- ac_add_options
- ac_add_options
- ac_add_options
- # Let's make sure no preference is enabling either Adobe's or Google's CDM.
- ac_add_options
- ac_add_options
- # Bug 31448: ld.gold fails if we don't disable debug-symbols
- ac_add_options
- # Disable telemetry
- ac_add_options MOZ_TELEMETRY_REPORTING=
|