2013-02-28 18:16:49 +04:00
|
|
|
# vim: set filetype=python:
|
2012-05-30 20:48:24 +04:00
|
|
|
# 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/.
|
2008-09-03 17:35:06 +04:00
|
|
|
|
2019-04-19 20:11:50 +03:00
|
|
|
if CONFIG['MOZ_NO_PIE_COMPAT']:
|
|
|
|
GeckoProgram(CONFIG['MOZ_APP_NAME'] + '-bin')
|
|
|
|
|
|
|
|
DIRS += ['no-pie']
|
|
|
|
else:
|
|
|
|
GeckoProgram(CONFIG['MOZ_APP_NAME'])
|
|
|
|
|
2015-10-27 19:31:00 +03:00
|
|
|
USE_LIBS += ['mozglue']
|
|
|
|
SOURCES += ['nsMailApp.cpp']
|
|
|
|
LOCAL_INCLUDES += [
|
2015-11-06 09:36:00 +03:00
|
|
|
'!/build',
|
2017-10-17 23:20:04 +03:00
|
|
|
'/%s/ipc/contentproc/' % CONFIG['mozreltopsrcdir'],
|
2017-02-26 18:45:39 +03:00
|
|
|
'/%s/toolkit/xre' % CONFIG['mozreltopsrcdir'],
|
|
|
|
'/%s/xpcom/base' % CONFIG['mozreltopsrcdir'],
|
|
|
|
'/%s/xpcom/build' % CONFIG['mozreltopsrcdir'],
|
2015-10-27 19:31:00 +03:00
|
|
|
]
|
|
|
|
|
2016-12-03 15:00:59 +03:00
|
|
|
if CONFIG['LIBFUZZER']:
|
2017-01-22 11:48:08 +03:00
|
|
|
USE_LIBS += [ 'fuzzer' ]
|
|
|
|
LOCAL_INCLUDES += [
|
2017-02-26 18:45:39 +03:00
|
|
|
'/%s/tools/fuzzing/libfuzzer' % CONFIG['mozreltopsrcdir'],
|
2017-01-22 11:48:08 +03:00
|
|
|
]
|
2016-12-03 15:00:59 +03:00
|
|
|
|
2015-10-27 19:31:00 +03:00
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
RCINCLUDE = 'splash.rc'
|
|
|
|
DEFINES['MOZ_THUNDERBIRD'] = True
|
|
|
|
|
2016-05-18 17:44:25 +03:00
|
|
|
if CONFIG['MOZ_SANDBOX'] and CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
# For sandbox includes and the include dependencies those have
|
|
|
|
LOCAL_INCLUDES += [
|
2017-02-26 18:45:39 +03:00
|
|
|
'/%s/security/sandbox/chromium' % CONFIG['mozreltopsrcdir'],
|
|
|
|
'/%s/security/sandbox/chromium-shim' % CONFIG['mozreltopsrcdir'],
|
2016-05-18 17:44:25 +03:00
|
|
|
]
|
|
|
|
|
2020-03-08 22:26:48 +03:00
|
|
|
OS_LIBS += [
|
|
|
|
'version',
|
|
|
|
]
|
|
|
|
|
2016-05-18 17:44:25 +03:00
|
|
|
USE_LIBS += [
|
|
|
|
'sandbox_s',
|
|
|
|
]
|
|
|
|
|
2016-07-25 13:57:23 +03:00
|
|
|
DELAYLOAD_DLLS += [
|
|
|
|
'winmm.dll',
|
|
|
|
'user32.dll',
|
|
|
|
]
|
|
|
|
|
2019-01-25 19:10:58 +03:00
|
|
|
if CONFIG['CC_TYPE'] in ('msvc', 'clang-cl'):
|
2015-10-27 19:31:00 +03:00
|
|
|
# Always enter a Windows program through wmain, whether or not we're
|
|
|
|
# a console application.
|
|
|
|
WIN32_EXE_LDFLAGS += ['-ENTRY:wmainCRTStartup']
|
|
|
|
|
|
|
|
# Control the default heap size.
|
|
|
|
# This is the heap returned by GetProcessHeap().
|
|
|
|
# As we use the CRT heap, the default size is too large and wastes VM.
|
|
|
|
#
|
|
|
|
# The default heap size is 1MB on Win32.
|
|
|
|
# The heap will grow if need be.
|
|
|
|
#
|
|
|
|
# Set it to 256k. See bug 127069.
|
2019-01-31 00:59:21 +03:00
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT' and CONFIG['CC_TYPE'] in ('msvc', 'clang-cl'):
|
2015-10-27 19:31:00 +03:00
|
|
|
LDFLAGS += ['/HEAP:0x40000']
|
|
|
|
|
2017-09-12 15:12:57 +03:00
|
|
|
DisableStlWrapping()
|
2016-12-03 15:00:59 +03:00
|
|
|
|
2015-10-27 19:31:00 +03:00
|
|
|
if CONFIG['MOZ_LINKER']:
|
|
|
|
OS_LIBS += CONFIG['MOZ_ZLIB_LIBS']
|
2014-08-14 01:04:30 +04:00
|
|
|
|
2016-04-14 15:31:29 +03:00
|
|
|
if CONFIG['HAVE_CLOCK_MONOTONIC']:
|
|
|
|
OS_LIBS += CONFIG['REALTIME_LIBS']
|
|
|
|
|
2014-09-07 20:58:59 +04:00
|
|
|
DEFINES['APP_VERSION'] = CONFIG['MOZ_APP_VERSION']
|
|
|
|
|
|
|
|
if CONFIG['MOZILLA_OFFICIAL']:
|
|
|
|
DEFINES['MOZILLA_OFFICIAL'] = True
|
|
|
|
|
2016-12-03 15:00:59 +03:00
|
|
|
if CONFIG['MOZ_GPSD']:
|
|
|
|
DEFINES['MOZ_GPSD'] = True
|
|
|
|
|
|
|
|
if CONFIG['MOZ_LINUX_32_SSE2_STARTUP_ERROR']:
|
|
|
|
DEFINES['MOZ_LINUX_32_SSE2_STARTUP_ERROR'] = True
|
2019-03-16 11:28:00 +03:00
|
|
|
COMPILE_FLAGS['OS_CXXFLAGS'] = [
|
|
|
|
f for f in COMPILE_FLAGS.get('OS_CXXFLAGS', [])
|
|
|
|
if not f.startswith('-march=') and f not in ('-msse', '-msse2', '-mfpmath=sse')
|
|
|
|
] + [
|
|
|
|
'-mno-sse', '-mno-sse2', '-mfpmath=387',
|
|
|
|
]
|
2015-01-19 20:25:24 +03:00
|
|
|
|
2015-12-02 13:10:00 +03:00
|
|
|
JS_PREFERENCE_PP_FILES += [
|
2015-01-19 20:25:24 +03:00
|
|
|
'profile/all-thunderbird.js',
|
|
|
|
]
|
2020-02-29 15:55:34 +03:00
|
|
|
|
|
|
|
for icon in ('messengerWindow', 'newmail', 'writeMessage', 'addressbook'):
|
|
|
|
DEFINES[icon.upper() + '_ICO'] = '"%s/%s/%s.ico"' % (
|
|
|
|
TOPSRCDIR, CONFIG['MOZ_BRANDING_DIRECTORY'], icon)
|