2016-10-06 10:23:38 +03:00
|
|
|
# -*- 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/.
|
|
|
|
|
|
|
|
with Files('*'):
|
2017-03-23 03:23:12 +03:00
|
|
|
BUG_COMPONENT = ('Core', 'Audio/Video')
|
2016-10-06 10:23:38 +03:00
|
|
|
|
|
|
|
EXPORTS.psshparser += [
|
|
|
|
'PsshParser.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'PsshParser.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
Library('psshparser')
|
|
|
|
|
2017-09-11 21:33:26 +03:00
|
|
|
DisableStlWrapping()
|
2016-10-06 10:23:38 +03:00
|
|
|
DEFINES['MOZ_NO_MOZALLOC'] = True
|
2016-10-07 11:34:54 +03:00
|
|
|
|
|
|
|
TEST_DIRS += [
|
|
|
|
'gtest',
|
|
|
|
]
|