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 += [
|
2015-09-16 22:01:00 +03:00
|
|
|
'hyphenation/hyphen',
|
|
|
|
'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',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS += [
|
|
|
|
'../third_party/rust/encoding_c/include/encoding_rs.h',
|
|
|
|
'../third_party/rust/encoding_c/include/encoding_rs_statics.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
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"):
|
|
|
|
BUG_COMPONENT = ("Core", "Build Config")
|