2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:22 +04: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 23:24:43 +04:00
|
|
|
EXPORTS += [
|
2013-11-27 11:59:41 +04:00
|
|
|
'nsIIPCBackgroundChildCreateCallback.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'nsIIPCSerializableInputStream.h',
|
|
|
|
'nsIIPCSerializableURI.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.ipc += [
|
2013-11-27 11:59:41 +04:00
|
|
|
'BackgroundChild.h',
|
|
|
|
'BackgroundParent.h',
|
2014-07-07 22:13:04 +04:00
|
|
|
'BackgroundUtils.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'BrowserProcessSubThread.h',
|
|
|
|
'CrossProcessMutex.h',
|
|
|
|
'FileDescriptor.h',
|
2014-09-27 03:21:57 +04:00
|
|
|
'FileDescriptorSetChild.h',
|
|
|
|
'FileDescriptorSetParent.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'FileDescriptorUtils.h',
|
|
|
|
'GeckoChildProcessHost.h',
|
|
|
|
'InputStreamUtils.h',
|
2013-10-24 03:05:43 +04:00
|
|
|
'IOThreadChild.h',
|
2013-09-28 05:42:08 +04:00
|
|
|
'MessageChannel.h',
|
|
|
|
'MessageLink.h',
|
2015-07-21 10:21:51 +03:00
|
|
|
'Neutering.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'ProcessChild.h',
|
|
|
|
'ProtocolUtils.h',
|
|
|
|
'ScopedXREEmbed.h',
|
|
|
|
'SharedMemory.h',
|
|
|
|
'SharedMemoryBasic.h',
|
|
|
|
'SharedMemorySysV.h',
|
|
|
|
'Shmem.h',
|
|
|
|
'Transport.h',
|
|
|
|
'URIUtils.h',
|
2014-05-18 07:16:51 +04:00
|
|
|
'WindowsMessageLoop.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
EXPORTS.mozilla.ipc += [
|
|
|
|
'Transport_win.h',
|
|
|
|
]
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'SharedMemory_windows.cpp',
|
|
|
|
'Transport_win.cpp',
|
|
|
|
'WindowsMessageLoop.cpp',
|
|
|
|
]
|
2013-04-16 23:24:43 +04:00
|
|
|
else:
|
|
|
|
EXPORTS.mozilla.ipc += [
|
|
|
|
'Transport_posix.h',
|
|
|
|
]
|
2013-11-22 22:53:02 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'SharedMemory_posix.cpp',
|
|
|
|
'Transport_posix.cpp',
|
|
|
|
]
|
2013-04-16 23:24:43 +04:00
|
|
|
|
2013-12-20 00:19:25 +04:00
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
SOURCES += [
|
|
|
|
'CrossProcessMutex_windows.cpp',
|
|
|
|
]
|
2014-11-07 22:17:14 +03:00
|
|
|
elif CONFIG['OS_ARCH'] in ('Linux', 'Darwin'):
|
2013-12-20 00:19:25 +04:00
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'CrossProcessMutex_posix.cpp',
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'CrossProcessMutex_unimplemented.cpp',
|
|
|
|
]
|
|
|
|
|
2013-04-16 23:24:43 +04: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 22:53:02 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'SharedMemoryBasic_android.cpp',
|
|
|
|
]
|
2015-06-17 07:38:38 +03:00
|
|
|
elif CONFIG['OS_ARCH'] == 'Darwin':
|
|
|
|
EXPORTS.mozilla.ipc += ['SharedMemoryBasic_mach.h']
|
|
|
|
SOURCES += [
|
2015-09-22 20:59:00 +03:00
|
|
|
'SharedMemoryBasic_mach.mm',
|
2015-06-17 07:38:38 +03:00
|
|
|
]
|
2013-04-16 23:24:43 +04:00
|
|
|
else:
|
|
|
|
EXPORTS.mozilla.ipc += ['SharedMemoryBasic_chromium.h']
|
|
|
|
|
2013-04-24 01:54:15 +04:00
|
|
|
if CONFIG['OS_ARCH'] == 'Linux':
|
2013-11-22 22:53:02 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'ProcessUtils_linux.cpp',
|
|
|
|
]
|
2014-02-19 00:41:23 +04:00
|
|
|
elif CONFIG['OS_ARCH'] in ('DragonFly', 'FreeBSD', 'NetBSD', 'OpenBSD'):
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'ProcessUtils_bsd.cpp'
|
|
|
|
]
|
2015-02-26 21:21:52 +03:00
|
|
|
elif CONFIG['OS_ARCH'] == 'Darwin':
|
2014-08-26 21:03:09 +04:00
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'ProcessUtils_mac.mm'
|
|
|
|
]
|
2013-04-24 01:54:15 +04:00
|
|
|
else:
|
2013-11-22 22:53:02 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'ProcessUtils_none.cpp',
|
|
|
|
]
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.ipc += [
|
|
|
|
'IPCMessageUtils.h',
|
|
|
|
]
|
|
|
|
|
2013-11-22 22:53:02 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-11-27 11:59:41 +04:00
|
|
|
'BackgroundImpl.cpp',
|
2014-07-07 22:13:04 +04:00
|
|
|
'BackgroundUtils.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'BrowserProcessSubThread.cpp',
|
|
|
|
'FileDescriptor.cpp',
|
|
|
|
'FileDescriptorUtils.cpp',
|
|
|
|
'InputStreamUtils.cpp',
|
2013-09-28 05:42:08 +04:00
|
|
|
'MessageChannel.cpp',
|
|
|
|
'MessageLink.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'MessagePump.cpp',
|
|
|
|
'ProcessChild.cpp',
|
|
|
|
'ProtocolUtils.cpp',
|
|
|
|
'ScopedXREEmbed.cpp',
|
|
|
|
'SharedMemory.cpp',
|
|
|
|
'Shmem.cpp',
|
|
|
|
'StringUtil.cpp',
|
2013-11-22 22:53:02 +04: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 11:59:41 +04:00
|
|
|
'BackgroundChildImpl.cpp',
|
|
|
|
'BackgroundParentImpl.cpp',
|
2014-09-27 03:21:57 +04:00
|
|
|
'FileDescriptorSetChild.cpp',
|
|
|
|
'FileDescriptorSetParent.cpp',
|
2013-11-22 22:53:02 +04:00
|
|
|
'GeckoChildProcessHost.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'URIUtils.cpp',
|
|
|
|
]
|
|
|
|
|
2013-11-27 11:59:41 +04:00
|
|
|
LOCAL_INCLUDES += [
|
2015-04-07 01:44:04 +03:00
|
|
|
'/caps',
|
2015-01-15 19:58:40 +03:00
|
|
|
'/dom/broadcastchannel',
|
2014-10-16 08:56:52 +04:00
|
|
|
'/dom/indexedDB',
|
2015-06-04 21:51:57 +03:00
|
|
|
'/dom/workers',
|
2015-08-31 15:51:29 +03:00
|
|
|
'/media/webrtc/trunk',
|
2013-11-27 11:59:41 +04:00
|
|
|
'/xpcom/build',
|
|
|
|
]
|
|
|
|
|
2013-07-01 17:56:28 +04:00
|
|
|
IPDL_SOURCES = [
|
|
|
|
'InputStreamParams.ipdlh',
|
2013-11-27 11:59:41 +04:00
|
|
|
'PBackground.ipdl',
|
2014-07-07 22:13:04 +04:00
|
|
|
'PBackgroundSharedTypes.ipdlh',
|
2013-11-27 11:59:41 +04:00
|
|
|
'PBackgroundTest.ipdl',
|
2014-09-27 03:21:57 +04:00
|
|
|
'PFileDescriptorSet.ipdl',
|
2014-07-30 11:24:00 +04:00
|
|
|
'PProcLoader.ipdl',
|
2013-05-31 17:16:57 +04:00
|
|
|
'ProtocolTypes.ipdlh',
|
2013-07-01 17:56:28 +04:00
|
|
|
'URIParams.ipdlh',
|
|
|
|
]
|
2013-08-22 10:56:00 +04:00
|
|
|
|
2013-12-09 23:57:29 +04:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
2014-07-30 11:24:00 +04:00
|
|
|
'/toolkit/xre',
|
2013-12-09 23:57:29 +04:00
|
|
|
'/xpcom/threads',
|
|
|
|
]
|
|
|
|
|
2013-10-02 21:17:55 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2013-11-19 06:47:14 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2013-11-27 17:55:07 +04:00
|
|
|
|
2015-05-15 00:20:57 +03:00
|
|
|
for var in ('MOZ_CHILD_PROCESS_NAME', 'MOZ_CHILD_PROCESS_NAME_PIE',
|
|
|
|
'MOZ_CHILD_PROCESS_BUNDLE', 'DLL_PREFIX', 'DLL_SUFFIX'):
|
2013-11-27 17:55:07 +04:00
|
|
|
DEFINES[var] = '"%s"' % CONFIG[var]
|
2013-12-31 13:06:11 +04:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/toolkit/crashreporter',
|
|
|
|
]
|
|
|
|
|
2015-04-01 11:40:35 +03:00
|
|
|
if CONFIG['MOZ_SANDBOX'] and CONFIG['OS_ARCH'] == 'WINNT':
|
2013-12-31 13:06:11 +04:00
|
|
|
LOCAL_INCLUDES += [
|
2015-04-01 11:40:35 +03:00
|
|
|
'/security/sandbox/chromium',
|
|
|
|
'/security/sandbox/chromium-shim',
|
2013-12-31 13:06:11 +04:00
|
|
|
'/security/sandbox/win/src/sandboxbroker',
|
|
|
|
]
|