2014-04-14 18:04:02 +04:00
|
|
|
# -*- 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/.
|
|
|
|
|
2014-05-12 18:14:06 +04:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsICharsetConverterManager.idl',
|
|
|
|
]
|
|
|
|
|
2014-04-14 18:04:02 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2014-05-12 18:14:06 +04:00
|
|
|
'nsCharsetAlias.cpp',
|
|
|
|
'nsCharsetConverterManager.cpp',
|
2014-04-14 18:04:02 +04:00
|
|
|
'nsMUTF7ToUnicode.cpp',
|
|
|
|
'nsUnicodeToMUTF7.cpp',
|
|
|
|
'nsUnicodeToUTF7.cpp',
|
|
|
|
'nsUTF7ToUnicode.cpp',
|
|
|
|
]
|
|
|
|
|
2014-05-12 18:14:06 +04:00
|
|
|
XPIDL_MODULE = 'commuconv'
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
2014-07-31 18:15:22 +04:00
|
|
|
'/mozilla/intl/locale',
|
|
|
|
]
|
|
|
|
|
|
|
|
GENERATED_FILES += [
|
|
|
|
'charsetalias.properties.h',
|
2014-05-12 18:14:06 +04:00
|
|
|
]
|
2015-02-21 02:07:00 +03:00
|
|
|
charsetalias = GENERATED_FILES['charsetalias.properties.h']
|
2015-06-03 22:00:59 +03:00
|
|
|
charsetalias.script = '../../mozilla/intl/locale/props2arrays.py'
|
2015-02-21 02:07:00 +03:00
|
|
|
charsetalias.inputs = ['charsetalias.properties']
|
2014-05-12 18:14:06 +04:00
|
|
|
|
2014-04-14 18:04:02 +04:00
|
|
|
FINAL_LIBRARY = 'mail'
|
|
|
|
|
|
|
|
# Tests need more attention before they can be enabled.
|
2014-04-23 12:30:00 +04:00
|
|
|
TEST_DIRS += ['test']
|
2014-05-12 18:14:06 +04:00
|
|
|
|
|
|
|
JAR_MANIFESTS += ['jar.mn']
|