2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2015-08-18 06:55:01 +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/.
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2017-03-22 10:03:38 +03:00
|
|
|
"AudioSink.cpp",
|
2015-09-02 09:11:28 +03:00
|
|
|
"AudioSinkWrapper.cpp",
|
2015-09-07 14:32:04 +03:00
|
|
|
"DecodedStream.cpp",
|
2015-10-19 12:32:16 +03:00
|
|
|
"VideoSink.cpp",
|
2015-08-18 06:55:01 +03:00
|
|
|
]
|
|
|
|
|
2018-12-11 13:44:51 +03:00
|
|
|
EXPORTS += ["MediaSink.h"]
|
|
|
|
|
2021-04-07 09:15:22 +03:00
|
|
|
DEFINES["TRACING"] = True
|
|
|
|
|
2019-10-21 23:51:07 +03:00
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
|
2015-08-18 06:55:01 +03:00
|
|
|
FINAL_LIBRARY = "xul"
|
2016-05-11 10:00:01 +03:00
|
|
|
|
2017-12-08 00:09:15 +03:00
|
|
|
if CONFIG["CC_TYPE"] in ("clang", "gcc"):
|
2016-05-11 10:00:01 +03:00
|
|
|
CXXFLAGS += ["-Wno-error=shadow"]
|