orfox / mozconfig_template @ d3fb863b
History | View | Annotate | Download (1.19 KB)
1 |
# Build Fennec |
---|---|
2 |
ac_add_options --enable-application=mobile/android |
3 |
|
4 |
# Android |
5 |
ac_add_options --target=arm-linux-androideabi |
6 |
ac_add_options --with-android-ndk="$NDK_BASE" #Enter the android ndk location(ndk r8e) |
7 |
ac_add_options --with-android-sdk="$SDK_BASE/platforms/android-17" #Enter the android sdk location |
8 |
|
9 |
|
10 |
ac_add_options --with-ccache #enable ccache to set amount of cache assigned for build. |
11 |
ac_add_options --disable-unified-compilation |
12 |
|
13 |
# OBJDIR |
14 |
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-tbb-@CONFIG_GUESS@ |
15 |
# It is a good idea to have your objdir name start with obj so that Git ignores it. |
16 |
|
17 |
|
18 |
# Tor Browser Specific flags |
19 |
mk_add_options MOZ_MAKE_FLAGS="-j4" |
20 |
ac_add_options --enable-optimize |
21 |
#ac_add_options --disable-optimize |
22 |
ac_add_options --enable-official-branding |
23 |
#ac_add_options --enable-tor-browser-update |
24 |
#ac_add_options --enable-update-packaging |
25 |
ac_add_options --enable-signmar |
26 |
ac_add_options --enable-verify-mar |
27 |
#ac_add_options --disable-strip |
28 |
#ac_add_options --disable-install-strip |
29 |
ac_add_options --disable-tests |
30 |
ac_add_options --disable-debug |
31 |
ac_add_options --disable-maintenance-service |
32 |
ac_add_options --disable-crashreporter |
33 |
ac_add_options --disable-webrtc |
34 |
#ac_add_options --disable-ctypes |
35 |
|