mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 18:12:13 +08:00
60 lines
2.1 KiB
Bash
60 lines
2.1 KiB
Bash
# There multiple default mozconfigs in the soruce tree with references across directories
|
|
# $topsrcdir/build/unix/mozconfig.gtk
|
|
# $topsrcdir/build/unix/mozconfig.linux
|
|
# $topsrcdir/build/mozconfig.common
|
|
# $topsrcdir/browser/config/mozconfigs/linux64/release
|
|
# $topsrcdir/browser/config/mozconfigs/linux64/common-opt
|
|
# $topsrcdir/browser/config/mozconfig
|
|
# $topsrcdir/build/mozconfig.rust
|
|
# But we intend to mantain our own mozconfig without reference to any of the mozilla upstream configuration to keep it simple
|
|
# This mozconfig would inlcude most of the configurations listed above into one file
|
|
|
|
ac_add_options --prefix=/usr
|
|
ac_add_options --enable-release
|
|
ac_add_options --enable-gold
|
|
ac_add_options --enable-pie
|
|
ac_add_options --enable-rust
|
|
ac_add_options --enable-skia
|
|
|
|
# Release branding
|
|
ac_add_options --enable-application=browser
|
|
ac_add_options --enable-official-branding
|
|
ac_add_options --enable-update-channel=release
|
|
ac_add_options --with-distribution-id=org.chakralinux
|
|
ac_add_options --enable-default-toolkit=cairo-gtk3
|
|
export MOZILLA_OFFICIAL=1
|
|
export MOZ_TELEMETRY_REPORTING=1
|
|
export MOZ_ADDON_SIGNING=1
|
|
export MOZ_REQUIRE_SIGNING=1
|
|
|
|
# System libraries
|
|
ac_add_options --with-system-nspr
|
|
ac_add_options --with-system-nss
|
|
# our icu is too old
|
|
#ac_add_options --with-system-icu
|
|
ac_add_options --with-system-jpeg
|
|
ac_add_options --with-system-zlib
|
|
ac_add_options --with-system-bz2
|
|
ac_add_options --with-system-libevent
|
|
ac_add_options --with-system-libvpx
|
|
ac_add_options --enable-system-hunspell
|
|
ac_add_options --enable-system-sqlite
|
|
ac_add_options --enable-system-ffi
|
|
# system cairo without layers acceleration results in choppy video playback
|
|
#ac_add_options --enable-system-cairo
|
|
ac_add_options --enable-system-pixman
|
|
ac_add_options --disable-libproxy
|
|
|
|
# Features
|
|
ac_add_options --enable-startup-notification
|
|
ac_add_options --disable-gconf
|
|
ac_add_options --disable-updater
|
|
ac_add_options --disable-crashreporter
|
|
|
|
# PGO
|
|
mk_add_options PROFILE_GEN_SCRIPT='EXTRA_TEST_ARGS=10 $(MAKE) -C $(MOZ_OBJDIR) pgo-profile-run'
|
|
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-ff
|
|
STRIP_FLAGS="--strip-debug"
|
|
|
|
# vim:set ft=sh:
|