2014-01-07 03:04:51 +00:00
|
|
|
# -*- 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/.
|
|
|
|
|
|
|
|
LIBRARY_NAME = 'media_gtest'
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2014-02-05 23:11:25 +00:00
|
|
|
'TestAudioCompactor.cpp',
|
2014-01-07 03:04:51 +00:00
|
|
|
'TestTrackEncoder.cpp',
|
|
|
|
]
|
|
|
|
|
2014-04-15 16:51:19 +00:00
|
|
|
if CONFIG['MOZ_WEBM_ENCODER']:
|
|
|
|
UNIFIED_SOURCES += ['TestVideoTrackEncoder.cpp',
|
|
|
|
]
|
|
|
|
|
2014-01-07 03:04:51 +00:00
|
|
|
EXPORT_LIBRARY = True
|
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/content/media/encoder',
|
|
|
|
]
|
|
|
|
|
2014-03-31 11:21:38 +00:00
|
|
|
FINAL_LIBRARY = 'xul-gtest'
|