moz.build (763B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 include("sources.mozbuild") 8 9 with Files('*'): 10 BUG_COMPONENT = ('Core', 'Audio/Video') 11 12 EXPORTS.ogg += [ 13 'geckoextra/include/OggStructsForRLBox.h', 14 'include/ogg/config_types.h', 15 'include/ogg/ogg.h', 16 'include/ogg/os_types.h', 17 ] 18 19 UNIFIED_SOURCES += ogg_sources 20 21 FINAL_LIBRARY = 'gkcodecs' 22 NoVisibilityFlags() 23 24 # Add libFuzzer configuration directives 25 include('/tools/fuzzing/libfuzzer-config.mozbuild') 26 27 if CONFIG['FUZZING']: 28 DEFINES['DISABLE_CRC'] = 1