2019-04-24 08:03:28 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# 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/.
|
|
|
|
|
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Internationalization")
|
|
|
|
|
2019-04-24 08:05:11 +03:00
|
|
|
EXPORTS.mozilla.dom.l10n += [
|
2019-06-06 19:31:44 +03:00
|
|
|
'DocumentL10n.h',
|
2019-06-06 19:31:25 +03:00
|
|
|
'DOMLocalization.h',
|
2019-04-24 08:05:11 +03:00
|
|
|
'DOMOverlays.h',
|
2019-05-21 22:21:54 +03:00
|
|
|
'Mutations.h',
|
2019-04-24 08:05:11 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2019-06-06 19:31:44 +03:00
|
|
|
'DocumentL10n.cpp',
|
2019-06-06 19:31:25 +03:00
|
|
|
'DOMLocalization.cpp',
|
2019-04-24 08:05:11 +03:00
|
|
|
'DOMOverlays.cpp',
|
2019-05-21 22:21:54 +03:00
|
|
|
'Mutations.cpp',
|
2019-04-24 08:05:11 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base',
|
|
|
|
]
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
2019-04-24 08:03:28 +03:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/mochitest/chrome.ini']
|
2019-04-24 08:05:11 +03:00
|
|
|
|
|
|
|
if CONFIG['ENABLE_TESTS']:
|
|
|
|
DIRS += ['tests/gtest']
|