зеркало из https://github.com/mozilla/gecko-dev.git
52 строки
1.3 KiB
Python
52 строки
1.3 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 False:
|
|
UNIFIED_SOURCES += [
|
|
'Assembler.cpp',
|
|
'Callback.cpp',
|
|
'ExternalCall.cpp',
|
|
'HashTable.cpp',
|
|
'ipc/Channel.cpp',
|
|
'ipc/ChildIPC.cpp',
|
|
'ipc/ChildProcess.cpp',
|
|
'ipc/JSControl.cpp',
|
|
'ipc/ParentForwarding.cpp',
|
|
'ipc/ParentGraphics.cpp',
|
|
'ipc/ParentIPC.cpp',
|
|
'Lock.cpp',
|
|
'ProcessRecordReplay.cpp',
|
|
'ProcessRedirect.cpp',
|
|
'ProcessRedirectDarwin.cpp',
|
|
'ProcessRewind.cpp',
|
|
'Recording.cpp',
|
|
'Thread.cpp',
|
|
'ThreadSnapshot.cpp',
|
|
'ValueIndex.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')
|