2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2016-03-08 04:49:35 +00:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2016-03-09 06:59:39 +00:00
|
|
|
|
2016-03-17 06:56:23 +00:00
|
|
|
|
|
|
|
# Profiling
|
|
|
|
# ==============================================================
|
|
|
|
# Some of the options here imply an option from js/moz.configure,
|
|
|
|
# so, need to be declared before the include.
|
|
|
|
option('--enable-systrace', env='MOZ_USE_SYSTRACE',
|
|
|
|
help='Turn on systrace for the Gecko profiler on android/b2g')
|
|
|
|
|
|
|
|
@depends('--enable-systrace', target)
|
|
|
|
def systrace(value, target):
|
|
|
|
if value and target.os != 'Android':
|
2016-03-25 06:48:21 +00:00
|
|
|
die('--enable-systrace cannot be used when targeting %s',
|
|
|
|
target.os)
|
2016-03-17 06:56:23 +00:00
|
|
|
if value:
|
2016-03-23 01:22:08 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
set_define('MOZ_USE_SYSTRACE', systrace)
|
2016-03-17 06:56:23 +00:00
|
|
|
|
|
|
|
|
2016-03-17 07:05:10 +00:00
|
|
|
option('--enable-jprof', env='MOZ_JPROF',
|
|
|
|
help='Enable jprof profiling tool (needs mozilla/tools/jprof)')
|
|
|
|
|
|
|
|
@depends('--enable-jprof')
|
|
|
|
def jprof(value):
|
|
|
|
if value:
|
2016-03-22 05:21:32 +00:00
|
|
|
return True
|
2016-03-17 07:05:10 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_JPROF', jprof)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_JPROF', jprof)
|
2016-03-23 05:18:57 +00:00
|
|
|
imply_option('--enable-profiling', jprof)
|
2016-03-17 07:05:10 +00:00
|
|
|
|
2016-03-17 07:08:53 +00:00
|
|
|
@depends(target)
|
|
|
|
def sps_profiler(target):
|
|
|
|
if target.os == 'Android':
|
|
|
|
return target.cpu in ('arm', 'x86')
|
|
|
|
elif target.kernel == 'Linux':
|
|
|
|
return target.cpu in ('x86', 'x86_64')
|
|
|
|
return target.os in ('OSX', 'WINNT')
|
|
|
|
|
|
|
|
@depends(sps_profiler)
|
|
|
|
def sps_profiler_define(value):
|
|
|
|
if value:
|
2016-03-22 05:21:32 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
set_config('MOZ_ENABLE_PROFILER_SPS', sps_profiler_define)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_ENABLE_PROFILER_SPS', sps_profiler_define)
|
2016-03-17 07:08:53 +00:00
|
|
|
|
|
|
|
|
2016-03-17 07:22:18 +00:00
|
|
|
option('--enable-dmd', env='MOZ_DMD',
|
|
|
|
help='Enable Dark Matter Detector (heap profiler). '
|
|
|
|
'Also enables jemalloc, replace-malloc and profiling')
|
|
|
|
|
|
|
|
@depends('--enable-dmd')
|
|
|
|
def dmd(value):
|
|
|
|
if value:
|
2016-03-22 05:21:32 +00:00
|
|
|
return True
|
2016-03-17 07:22:18 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_DMD', dmd)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_DMD', dmd)
|
2016-03-23 07:34:59 +00:00
|
|
|
add_old_configure_assignment('MOZ_DMD', dmd)
|
2016-03-23 05:18:57 +00:00
|
|
|
imply_option('--enable-profiling', dmd)
|
2016-04-14 08:07:57 +00:00
|
|
|
imply_option('--enable-jemalloc', dmd)
|
2016-04-14 09:55:01 +00:00
|
|
|
imply_option('--enable-replace-malloc', dmd)
|
2016-03-17 07:22:18 +00:00
|
|
|
|
2016-07-18 11:28:39 +00:00
|
|
|
# JACK cubeb backend
|
|
|
|
# ==============================================================
|
|
|
|
option('--enable-jack', env='MOZ_JACK',
|
|
|
|
help='Enable JACK audio backend.')
|
|
|
|
|
|
|
|
@depends('--enable-jack')
|
|
|
|
def jack(value):
|
|
|
|
if value:
|
|
|
|
return True
|
|
|
|
|
|
|
|
set_config('MOZ_JACK', jack)
|
|
|
|
set_define('MOZ_JACK', jack)
|
|
|
|
|
2016-03-17 06:56:23 +00:00
|
|
|
# Javascript engine
|
|
|
|
# ==============================================================
|
2016-03-09 06:59:39 +00:00
|
|
|
include('../js/moz.configure')
|
2016-03-16 04:10:54 +00:00
|
|
|
|
|
|
|
|
2016-03-16 23:38:52 +00:00
|
|
|
# L10N
|
|
|
|
# ==============================================================
|
|
|
|
option('--with-l10n-base', nargs=1, env='L10NBASEDIR',
|
|
|
|
help='Path to l10n repositories')
|
|
|
|
|
|
|
|
@depends('--with-l10n-base')
|
|
|
|
def l10n_base(value):
|
|
|
|
if value:
|
|
|
|
path = value[0]
|
|
|
|
if not os.path.isdir(path):
|
2016-03-25 06:48:21 +00:00
|
|
|
die("Invalid value --with-l10n-base, %s doesn't exist", path)
|
2016-03-22 05:21:32 +00:00
|
|
|
return os.path.realpath(os.path.abspath(path))
|
2016-03-16 23:38:52 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('L10NBASEDIR', l10n_base)
|
2016-03-16 23:38:52 +00:00
|
|
|
|
|
|
|
|
2016-03-16 04:10:54 +00:00
|
|
|
# Default toolkit
|
|
|
|
# ==============================================================
|
|
|
|
# Normally, we'd want to use the `default` field on the option, but that
|
|
|
|
# requires --target to be resolved at --help time, which requires to run
|
|
|
|
# config.guess, which we want to avoid. Even better, we could actually set
|
|
|
|
# `choices` depending on the target, but that doesn't pan out for the same
|
|
|
|
# reason.
|
|
|
|
option('--enable-default-toolkit', nargs=1,
|
|
|
|
choices=('cairo-windows', 'cairo-gtk2', 'cairo-gtk2-x11', 'cairo-gtk3',
|
2016-07-07 16:14:25 +00:00
|
|
|
'cairo-cocoa', 'cairo-uikit', 'cairo-android',
|
2016-03-16 04:10:54 +00:00
|
|
|
'cairo-gonk'),
|
|
|
|
help='Select default toolkit')
|
|
|
|
|
2016-04-02 00:55:34 +00:00
|
|
|
@depends('--enable-default-toolkit', target)
|
|
|
|
def toolkit(value, target):
|
2016-03-16 04:10:54 +00:00
|
|
|
# Define possible choices for each platform. The default is the first one
|
|
|
|
# listed when there are several.
|
|
|
|
os = target.os
|
|
|
|
if target.os == 'WINNT':
|
|
|
|
platform_choices = ('cairo-windows',)
|
|
|
|
elif target.os == 'OSX':
|
|
|
|
platform_choices = ('cairo-cocoa',)
|
|
|
|
elif target.os == 'iOS':
|
|
|
|
platform_choices = ('cairo-uikit',)
|
|
|
|
elif target.os == 'Android':
|
2016-04-02 00:55:34 +00:00
|
|
|
if value.origin == 'implied':
|
|
|
|
# Trust values coming from imply_option() (used in
|
|
|
|
# b2g/moz.configure).
|
|
|
|
platform_choices = tuple(value)
|
2016-03-16 04:10:54 +00:00
|
|
|
else:
|
|
|
|
platform_choices = ('cairo-android',)
|
|
|
|
else:
|
2016-07-07 16:14:25 +00:00
|
|
|
platform_choices = ('cairo-gtk3', 'cairo-gtk2', 'cairo-gtk2-x11')
|
2016-03-16 04:10:54 +00:00
|
|
|
|
|
|
|
if value:
|
|
|
|
if value[0] not in platform_choices:
|
2016-03-25 06:48:21 +00:00
|
|
|
die('`%s` is not a valid value for --enable-default-toolkit on %s\n'
|
|
|
|
'Valid values: %s', value[0], os, ', '.join(platform_choices))
|
2016-03-16 04:10:54 +00:00
|
|
|
return value[0]
|
|
|
|
|
|
|
|
return platform_choices[0]
|
|
|
|
|
|
|
|
|
|
|
|
@depends(toolkit)
|
|
|
|
def toolkit(toolkit):
|
|
|
|
if toolkit == 'cairo-gtk2-x11':
|
|
|
|
widget_toolkit = 'gtk2'
|
|
|
|
else:
|
|
|
|
widget_toolkit = toolkit.replace('cairo-', '')
|
|
|
|
return widget_toolkit
|
2016-03-16 05:56:24 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_WIDGET_TOOLKIT', toolkit)
|
2016-03-23 07:34:59 +00:00
|
|
|
add_old_configure_assignment('MOZ_WIDGET_TOOLKIT', toolkit)
|
2016-03-22 05:21:32 +00:00
|
|
|
|
2016-03-23 01:22:08 +00:00
|
|
|
@depends(toolkit)
|
|
|
|
def toolkit_gtk(toolkit):
|
|
|
|
if toolkit == 'gtk2':
|
|
|
|
return '2'
|
|
|
|
elif toolkit == 'gtk3':
|
|
|
|
return '3'
|
|
|
|
|
|
|
|
set_define('MOZ_WIDGET_GTK', toolkit_gtk)
|
|
|
|
|
|
|
|
@depends(toolkit)
|
|
|
|
def toolkit_define(toolkit):
|
|
|
|
if toolkit not in ('gtk2', 'gtk3', 'windows'):
|
|
|
|
return 'MOZ_WIDGET_%s' % toolkit.upper()
|
|
|
|
|
|
|
|
set_define(toolkit_define, True)
|
|
|
|
|
2016-03-16 05:56:24 +00:00
|
|
|
|
|
|
|
option('--without-x', env='WITHOUT_X', help='Disable X11 support')
|
|
|
|
|
|
|
|
@depends('--without-x', toolkit)
|
|
|
|
def x11(value, toolkit):
|
2016-07-07 16:14:25 +00:00
|
|
|
if not value:
|
|
|
|
die('--without-x is not supported')
|
2016-03-16 05:56:24 +00:00
|
|
|
|
2016-07-07 16:14:25 +00:00
|
|
|
x11_toolkits = ('gtk2', 'gtk3')
|
2016-03-16 05:56:24 +00:00
|
|
|
if value and value.origin != 'default' and toolkit not in x11_toolkits:
|
2016-03-25 06:48:21 +00:00
|
|
|
die('--with-x is only valid with --enable-default-toolkit={%s}',
|
|
|
|
','.join(x11_toolkits))
|
2016-03-16 05:56:24 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
return True if value and toolkit in x11_toolkits else None
|
2016-03-16 06:14:20 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_ENABLE_XREMOTE', x11)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_ENABLE_XREMOTE', x11)
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_X11', x11)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_X11', x11)
|
2016-03-23 07:34:59 +00:00
|
|
|
add_old_configure_assignment('MOZ_X11', x11)
|
2016-03-16 06:14:20 +00:00
|
|
|
|
|
|
|
# GL Provider
|
|
|
|
# ==============================================================
|
|
|
|
option('--with-gl-provider', nargs=1, help='Set GL provider backend type')
|
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
@depends('--with-gl-provider')
|
|
|
|
def gl_provider(value):
|
2016-03-16 06:14:20 +00:00
|
|
|
if value:
|
2016-03-23 01:22:08 +00:00
|
|
|
return value[0]
|
|
|
|
|
|
|
|
@depends(gl_provider)
|
|
|
|
def gl_provider_define(provider):
|
|
|
|
if provider:
|
|
|
|
return 'GLContextProvider%s' % provider
|
|
|
|
|
|
|
|
set_define('MOZ_GL_PROVIDER', gl_provider_define)
|
2016-03-22 05:21:32 +00:00
|
|
|
|
|
|
|
@depends(gl_provider, x11)
|
|
|
|
def gl_default_provider(value, x11):
|
|
|
|
if value:
|
|
|
|
return value
|
2016-03-16 06:14:20 +00:00
|
|
|
elif x11:
|
2016-03-22 05:21:32 +00:00
|
|
|
return 'GLX'
|
2016-03-16 07:10:40 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_GL_PROVIDER', gl_provider)
|
|
|
|
set_config('MOZ_GL_DEFAULT_PROVIDER', gl_default_provider)
|
2016-03-16 07:10:40 +00:00
|
|
|
|
2016-03-23 01:22:08 +00:00
|
|
|
@depends(gl_default_provider)
|
|
|
|
def gl_provider_define(provider):
|
|
|
|
if provider:
|
|
|
|
return 'GL_PROVIDER_%s' % provider
|
|
|
|
|
|
|
|
set_define(gl_provider_define, True)
|
|
|
|
|
|
|
|
|
2016-03-16 07:10:40 +00:00
|
|
|
# PDF printing
|
|
|
|
# ==============================================================
|
|
|
|
@depends(toolkit)
|
|
|
|
def pdf_printing(toolkit):
|
2016-07-07 16:14:25 +00:00
|
|
|
if toolkit in ('windows', 'gtk2', 'gtk3', 'android', 'gonk'):
|
2016-03-22 05:21:32 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
@depends(pdf_printing)
|
|
|
|
def pdf_surface_feature(pdf_printing):
|
|
|
|
if pdf_printing:
|
|
|
|
return '#define CAIRO_HAS_PDF_SURFACE 1'
|
2016-03-16 07:10:40 +00:00
|
|
|
else:
|
|
|
|
# CONFIGURE_SUBST_FILES need explicit empty values.
|
2016-03-22 05:21:32 +00:00
|
|
|
return ''
|
|
|
|
|
|
|
|
set_config('MOZ_PDF_PRINTING', pdf_printing)
|
|
|
|
set_config('PDF_SURFACE_FEATURE', pdf_surface_feature)
|
2016-03-16 07:19:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Event loop instrumentation
|
|
|
|
# ==============================================================
|
|
|
|
option(env='MOZ_INSTRUMENT_EVENT_LOOP',
|
|
|
|
help='Force-enable event loop instrumentation')
|
|
|
|
|
|
|
|
@depends('MOZ_INSTRUMENT_EVENT_LOOP', toolkit)
|
|
|
|
def instrument_event_loop(value, toolkit):
|
|
|
|
if value or (toolkit in ('windows', 'gtk2', 'gtk3', 'cocoa', 'android',
|
|
|
|
'gonk') and value.origin == 'default'):
|
2016-03-22 05:21:32 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
set_config('MOZ_INSTRUMENT_EVENT_LOOP', instrument_event_loop)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_INSTRUMENT_EVENT_LOOP', instrument_event_loop)
|
2016-03-16 07:23:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Fontconfig Freetype
|
|
|
|
# ==============================================================
|
|
|
|
option(env='USE_FC_FREETYPE',
|
|
|
|
help='Force-enable the use of fontconfig freetype')
|
|
|
|
|
|
|
|
@depends('USE_FC_FREETYPE', toolkit)
|
|
|
|
def fc_freetype(value, toolkit):
|
2016-07-07 16:14:25 +00:00
|
|
|
if value or (toolkit in ('gtk2', 'gtk3') and
|
2016-03-16 07:23:30 +00:00
|
|
|
value.origin == 'default'):
|
2016-03-23 07:34:59 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
add_old_configure_assignment('USE_FC_FREETYPE', fc_freetype)
|
2016-03-16 08:37:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Apple platform decoder support
|
|
|
|
# ==============================================================
|
|
|
|
@depends(toolkit)
|
|
|
|
def applemedia(toolkit):
|
|
|
|
if toolkit in ('cocoa', 'uikit'):
|
|
|
|
return True
|
2016-03-16 08:42:57 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_APPLEMEDIA', applemedia)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_APPLEMEDIA', applemedia)
|
2016-03-23 07:34:59 +00:00
|
|
|
add_old_configure_assignment('MOZ_APPLEMEDIA', applemedia)
|
2016-03-16 08:42:57 +00:00
|
|
|
|
|
|
|
# Windows Media Foundation support
|
|
|
|
# ==============================================================
|
|
|
|
option('--disable-wmf',
|
|
|
|
help='Disable support for Windows Media Foundation')
|
|
|
|
|
|
|
|
@depends('--disable-wmf', target)
|
|
|
|
def wmf(value, target):
|
|
|
|
enabled = bool(value)
|
|
|
|
if value.origin == 'default':
|
|
|
|
# Enable Windows Media Foundation support by default.
|
|
|
|
# Note our minimum SDK version is Windows 7 SDK, so we are (currently)
|
|
|
|
# guaranteed to have a recent-enough SDK to build WMF.
|
|
|
|
enabled = target.os == 'WINNT'
|
|
|
|
if enabled and target.os != 'WINNT':
|
2016-03-25 06:48:21 +00:00
|
|
|
die('Cannot enable Windows Media Foundation support on %s', target.os)
|
2016-03-16 08:42:57 +00:00
|
|
|
if enabled:
|
2016-03-22 05:21:32 +00:00
|
|
|
return True
|
2016-03-16 08:46:13 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_WMF', wmf)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_WMF', wmf)
|
2016-03-16 08:46:13 +00:00
|
|
|
|
|
|
|
# FFmpeg H264/AAC Decoding Support
|
|
|
|
# ==============================================================
|
|
|
|
option('--disable-ffmpeg',
|
|
|
|
help='Disable FFmpeg for fragmented H264/AAC decoding')
|
|
|
|
|
|
|
|
@depends('--disable-ffmpeg', target)
|
|
|
|
def ffmpeg(value, target):
|
|
|
|
enabled = bool(value)
|
|
|
|
if value.origin == 'default':
|
|
|
|
enabled = target.os not in ('Android', 'WINNT')
|
|
|
|
if enabled:
|
2016-03-22 05:21:32 +00:00
|
|
|
return True
|
2016-03-16 08:50:42 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_FFMPEG', ffmpeg)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_FFMPEG', ffmpeg)
|
2016-03-23 05:18:57 +00:00
|
|
|
imply_option('--enable-fmp4', ffmpeg, '--enable-ffmpeg')
|
2016-03-16 08:50:42 +00:00
|
|
|
|
|
|
|
# Built-in fragmented MP4 support.
|
|
|
|
# ==============================================================
|
|
|
|
option('--disable-fmp4', env='MOZ_FMP4',
|
|
|
|
help='Disable support for in built Fragmented MP4 parsing')
|
|
|
|
|
|
|
|
@depends('--disable-fmp4', target, wmf, applemedia)
|
|
|
|
def fmp4(value, target, wmf, applemedia):
|
|
|
|
enabled = bool(value)
|
|
|
|
if value.origin == 'default':
|
|
|
|
# target.os == 'Android' includes all B2G versions
|
|
|
|
enabled = wmf or applemedia or target.os == 'Android'
|
|
|
|
if enabled:
|
2016-03-22 05:21:32 +00:00
|
|
|
return True
|
2016-03-16 08:52:20 +00:00
|
|
|
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_FMP4', fmp4)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_FMP4', fmp4)
|
2016-03-23 07:34:59 +00:00
|
|
|
add_old_configure_assignment('MOZ_FMP4', fmp4)
|
2016-03-16 08:52:20 +00:00
|
|
|
|
|
|
|
# EME Support
|
|
|
|
# ==============================================================
|
2016-07-29 05:14:55 +00:00
|
|
|
# Widevine is enabled by default in desktop browser builds.
|
|
|
|
@depends(build_project, '--help')
|
|
|
|
def eme_default(build_project, help):
|
|
|
|
if build_project == 'browser':
|
|
|
|
return 'widevine'
|
|
|
|
|
|
|
|
option('--enable-eme',
|
|
|
|
nargs='*',
|
|
|
|
choices=('adobe','widevine',),
|
|
|
|
default=eme_default,
|
2016-03-16 08:52:20 +00:00
|
|
|
help='Enable support for Encrypted Media Extensions')
|
|
|
|
|
|
|
|
@depends('--enable-eme', fmp4)
|
|
|
|
def eme(value, fmp4):
|
|
|
|
enabled = bool(value)
|
|
|
|
if value.origin == 'default':
|
|
|
|
enabled = enabled or fmp4
|
|
|
|
if enabled and not fmp4:
|
2016-03-25 06:48:21 +00:00
|
|
|
die('Encrypted Media Extension support requires '
|
|
|
|
'Fragmented MP4 support')
|
2016-03-16 08:52:20 +00:00
|
|
|
if enabled:
|
2016-03-22 05:21:32 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
@depends('--enable-eme')
|
|
|
|
def eme_modules(value):
|
2016-03-16 08:52:20 +00:00
|
|
|
# Theoretically, we could pass `value` directly when it is a
|
|
|
|
# PositiveOptionValue, but somehow, the JSON serialization in configure.py
|
|
|
|
# outputs inconsistent data in some cases when we do (a closing bracket
|
|
|
|
# without an opening one).
|
2016-03-22 05:21:32 +00:00
|
|
|
return list(value) if value else []
|
|
|
|
|
|
|
|
set_config('MOZ_EME', eme)
|
2016-03-23 01:22:08 +00:00
|
|
|
set_define('MOZ_EME', eme)
|
2016-03-22 05:21:32 +00:00
|
|
|
set_config('MOZ_EME_MODULES', eme_modules)
|
2016-04-14 19:26:38 +00:00
|
|
|
|
|
|
|
option(name='--enable-chrome-format',
|
|
|
|
help='Select FORMAT of chrome files during packaging.',
|
|
|
|
nargs=1,
|
|
|
|
choices=('omni', 'jar', 'flat'),
|
|
|
|
default='omni')
|
|
|
|
|
|
|
|
@depends('--enable-chrome-format')
|
|
|
|
def packager_format(value):
|
|
|
|
return value[0]
|
|
|
|
|
|
|
|
set_config('MOZ_PACKAGER_FORMAT', packager_format)
|
|
|
|
|
2016-04-30 23:02:43 +00:00
|
|
|
@depends(host, build_project)
|
|
|
|
def jar_maker_format(host, build_project):
|
|
|
|
# Multilocales for mobile/android use the same mergedirs for all locales,
|
|
|
|
# so we can't use symlinks for those builds.
|
|
|
|
if host.os == 'WINNT' or build_project == 'mobile/android':
|
|
|
|
return 'flat'
|
|
|
|
return 'symlink'
|
2016-04-14 19:26:38 +00:00
|
|
|
|
|
|
|
set_config('MOZ_JAR_MAKER_FILE_FORMAT', jar_maker_format)
|
|
|
|
|
|
|
|
@depends(toolkit)
|
|
|
|
def omnijar_name(toolkit):
|
|
|
|
# Fennec's static resources live in the assets/ folder of the
|
|
|
|
# APK. Adding a path to the name here works because we only
|
|
|
|
# have one omnijar file in the final package (which is not the
|
|
|
|
# case on desktop), and necessitates some contortions during
|
|
|
|
# packaging so that the resources in the omnijar are considered
|
|
|
|
# as rooted at / and not as rooted at assets/ (which again is
|
|
|
|
# not the case on desktop: there are omnijars rooted at webrtc/,
|
|
|
|
# etc). packager.mk handles changing the rooting of the single
|
|
|
|
# omnijar.
|
|
|
|
return 'assets/omni.ja' if toolkit == 'android' else 'omni.ja'
|
|
|
|
|
|
|
|
set_config('OMNIJAR_NAME', omnijar_name)
|
2016-04-20 09:47:33 +00:00
|
|
|
|
2016-05-12 18:55:58 +00:00
|
|
|
project_flag('MOZ_PLACES',
|
|
|
|
help='Build Places if required',
|
|
|
|
set_as_define=True)
|
|
|
|
|
2016-05-12 18:55:59 +00:00
|
|
|
project_flag('MOZ_SOCIAL',
|
|
|
|
help='Build SocialAPI if required',
|
|
|
|
default=True)
|
|
|
|
|
2016-05-12 18:55:59 +00:00
|
|
|
project_flag('MOZ_SERVICES_HEALTHREPORT',
|
|
|
|
help='Build Firefox Health Reporter Service',
|
|
|
|
set_for_old_configure=True,
|
|
|
|
set_as_define=True)
|
|
|
|
|
2016-05-12 18:55:59 +00:00
|
|
|
project_flag('MOZ_SERVICES_SYNC',
|
|
|
|
help='Build Sync Services if required')
|
|
|
|
|
2016-05-12 18:56:00 +00:00
|
|
|
project_flag('MOZ_SERVICES_CLOUDSYNC',
|
|
|
|
help='Build Services/CloudSync if required')
|
|
|
|
|
2016-05-17 21:40:03 +00:00
|
|
|
project_flag('MOZ_ANDROID_HISTORY',
|
|
|
|
help='Enable Android History instead of Places',
|
|
|
|
set_as_define=True)
|
|
|
|
|
|
|
|
@depends('MOZ_PLACES', 'MOZ_ANDROID_HISTORY')
|
|
|
|
def check_places_and_android_history(places, android_history):
|
|
|
|
if places and android_history:
|
|
|
|
die('Cannot use MOZ_ANDROID_HISTORY alongside MOZ_PLACES.')
|
|
|
|
|
2016-07-22 09:52:09 +00:00
|
|
|
# gpsd support
|
|
|
|
# ==============================================================
|
|
|
|
option('--enable-gpsd', env='MOZ_GPSD',
|
|
|
|
help='Enable gpsd support')
|
|
|
|
|
|
|
|
@depends('--enable-gpsd')
|
|
|
|
def gpsd(value):
|
|
|
|
return bool(value)
|
|
|
|
|
|
|
|
system_gpsd = pkg_check_modules('MOZ_GPSD', 'libgps >= 3.11', gpsd)
|
|
|
|
|
|
|
|
set_config('MOZ_GPSD', system_gpsd)
|
|
|
|
|
2016-04-20 09:47:33 +00:00
|
|
|
# Miscellaneous programs
|
|
|
|
# ==============================================================
|
|
|
|
|
|
|
|
check_prog('TAR', ('gnutar', 'gtar', 'tar'))
|
|
|
|
check_prog('UNZIP', ('unzip',))
|
|
|
|
check_prog('ZIP', ('zip',))
|