2018-01-19 03:59:58 +08:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
|
# 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/.
|
|
|
|
|
|
|
|
|
|
EXPORTS += [
|
|
|
|
|
'DXVA2Manager.h',
|
2026-09-15 18:34:43 +03:00
|
|
|
'DXVAVP9Manager.h',
|
2018-01-19 03:59:58 +08:00
|
|
|
'MFTDecoder.h',
|
2026-09-15 18:34:43 +03:00
|
|
|
'VP9DXVA.h',
|
|
|
|
|
'VP9HeaderParser.h',
|
2018-01-19 03:59:58 +08:00
|
|
|
'WMF.h',
|
|
|
|
|
'WMFAudioMFTManager.h',
|
|
|
|
|
'WMFDecoderModule.h',
|
|
|
|
|
'WMFMediaDataDecoder.h',
|
|
|
|
|
'WMFUtils.h',
|
|
|
|
|
'WMFVideoMFTManager.h',
|
2026-09-17 15:07:17 +03:00
|
|
|
'WMFVP9DXVA2Manager.h',
|
2018-01-19 03:59:58 +08:00
|
|
|
]
|
2020-04-22 02:32:20 +00:00
|
|
|
|
2018-01-19 03:59:58 +08:00
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
|
'DXVA2Manager.cpp',
|
|
|
|
|
'MFTDecoder.cpp',
|
|
|
|
|
'WMFAudioMFTManager.cpp',
|
|
|
|
|
'WMFDecoderModule.cpp',
|
|
|
|
|
'WMFMediaDataDecoder.cpp',
|
|
|
|
|
'WMFVideoMFTManager.cpp',
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
SOURCES += [
|
2026-09-15 18:34:43 +03:00
|
|
|
'DXVAVP9Manager.cpp',
|
|
|
|
|
'VP9HeaderParser.cpp',
|
2018-01-19 03:59:58 +08:00
|
|
|
'WMFUtils.cpp',
|
2026-09-17 15:07:17 +03:00
|
|
|
'WMFVP9DXVA2Manager.cpp',
|
2018-01-19 03:59:58 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
|
|
|
|
|
CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS']
|