2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; 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/.
|
|
|
|
|
2017-04-27 10:27:03 +00:00
|
|
|
TEST_DIRS += [
|
|
|
|
"gtest",
|
|
|
|
]
|
|
|
|
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += [
|
2021-04-08 14:56:33 +00:00
|
|
|
"components",
|
2015-09-16 19:01:00 +00:00
|
|
|
"hyphenation/glue",
|
2013-02-25 20:47:21 +00:00
|
|
|
"locale",
|
|
|
|
"locales",
|
|
|
|
"lwbrk",
|
|
|
|
"strres",
|
|
|
|
"unicharutil",
|
2017-06-02 08:35:15 +00:00
|
|
|
"l10n",
|
2013-02-25 20:47:21 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
"uconv",
|
|
|
|
"build",
|
|
|
|
]
|
2017-01-26 10:51:56 +00:00
|
|
|
|
2017-04-27 10:27:03 +00:00
|
|
|
EXPORTS.mozilla += [
|
|
|
|
"Encoding.h",
|
2019-12-12 17:50:19 +00:00
|
|
|
"EncodingDetector.h",
|
2017-04-27 10:27:03 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS += [
|
2019-12-12 17:50:19 +00:00
|
|
|
"../third_party/rust/chardetng_c/include/chardetng.h",
|
2017-04-27 10:27:03 +00:00
|
|
|
"../third_party/rust/encoding_c/include/encoding_rs.h",
|
|
|
|
"../third_party/rust/encoding_c/include/encoding_rs_statics.h",
|
|
|
|
]
|
|
|
|
|
2021-06-08 20:27:16 +00:00
|
|
|
|
|
|
|
PERFTESTS_MANIFESTS += ["benchmarks/perftest.ini"]
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ["benchmarks/xpcshell.ini"]
|
|
|
|
|
2017-04-27 10:27:03 +00:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Internationalization")
|
|
|
|
|
|
|
|
with Files("icu/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "JavaScript: Internationalization API")
|
|
|
|
|
|
|
|
with Files("icu-patches/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "JavaScript: Internationalization API")
|
|
|
|
|
|
|
|
with Files("tzdata/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "JavaScript: Internationalization API")
|
|
|
|
|
|
|
|
with Files("update*"):
|
|
|
|
BUG_COMPONENT = ("Core", "JavaScript: Internationalization API")
|
|
|
|
|
|
|
|
with Files("icu_sources_data.py"):
|
2018-03-14 20:44:46 +00:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2018-04-26 21:18:34 +00:00
|
|
|
|
|
|
|
SPHINX_TREES["/intl"] = "docs"
|