mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-12 14:37:50 +00:00
37 lines
879 B
Python
37 lines
879 B
Python
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
MODULE = 'vorbis'
|
|
|
|
LIBRARY_NAME = 'vorbis'
|
|
|
|
SOURCES += [
|
|
'vorbis_analysis.c',
|
|
'vorbis_bitrate.c',
|
|
'vorbis_block.c',
|
|
'vorbis_codebook.c',
|
|
'vorbis_envelope.c',
|
|
'vorbis_floor0.c',
|
|
'vorbis_floor1.c',
|
|
'vorbis_info.c',
|
|
'vorbis_lookup.c',
|
|
'vorbis_lpc.c',
|
|
'vorbis_lsp.c',
|
|
'vorbis_mapping0.c',
|
|
'vorbis_mdct.c',
|
|
'vorbis_psy.c',
|
|
'vorbis_registry.c',
|
|
'vorbis_res0.c',
|
|
'vorbis_sharedbook.c',
|
|
'vorbis_smallft.c',
|
|
'vorbis_synthesis.c',
|
|
'vorbis_window.c',
|
|
]
|
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
FORCE_STATIC_LIB = True
|