2014-01-06 19:04:51 -08: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/.
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2014-02-05 15:11:25 -08:00
|
|
|
'TestAudioCompactor.cpp',
|
2014-10-13 15:04:59 -07:00
|
|
|
'TestGMPCrossOrigin.cpp',
|
2014-01-06 19:04:51 -08:00
|
|
|
'TestTrackEncoder.cpp',
|
2014-09-25 22:25:13 -07:00
|
|
|
'TestVideoSegment.cpp',
|
|
|
|
'TestWebMBuffered.cpp'
|
2014-01-06 19:04:51 -08:00
|
|
|
]
|
|
|
|
|
2014-10-09 19:56:07 -07:00
|
|
|
TEST_HARNESS_FILES.gtest += [
|
|
|
|
'test.webm'
|
|
|
|
]
|
|
|
|
|
2014-04-15 09:51:19 -07:00
|
|
|
if CONFIG['MOZ_WEBM_ENCODER']:
|
|
|
|
UNIFIED_SOURCES += ['TestVideoTrackEncoder.cpp',
|
2014-05-13 00:07:56 -07:00
|
|
|
'TestVorbisTrackEncoder.cpp',
|
2014-05-29 01:21:01 -07:00
|
|
|
'TestWebMWriter.cpp',
|
2014-04-15 09:51:19 -07:00
|
|
|
]
|
|
|
|
|
2014-01-06 19:04:51 -08:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/content/media/encoder',
|
2014-10-13 15:04:59 -07:00
|
|
|
'/content/media/gmp',
|
2014-01-06 19:04:51 -08:00
|
|
|
]
|
|
|
|
|
2014-03-31 04:21:38 -07:00
|
|
|
FINAL_LIBRARY = 'xul-gtest'
|
2014-05-30 18:00:46 -07:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|