2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:22 +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/.
|
|
|
|
|
2013-04-16 19:24:43 +00:00
|
|
|
EXPORTS += [
|
2013-11-27 07:59:41 +00:00
|
|
|
'nsIIPCBackgroundChildCreateCallback.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'nsIIPCSerializableInputStream.h',
|
|
|
|
'nsIIPCSerializableURI.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.ipc += [
|
2013-11-27 07:59:41 +00:00
|
|
|
'BackgroundChild.h',
|
|
|
|
'BackgroundParent.h',
|
2014-07-07 18:13:04 +00:00
|
|
|
'BackgroundUtils.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'BrowserProcessSubThread.h',
|
2016-10-11 21:25:17 +00:00
|
|
|
'CrashReporterClient.h',
|
|
|
|
'CrashReporterHost.h',
|
|
|
|
'CrashReporterMetadataShmem.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'CrossProcessMutex.h',
|
2017-02-14 08:10:35 +00:00
|
|
|
'CrossProcessSemaphore.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'FileDescriptor.h',
|
2014-09-26 23:21:57 +00:00
|
|
|
'FileDescriptorSetChild.h',
|
|
|
|
'FileDescriptorSetParent.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'FileDescriptorUtils.h',
|
|
|
|
'GeckoChildProcessHost.h',
|
|
|
|
'InputStreamUtils.h',
|
2013-10-23 23:05:43 +00:00
|
|
|
'IOThreadChild.h',
|
2016-05-15 17:32:09 +00:00
|
|
|
'IPCStreamUtils.h',
|
2013-09-28 01:42:08 +00:00
|
|
|
'MessageChannel.h',
|
|
|
|
'MessageLink.h',
|
2015-07-21 07:21:51 +00:00
|
|
|
'Neutering.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'ProcessChild.h',
|
|
|
|
'ProtocolUtils.h',
|
|
|
|
'ScopedXREEmbed.h',
|
2016-05-15 17:32:09 +00:00
|
|
|
'SendStream.h',
|
|
|
|
'SendStreamAlloc.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'SharedMemory.h',
|
|
|
|
'SharedMemoryBasic.h',
|
|
|
|
'Shmem.h',
|
2016-06-10 19:43:35 +00:00
|
|
|
'TaskFactory.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'Transport.h',
|
|
|
|
'URIUtils.h',
|
2014-05-18 03:16:51 +00:00
|
|
|
'WindowsMessageLoop.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
]
|
|
|
|
|
2017-02-14 02:12:10 +00:00
|
|
|
if CONFIG['FUZZING'] == '1':
|
2016-05-30 14:33:00 +00:00
|
|
|
EXPORTS.mozilla.ipc += ['Faulty.h']
|
|
|
|
SOURCES += ['Faulty.cpp']
|
|
|
|
|
2013-04-16 19:24:43 +00:00
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
2015-11-18 20:03:25 +00:00
|
|
|
DEFINES['WEBRTC_WIN'] = True
|
2013-04-16 19:24:43 +00:00
|
|
|
EXPORTS.mozilla.ipc += [
|
|
|
|
'Transport_win.h',
|
|
|
|
]
|
2013-10-24 23:23:05 +00:00
|
|
|
SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'SharedMemory_windows.cpp',
|
|
|
|
'Transport_win.cpp',
|
|
|
|
'WindowsMessageLoop.cpp',
|
|
|
|
]
|
2013-04-16 19:24:43 +00:00
|
|
|
else:
|
2015-11-18 20:03:25 +00:00
|
|
|
DEFINES['WEBRTC_POSIX'] = True
|
2013-04-16 19:24:43 +00:00
|
|
|
EXPORTS.mozilla.ipc += [
|
|
|
|
'Transport_posix.h',
|
|
|
|
]
|
2013-11-22 18:53:02 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'SharedMemory_posix.cpp',
|
|
|
|
'Transport_posix.cpp',
|
|
|
|
]
|
2013-04-16 19:24:43 +00:00
|
|
|
|
2013-12-19 20:19:25 +00:00
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
SOURCES += [
|
|
|
|
'CrossProcessMutex_windows.cpp',
|
|
|
|
]
|
2016-02-29 21:34:46 +00:00
|
|
|
elif not CONFIG['OS_ARCH'] in ('NetBSD', 'OpenBSD'):
|
2013-12-19 20:19:25 +00:00
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'CrossProcessMutex_posix.cpp',
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'CrossProcessMutex_unimplemented.cpp',
|
|
|
|
]
|
|
|
|
|
2017-02-14 08:10:35 +00:00
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
SOURCES += [
|
|
|
|
'CrossProcessSemaphore_windows.cpp',
|
|
|
|
]
|
2017-02-27 05:23:52 +00:00
|
|
|
elif CONFIG['OS_ARCH'] != 'Darwin':
|
2017-02-14 08:10:35 +00:00
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'CrossProcessSemaphore_posix.cpp',
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'CrossProcessSemaphore_unimplemented.cpp',
|
|
|
|
]
|
|
|
|
|
2013-04-16 19:24:43 +00:00
|
|
|
# Android has its own,
|
|
|
|
# almost-but-not-quite-compatible-with-POSIX-or-/dev/shm shared memory
|
|
|
|
# impl.
|
|
|
|
if CONFIG['OS_TARGET'] == 'Android':
|
|
|
|
EXPORTS.mozilla.ipc += ['SharedMemoryBasic_android.h']
|
2013-11-22 18:53:02 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'SharedMemoryBasic_android.cpp',
|
|
|
|
]
|
2015-06-17 04:38:38 +00:00
|
|
|
elif CONFIG['OS_ARCH'] == 'Darwin':
|
|
|
|
EXPORTS.mozilla.ipc += ['SharedMemoryBasic_mach.h']
|
|
|
|
SOURCES += [
|
2015-09-22 17:59:00 +00:00
|
|
|
'SharedMemoryBasic_mach.mm',
|
2015-06-17 04:38:38 +00:00
|
|
|
]
|
2013-04-16 19:24:43 +00:00
|
|
|
else:
|
|
|
|
EXPORTS.mozilla.ipc += ['SharedMemoryBasic_chromium.h']
|
|
|
|
|
2013-04-23 21:54:15 +00:00
|
|
|
if CONFIG['OS_ARCH'] == 'Linux':
|
2013-11-22 18:53:02 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'ProcessUtils_linux.cpp',
|
|
|
|
]
|
2014-02-18 20:41:23 +00:00
|
|
|
elif CONFIG['OS_ARCH'] in ('DragonFly', 'FreeBSD', 'NetBSD', 'OpenBSD'):
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'ProcessUtils_bsd.cpp'
|
|
|
|
]
|
2015-02-26 18:21:52 +00:00
|
|
|
elif CONFIG['OS_ARCH'] == 'Darwin':
|
2014-08-26 17:03:09 +00:00
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'ProcessUtils_mac.mm'
|
|
|
|
]
|
2013-04-23 21:54:15 +00:00
|
|
|
else:
|
2013-11-22 18:53:02 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'ProcessUtils_none.cpp',
|
|
|
|
]
|
|
|
|
|
2013-04-16 19:24:43 +00:00
|
|
|
EXPORTS.ipc += [
|
|
|
|
'IPCMessageUtils.h',
|
|
|
|
]
|
|
|
|
|
2013-11-22 18:53:02 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-11-27 07:59:41 +00:00
|
|
|
'BackgroundImpl.cpp',
|
2014-07-07 18:13:04 +00:00
|
|
|
'BackgroundUtils.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'BrowserProcessSubThread.cpp',
|
2016-10-11 21:25:17 +00:00
|
|
|
'CrashReporterClient.cpp',
|
|
|
|
'CrashReporterHost.cpp',
|
|
|
|
'CrashReporterMetadataShmem.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'FileDescriptor.cpp',
|
|
|
|
'FileDescriptorUtils.cpp',
|
|
|
|
'InputStreamUtils.cpp',
|
2016-04-28 17:00:46 +00:00
|
|
|
'IPCMessageUtils.cpp',
|
2016-05-15 17:32:09 +00:00
|
|
|
'IPCStreamUtils.cpp',
|
2013-09-28 01:42:08 +00:00
|
|
|
'MessageChannel.cpp',
|
|
|
|
'MessageLink.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'MessagePump.cpp',
|
|
|
|
'ProcessChild.cpp',
|
|
|
|
'ProtocolUtils.cpp',
|
|
|
|
'ScopedXREEmbed.cpp',
|
2016-05-15 17:32:09 +00:00
|
|
|
'SendStreamChild.cpp',
|
|
|
|
'SendStreamParent.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'SharedMemory.cpp',
|
|
|
|
'Shmem.cpp',
|
|
|
|
'StringUtil.cpp',
|
2013-11-22 18:53:02 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
# GeckoChildProcessHost.cpp cannot be built in unified mode because it uses plarena.h.
|
|
|
|
# URIUtils.cpp cannot be built in unified mode because of name clashes on strdup.
|
|
|
|
SOURCES += [
|
2013-11-27 07:59:41 +00:00
|
|
|
'BackgroundChildImpl.cpp',
|
|
|
|
'BackgroundParentImpl.cpp',
|
2014-09-26 23:21:57 +00:00
|
|
|
'FileDescriptorSetChild.cpp',
|
|
|
|
'FileDescriptorSetParent.cpp',
|
2013-11-22 18:53:02 +00:00
|
|
|
'GeckoChildProcessHost.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'URIUtils.cpp',
|
|
|
|
]
|
|
|
|
|
2016-03-24 00:19:20 +00:00
|
|
|
if CONFIG['_MSC_VER']:
|
|
|
|
# This is intended as a temporary hack to support building with VS2015.
|
|
|
|
# 'reinterpret_cast': conversion from 'DWORD' to 'HANDLE' of greater size
|
|
|
|
SOURCES['BackgroundChildImpl.cpp'].flags += ['-wd4312']
|
|
|
|
SOURCES['BackgroundParentImpl.cpp'].flags += ['-wd4312']
|
|
|
|
|
2013-11-27 07:59:41 +00:00
|
|
|
LOCAL_INCLUDES += [
|
2015-04-06 22:44:04 +00:00
|
|
|
'/caps',
|
2015-01-15 16:58:40 +00:00
|
|
|
'/dom/broadcastchannel',
|
2014-10-16 04:56:52 +00:00
|
|
|
'/dom/indexedDB',
|
2015-06-04 18:51:57 +00:00
|
|
|
'/dom/workers',
|
2015-08-31 12:51:29 +00:00
|
|
|
'/media/webrtc/trunk',
|
2013-11-27 07:59:41 +00:00
|
|
|
'/xpcom/build',
|
|
|
|
]
|
|
|
|
|
2013-07-01 13:56:28 +00:00
|
|
|
IPDL_SOURCES = [
|
|
|
|
'InputStreamParams.ipdlh',
|
2016-05-15 17:32:09 +00:00
|
|
|
'IPCStream.ipdlh',
|
2013-11-27 07:59:41 +00:00
|
|
|
'PBackground.ipdl',
|
2014-07-07 18:13:04 +00:00
|
|
|
'PBackgroundSharedTypes.ipdlh',
|
2013-11-27 07:59:41 +00:00
|
|
|
'PBackgroundTest.ipdl',
|
2014-09-26 23:21:57 +00:00
|
|
|
'PFileDescriptorSet.ipdl',
|
2013-05-31 13:16:57 +00:00
|
|
|
'ProtocolTypes.ipdlh',
|
2016-05-15 17:32:09 +00:00
|
|
|
'PSendStream.ipdl',
|
2013-07-01 13:56:28 +00:00
|
|
|
'URIParams.ipdlh',
|
|
|
|
]
|
2013-08-22 06:56:00 +00:00
|
|
|
|
2013-12-09 19:57:29 +00:00
|
|
|
LOCAL_INCLUDES += [
|
2016-10-11 21:25:17 +00:00
|
|
|
'/dom/ipc',
|
|
|
|
'/toolkit/crashreporter',
|
2014-07-30 07:24:00 +00:00
|
|
|
'/toolkit/xre',
|
2013-12-09 19:57:29 +00:00
|
|
|
'/xpcom/threads',
|
|
|
|
]
|
|
|
|
|
2013-10-02 17:17:55 +00:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2013-11-19 02:47:14 +00:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2013-11-27 13:55:07 +00:00
|
|
|
|
2015-05-14 21:20:57 +00:00
|
|
|
for var in ('MOZ_CHILD_PROCESS_NAME', 'MOZ_CHILD_PROCESS_NAME_PIE',
|
2016-04-08 17:34:40 +00:00
|
|
|
'MOZ_CHILD_PROCESS_BUNDLE', 'DLL_PREFIX', 'DLL_SUFFIX'):
|
2013-11-27 13:55:07 +00:00
|
|
|
DEFINES[var] = '"%s"' % CONFIG[var]
|
2013-12-31 09:06:11 +00:00
|
|
|
|
2015-04-01 08:40:35 +00:00
|
|
|
if CONFIG['MOZ_SANDBOX'] and CONFIG['OS_ARCH'] == 'WINNT':
|
2013-12-31 09:06:11 +00:00
|
|
|
LOCAL_INCLUDES += [
|
2015-04-01 08:40:35 +00:00
|
|
|
'/security/sandbox/chromium',
|
|
|
|
'/security/sandbox/chromium-shim',
|
2013-12-31 09:06:11 +00:00
|
|
|
'/security/sandbox/win/src/sandboxbroker',
|
|
|
|
]
|
2016-05-11 07:00:01 +00:00
|
|
|
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
|
|
CXXFLAGS += ['-Wno-shadow']
|