2013-04-01 11:36:59 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:22 -08: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/.
|
|
|
|
|
2015-03-03 17:03:19 -08:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Video/Audio')
|
|
|
|
|
2015-10-19 23:47:30 -07:00
|
|
|
# media/webrtc/signaling/test/common.build uses the gkmedias library,
|
|
|
|
# expecting at least some of what it contains to be linked, but not libxul,
|
|
|
|
# so we need to keep an independent pseudo-library, as well as the OS_LIBS
|
|
|
|
# on Windows for them to propagate there.
|
|
|
|
Library('gkmedias')
|
2013-11-18 18:47:45 -08:00
|
|
|
|
2013-10-11 11:27:14 -07:00
|
|
|
if CONFIG['MOZ_WEBRTC']:
|
|
|
|
DIRS += ['webrtc']
|
2014-02-11 08:28:54 -08:00
|
|
|
|
|
|
|
if CONFIG['OS_TARGET'] == 'WINNT':
|
2014-08-05 15:25:33 -07:00
|
|
|
OS_LIBS += [
|
|
|
|
'usp10',
|
|
|
|
'ole32',
|
|
|
|
'msimg32',
|
|
|
|
'winmm',
|
|
|
|
]
|