Bug 1869043 remove declaration of missing CreateOrDestroyAudioTracks r=padenot
[gecko.git] / media / libwebp / moz.build
blobe10c6588a3268b0668b0240c6433e1e4ad723639
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/.
7 with Files('**'):
8     BUG_COMPONENT = ('Core', 'Graphics: ImageLib')
10 EXPORTS.webp += [
11     'src/webp/decode.h',
12     'src/webp/demux.h',
13     'src/webp/encode.h',
14     'src/webp/format_constants.h',
15     'src/webp/mux_types.h',
16     'src/webp/types.h',
19 DIRS += [
20     'sharpyuv',
21     'src/dec',
22     'src/demux',
23     'src/dsp',
24     'src/enc',
25     'src/moz',
26     'src/utils',
29 FINAL_LIBRARY = 'gkmedias'
31 # We allow warnings for third-party code that can be updated from upstream.
32 AllowCompilerWarnings()