2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:22 +04: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-04 04:03:19 +03:00
|
|
|
with Files('**'):
|
2017-03-23 03:23:12 +03:00
|
|
|
BUG_COMPONENT = ('Core', 'Audio/Video')
|
2015-03-04 04:03:19 +03:00
|
|
|
|
2015-10-20 09:47:30 +03: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-19 06:47:45 +04:00
|
|
|
|
2017-02-09 16:27:29 +03:00
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
2013-10-11 22:27:14 +04:00
|
|
|
if CONFIG['MOZ_WEBRTC']:
|
|
|
|
DIRS += ['webrtc']
|
2014-02-11 20:28:54 +04:00
|
|
|
|
|
|
|
if CONFIG['OS_TARGET'] == 'WINNT':
|
2014-08-06 02:25:33 +04:00
|
|
|
OS_LIBS += [
|
|
|
|
'usp10',
|
|
|
|
'ole32',
|
|
|
|
'msimg32',
|
|
|
|
'winmm',
|
|
|
|
]
|