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:20 +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/.
|
|
|
|
|
2013-04-16 19:24:43 +00:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'EncodingUtils.h',
|
2013-11-04 11:24:33 +00:00
|
|
|
'FallbackEncoding.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'TextDecoder.h',
|
|
|
|
'TextEncoder.h',
|
|
|
|
]
|
|
|
|
|
2013-12-04 14:42:49 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'EncodingUtils.cpp',
|
2013-11-04 11:24:33 +00:00
|
|
|
'FallbackEncoding.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'TextDecoder.cpp',
|
|
|
|
'TextEncoder.cpp',
|
|
|
|
]
|
|
|
|
|
2013-08-22 06:55:59 +00:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2014-07-22 23:37:51 +00:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2013-11-11 08:04:11 +00:00
|
|
|
LOCAL_INCLUDES += [
|
2014-07-24 17:56:38 +00:00
|
|
|
'/intl/locale',
|
2013-11-11 08:04:11 +00:00
|
|
|
]
|
|
|
|
|
2013-11-21 23:16:18 +00:00
|
|
|
GENERATED_FILES += [
|
2014-02-06 09:08:01 +00:00
|
|
|
'domainsfallbacks.properties.h',
|
2014-05-08 09:32:00 +00:00
|
|
|
'encodingsgroups.properties.h',
|
2013-11-21 23:16:18 +00:00
|
|
|
'labelsencodings.properties.h',
|
|
|
|
'localesfallbacks.properties.h',
|
2014-02-06 09:08:01 +00:00
|
|
|
'nonparticipatingdomains.properties.h',
|
2013-11-21 23:16:18 +00:00
|
|
|
]
|
2014-07-26 06:17:24 +00:00
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += [
|
|
|
|
'test/mochitest.ini',
|
|
|
|
'test/unit/mochitest.ini',
|
|
|
|
]
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['test/chrome.ini']
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
|