Bug 886173 - Preserve playbackRate across pause/play. r=cpearce
[gecko.git] / image / decoders / moz.build
blob8cd502563c2aff3189f0cef3e90f561421aeeecd
1 # -*- Mode: python; c-basic-offset: 4; 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 toolkit = CONFIG['MOZ_WIDGET_TOOLKIT']
9 # The Icon Channel stuff really shouldn't live in decoders/icon, but we'll
10 # fix that another time.
11 if CONFIG['MOZ_WIDGET_GTK']:
12     DIRS += ['icon/gtk', 'icon']
13 elif toolkit == 'qt':
14     DIRS += ['icon/qt', 'icon']
16 if CONFIG['OS_ARCH'] == 'WINNT':
17     DIRS += ['icon/win', 'icon']
18 elif CONFIG['OS_ARCH'] == 'OS2':
19     DIRS += ['icon/os2', 'icon']
21 if toolkit == 'cocoa':
22     DIRS += ['icon/mac', 'icon']
23 elif toolkit == 'android':
24     DIRS += ['icon/android', 'icon']
26 MODULE = 'imgdecoders'
28 CPP_SOURCES += [
29     'nsBMPDecoder.cpp',
30     'nsGIFDecoder2.cpp',
31     'nsICODecoder.cpp',
32     'nsIconDecoder.cpp',
33     'nsJPEGDecoder.cpp',
34     'nsPNGDecoder.cpp',
37 if CONFIG['MOZ_WBMP']:
38     CPP_SOURCES += [
39         'nsWBMPDecoder.cpp',
40     ]
42 LIBRARY_NAME = 'imgdecoders_s'