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