2018-05-31 15:32:51 +03: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 += [
|
|
|
|
'MediaCapabilities.h',
|
|
|
|
]
|
|
|
|
|
2019-08-06 12:23:28 +03:00
|
|
|
EXPORTS.mozilla += [
|
2019-08-06 12:24:34 +03:00
|
|
|
'BenchmarkStorageChild.h',
|
|
|
|
'BenchmarkStorageParent.h',
|
2019-08-06 12:23:28 +03:00
|
|
|
'KeyValueStorage.h',
|
|
|
|
]
|
|
|
|
|
2019-08-06 12:24:36 +03:00
|
|
|
EXPORTS += [
|
|
|
|
'DecoderBenchmark.h',
|
|
|
|
]
|
|
|
|
|
2018-05-31 15:32:51 +03:00
|
|
|
UNIFIED_SOURCES += [
|
2019-08-06 12:24:34 +03:00
|
|
|
'BenchmarkStorageChild.cpp',
|
|
|
|
'BenchmarkStorageParent.cpp',
|
2019-08-06 12:24:36 +03:00
|
|
|
'DecoderBenchmark.cpp',
|
2019-08-06 12:23:28 +03:00
|
|
|
'KeyValueStorage.cpp',
|
2018-05-31 15:32:51 +03:00
|
|
|
'MediaCapabilities.cpp',
|
|
|
|
]
|
|
|
|
|
2019-08-06 12:24:34 +03:00
|
|
|
IPDL_SOURCES += [
|
|
|
|
'PBenchmarkStorage.ipdl'
|
|
|
|
]
|
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2018-05-31 15:32:51 +03:00
|
|
|
FINAL_LIBRARY = 'xul'
|