69 lines
1.7 KiB
Python
69 lines
1.7 KiB
Python
# -*- Mode: python; 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/.
|
|
|
|
with Files("*"):
|
|
BUG_COMPONENT = ("Core", "Audio/Video: Web Codecs")
|
|
|
|
MOCHITEST_MANIFESTS += ["test/mochitest.toml"]
|
|
CRASHTEST_MANIFESTS += ["crashtests/crashtests.list"]
|
|
|
|
# For mozilla/layers/ImageBridgeChild.h
|
|
LOCAL_INCLUDES += [
|
|
"!/ipc/ipdl/_ipdlheaders",
|
|
"/ipc/chromium/src/",
|
|
]
|
|
|
|
EXPORTS.mozilla += [
|
|
"DecoderAgent.h",
|
|
]
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
"AudioData.h",
|
|
"AudioDecoder.h",
|
|
"AudioEncoder.h",
|
|
"DecoderTemplate.h",
|
|
"DecoderTypes.h",
|
|
"EncodedAudioChunk.h",
|
|
"EncodedVideoChunk.h",
|
|
"EncoderAgent.h",
|
|
"EncoderTemplate.h",
|
|
"EncoderTypes.h",
|
|
"ImageDecoder.h",
|
|
"ImageTrack.h",
|
|
"ImageTrackList.h",
|
|
"VideoColorSpace.h",
|
|
"VideoDecoder.h",
|
|
"VideoEncoder.h",
|
|
"VideoFrame.h",
|
|
"WebCodecsUtils.h",
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
"AudioData.cpp",
|
|
"AudioDecoder.cpp",
|
|
"AudioEncoder.cpp",
|
|
"DecoderAgent.cpp",
|
|
"DecoderTemplate.cpp",
|
|
"EncodedAudioChunk.cpp",
|
|
"EncodedVideoChunk.cpp",
|
|
"EncoderAgent.cpp",
|
|
"EncoderTemplate.cpp",
|
|
"ImageDecoder.cpp",
|
|
"ImageDecoderReadRequest.cpp",
|
|
"ImageTrack.cpp",
|
|
"ImageTrackList.cpp",
|
|
"VideoColorSpace.cpp",
|
|
"VideoDecoder.cpp",
|
|
"VideoEncoder.cpp",
|
|
"VideoFrame.cpp",
|
|
"WebCodecsUtils.cpp",
|
|
]
|
|
|
|
if CONFIG["MOZ_WAYLAND"]:
|
|
CXXFLAGS += CONFIG["MOZ_WAYLAND_CFLAGS"]
|
|
CFLAGS += CONFIG["MOZ_WAYLAND_CFLAGS"]
|
|
|
|
FINAL_LIBRARY = "xul"
|