2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:22 +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/.
|
|
|
|
|
2015-03-03 22:36:00 +03:00
|
|
|
with Files('*'):
|
2017-03-23 03:23:12 +03:00
|
|
|
BUG_COMPONENT = ('Core', 'Audio/Video')
|
2015-03-03 22:36:00 +03:00
|
|
|
|
2013-10-24 02:09:00 +04:00
|
|
|
EXPORTS.ogg += [
|
|
|
|
'include/ogg/config_types.h',
|
|
|
|
'include/ogg/ogg.h',
|
|
|
|
'include/ogg/os_types.h',
|
|
|
|
]
|
|
|
|
|
2013-11-12 23:32:18 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2014-03-05 19:58:29 +04:00
|
|
|
'src/ogg_alloc.c',
|
2013-10-24 02:09:00 +04:00
|
|
|
'src/ogg_bitwise.c',
|
|
|
|
'src/ogg_framing.c',
|
|
|
|
]
|
|
|
|
|
2013-11-19 06:47:14 +04:00
|
|
|
FINAL_LIBRARY = 'gkmedias'
|
2019-07-16 17:50:17 +03:00
|
|
|
|
|
|
|
# Add libFuzzer configuration directives
|
|
|
|
include('/tools/fuzzing/libfuzzer-config.mozbuild')
|