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/.
|
|
|
|
|
2014-09-26 04:20:23 +00:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ["tests/unit/xpcshell.ini"]
|
2013-03-19 18:47:00 +00:00
|
|
|
|
2014-07-24 17:56:39 +00:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
"nsIStringBundle.idl",
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = "intl"
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
"nsStringBundle.cpp",
|
|
|
|
]
|
|
|
|
|
2018-06-28 21:45:21 +00:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
"/xpcom/ds",
|
|
|
|
]
|
|
|
|
|
2022-12-12 13:25:09 +00:00
|
|
|
EXPORTS += [
|
|
|
|
"nsStringBundle.h",
|
|
|
|
]
|
|
|
|
|
2018-06-28 21:45:21 +00:00
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
|
2014-07-24 17:56:39 +00:00
|
|
|
FINAL_LIBRARY = "xul"
|