gecko-dev/toolkit/recordreplay/moz.build
Brian Hackett e84caca5c0 Bug 1488808 Part 5 - Add infrastructure for performing system calls in the middleman process, r=froydnj.
--HG--
extra : rebase_source : d4e37772b0dd5103bf1ceb1602503fc8fe83d927
2018-10-17 10:00:58 -06:00

61 lines
1.7 KiB
Python

# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.
EXPORTS.mozilla.recordreplay += [
'ipc/ChildIPC.h',
'ipc/ParentIPC.h',
]
if CONFIG['OS_ARCH'] == 'Darwin' and CONFIG['NIGHTLY_BUILD']:
UNIFIED_SOURCES += [
'Assembler.cpp',
'Callback.cpp',
'DirtyMemoryHandler.cpp',
'File.cpp',
'HashTable.cpp',
'ipc/Channel.cpp',
'ipc/ChildIPC.cpp',
'ipc/ChildNavigation.cpp',
'ipc/ChildProcess.cpp',
'ipc/JSControl.cpp',
'ipc/ParentForwarding.cpp',
'ipc/ParentGraphics.cpp',
'ipc/ParentIPC.cpp',
'Lock.cpp',
'MemorySnapshot.cpp',
'MiddlemanCall.cpp',
'ProcessRecordReplay.cpp',
'ProcessRedirectDarwin.cpp',
'ProcessRewind.cpp',
'Thread.cpp',
'ThreadSnapshot.cpp',
'Trigger.cpp',
'ValueIndex.cpp',
'WeakPointer.cpp',
]
SOURCES += [
# ProcessRedirect includes udis86 directly and will not compile if the
# udis86 headers are included elsewhere in the same compilation unit.
'ProcessRedirect.cpp',
]
else:
UNIFIED_SOURCES += [
'ipc/DisabledIPC.cpp',
]
LOCAL_INCLUDES += [
'!/ipc/ipdl/_ipdlheaders',
'/ipc/chromium/src',
'/js/xpconnect/src',
'/toolkit/crashreporter/breakpad-client',
'/toolkit/crashreporter/google-breakpad/src',
]
FINAL_LIBRARY = 'xul'
with Files('**'):
BUG_COMPONENT = ('Core', 'Web Replay')