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