# -*- Mode: python; c-basic-offset: 4; 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/. if CONFIG['MOZ_WEBRTC']: EXPORTS += [ 'CamerasChild.h', 'CamerasParent.h', 'CamerasUtils.h', 'LoadManager.h', 'LoadManagerFactory.h', 'LoadMonitor.h', ] UNIFIED_SOURCES += [ 'CamerasChild.cpp', 'CamerasParent.cpp', 'CamerasUtils.cpp', 'LoadManager.cpp', 'LoadManagerFactory.cpp', 'LoadMonitor.cpp', 'ShmemPool.cpp', ] LOCAL_INCLUDES += [ '/media/webrtc/signaling', '/media/webrtc/trunk', ] if CONFIG['OS_TARGET'] == 'WINNT': DEFINES['WEBRTC_WIN'] = True else: DEFINES['WEBRTC_POSIX'] = True if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('android', 'gonk'): EXPORTS += [ 'OpenSLESProvider.h' ] UNIFIED_SOURCES += [ 'OpenSLESProvider.cpp', ] if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': UNIFIED_SOURCES += ['OSXRunLoopSingleton.cpp'] EXPORTS += ['OSXRunLoopSingleton.h'] if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk': if CONFIG['ANDROID_VERSION'] >= '17': LOCAL_INCLUDES += [ '%' + '%s/frameworks/wilhelm/include' % CONFIG['ANDROID_SOURCE'], ] else: LOCAL_INCLUDES += [ '%' + '%s/system/media/wilhelm/include' % CONFIG['ANDROID_SOURCE'], ] if CONFIG['_MSC_VER']: DEFINES['__PRETTY_FUNCTION__'] = '__FUNCSIG__' EXPORTS.mozilla += ['ShmemPool.h',] EXPORTS.mozilla.media += ['MediaChild.h', 'MediaParent.h', 'MediaSystemResourceClient.h', 'MediaSystemResourceManager.h', 'MediaSystemResourceManagerChild.h', 'MediaSystemResourceManagerParent.h', 'MediaSystemResourceMessageUtils.h', 'MediaSystemResourceService.h', 'MediaSystemResourceTypes.h', 'MediaUtils.h', ] UNIFIED_SOURCES += [ 'MediaChild.cpp', 'MediaParent.cpp', 'MediaSystemResourceClient.cpp', 'MediaSystemResourceManager.cpp', 'MediaSystemResourceManagerChild.cpp', 'MediaSystemResourceManagerParent.cpp', 'MediaSystemResourceService.cpp', 'MediaUtils.cpp', ] IPDL_SOURCES += [ 'PCameras.ipdl', 'PMedia.ipdl', 'PMediaSystemResourceManager.ipdl', ] # /dom/base needed for nsGlobalWindow.h in MediaChild.cpp LOCAL_INCLUDES += [ '/dom/base', ] include('/ipc/chromium/chromium-config.mozbuild') FINAL_LIBRARY = 'xul'