2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; 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/.
|
|
|
|
|
2017-03-01 16:20:25 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Internationalization")
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
2020-10-24 03:36:18 +03:00
|
|
|
"TextDecoder.h",
|
|
|
|
"TextEncoder.h",
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
|
|
|
|
2013-12-04 18:42:49 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2020-10-24 03:36:18 +03:00
|
|
|
"TextDecoder.cpp",
|
|
|
|
"TextEncoder.cpp",
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
2020-10-24 03:36:18 +03:00
|
|
|
FINAL_LIBRARY = "xul"
|
2013-11-11 12:04:11 +04:00
|
|
|
LOCAL_INCLUDES += [
|
2020-10-24 03:36:18 +03:00
|
|
|
"/intl/locale",
|
2013-11-11 12:04:11 +04:00
|
|
|
]
|
|
|
|
|
2014-07-26 10:17:24 +04:00
|
|
|
MOCHITEST_MANIFESTS += [
|
2020-10-24 03:36:18 +03:00
|
|
|
"test/mochitest.ini",
|
2014-07-26 10:17:24 +04:00
|
|
|
]
|
2020-10-24 03:36:18 +03:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ["test/chrome.ini"]
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ["test/unit/xpcshell.ini"]
|