2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +04: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/.
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'EncodingUtils.h',
|
2013-11-04 15:24:33 +04:00
|
|
|
'FallbackEncoding.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'TextDecoder.h',
|
|
|
|
'TextEncoder.h',
|
|
|
|
]
|
|
|
|
|
2013-12-04 18:42:49 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'EncodingUtils.cpp',
|
2013-11-04 15:24:33 +04:00
|
|
|
'FallbackEncoding.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'TextDecoder.cpp',
|
|
|
|
'TextEncoder.cpp',
|
|
|
|
]
|
|
|
|
|
2013-08-22 10:55:59 +04:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2013-11-11 12:04:11 +04:00
|
|
|
LOCAL_INCLUDES += [
|
2014-07-24 21:56:38 +04:00
|
|
|
'/intl/locale',
|
2013-11-11 12:04:11 +04:00
|
|
|
]
|
|
|
|
|
2013-11-22 03:16:18 +04:00
|
|
|
GENERATED_FILES += [
|
2014-02-06 13:08:01 +04:00
|
|
|
'domainsfallbacks.properties.h',
|
2014-05-08 13:32:00 +04:00
|
|
|
'encodingsgroups.properties.h',
|
2013-11-22 03:16:18 +04:00
|
|
|
'labelsencodings.properties.h',
|
|
|
|
'localesfallbacks.properties.h',
|
2014-02-06 13:08:01 +04:00
|
|
|
'nonparticipatingdomains.properties.h',
|
2013-11-22 03:16:18 +04:00
|
|
|
]
|
2014-07-26 10:17:24 +04:00
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += [
|
|
|
|
'test/mochitest.ini',
|
|
|
|
'test/unit/mochitest.ini',
|
|
|
|
]
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['test/chrome.ini']
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
|