2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2014-06-07 00:52:15 +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/.
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2014-08-27 12:46:56 +04:00
|
|
|
'MediaEncryptedEvent.h',
|
2014-06-07 00:52:15 +04:00
|
|
|
'MediaKeyError.h',
|
|
|
|
'MediaKeyMessageEvent.h',
|
|
|
|
'MediaKeys.h',
|
|
|
|
'MediaKeySession.h',
|
2015-01-31 03:23:07 +03:00
|
|
|
'MediaKeyStatusMap.h',
|
2014-11-18 12:13:02 +03:00
|
|
|
'MediaKeySystemAccess.h',
|
2015-03-31 10:50:01 +03:00
|
|
|
'MediaKeySystemAccessManager.h',
|
2014-06-07 00:52:15 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla += [
|
2014-07-30 10:53:28 +04:00
|
|
|
'CDMCaps.h',
|
2014-06-07 00:52:15 +04:00
|
|
|
'CDMProxy.h',
|
2017-12-20 06:15:09 +03:00
|
|
|
'DataMutex.h',
|
2016-08-01 12:37:18 +03:00
|
|
|
'DecryptorProxyCallback.h',
|
2015-06-03 04:42:50 +03:00
|
|
|
'DetailedPromise.h',
|
|
|
|
'EMEUtils.h',
|
2014-06-07 00:52:15 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2014-07-30 10:53:28 +04:00
|
|
|
'CDMCaps.cpp',
|
2015-06-03 04:42:50 +03:00
|
|
|
'DetailedPromise.cpp',
|
2015-02-20 04:37:55 +03:00
|
|
|
'EMEUtils.cpp',
|
2014-08-27 12:46:56 +04:00
|
|
|
'MediaEncryptedEvent.cpp',
|
2014-06-07 00:52:15 +04:00
|
|
|
'MediaKeyError.cpp',
|
|
|
|
'MediaKeyMessageEvent.cpp',
|
|
|
|
'MediaKeys.cpp',
|
|
|
|
'MediaKeySession.cpp',
|
2015-01-31 03:23:07 +03:00
|
|
|
'MediaKeyStatusMap.cpp',
|
2014-11-18 12:13:02 +03:00
|
|
|
'MediaKeySystemAccess.cpp',
|
2015-03-31 10:50:01 +03:00
|
|
|
'MediaKeySystemAccessManager.cpp',
|
2014-06-07 00:52:15 +04:00
|
|
|
]
|
|
|
|
|
2016-11-01 09:39:34 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
|
|
|
DIRS += ['mediadrm']
|
|
|
|
|
2015-09-01 08:31:48 +03:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|