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')
|
|
|
|
|
2013-11-22 06:03:21 -08:00
|
|
|
if CONFIG['GKMEDIAS_SHARED_LIBRARY']:
|
2014-10-29 21:06:12 -07:00
|
|
|
GeckoSharedLibrary('gkmedias', linkage=None)
|
2014-07-22 21:30:52 -07:00
|
|
|
USE_LIBS += [
|
2014-08-06 22:21:03 -07:00
|
|
|
'nspr',
|
2014-07-22 21:30:52 -07:00
|
|
|
]
|
2014-09-03 17:04:45 -07:00
|
|
|
else:
|
|
|
|
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':
|
|
|
|
DEFFILE = 'symbols.def'
|
2014-08-05 15:25:33 -07:00
|
|
|
OS_LIBS += [
|
|
|
|
'usp10',
|
|
|
|
'ole32',
|
|
|
|
'msimg32',
|
|
|
|
'winmm',
|
|
|
|
]
|