2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:21 +00: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/.
|
|
|
|
|
|
|
|
toolkit = CONFIG['MOZ_WIDGET_TOOLKIT']
|
|
|
|
|
|
|
|
# The Icon Channel stuff really shouldn't live in decoders/icon, but we'll
|
|
|
|
# fix that another time.
|
2013-06-12 12:04:28 +00:00
|
|
|
if CONFIG['MOZ_WIDGET_GTK']:
|
2013-02-25 20:47:21 +00:00
|
|
|
DIRS += ['icon/gtk', 'icon']
|
|
|
|
elif toolkit == 'qt':
|
|
|
|
DIRS += ['icon/qt', 'icon']
|
|
|
|
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
DIRS += ['icon/win', 'icon']
|
|
|
|
elif CONFIG['OS_ARCH'] == 'OS2':
|
|
|
|
DIRS += ['icon/os2', 'icon']
|
|
|
|
|
|
|
|
if toolkit == 'cocoa':
|
|
|
|
DIRS += ['icon/mac', 'icon']
|
|
|
|
elif toolkit == 'android':
|
|
|
|
DIRS += ['icon/android', 'icon']
|
2013-03-19 18:47:00 +00:00
|
|
|
|
2013-11-19 13:19:16 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-08-25 07:19:42 +00:00
|
|
|
'EXIF.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'nsGIFDecoder2.cpp',
|
|
|
|
'nsICODecoder.cpp',
|
|
|
|
'nsIconDecoder.cpp',
|
2013-11-21 21:36:59 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
# These files cannot be built in unified mode because they want to force NSPR
|
|
|
|
# logging.
|
|
|
|
SOURCES += [
|
|
|
|
'nsBMPDecoder.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'nsJPEGDecoder.cpp',
|
|
|
|
'nsPNGDecoder.cpp',
|
|
|
|
]
|
|
|
|
|
2013-08-22 06:55:59 +00:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-10-24 23:23:05 +00:00
|
|
|
SOURCES += [
|
2013-08-22 06:56:02 +00:00
|
|
|
'iccjpeg.c',
|
|
|
|
]
|
|
|
|
|
2013-10-20 07:25:19 +00:00
|
|
|
# Decoders need RasterImage.h
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/image/src',
|
|
|
|
]
|
2013-11-19 02:47:14 +00:00
|
|
|
|
|
|
|
FINAL_LIBRARY = 'imglib2'
|