Bug 1943650 - Command-line --help output misformatted after --dbus-service. r=emilio
[gecko.git] / toolkit / components / alerts / moz.build
blob88666682fd6cc603f139478a90e5b59c73ae6f44
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 MOCHITEST_CHROME_MANIFESTS += ["test/chrome/chrome.toml"]
9 BROWSER_CHROME_MANIFESTS += ["test/browser/browser.toml"]
11 XPIDL_SOURCES += [
12     "nsIAlertsService.idl",
15 if CONFIG["OS_ARCH"] == "WINNT":
16     XPIDL_SOURCES += [
17         "nsIWindowsAlertsService.idl",
18     ]
20 XPIDL_MODULE = "alerts"
22 EXPORTS += [
23     "nsAlertsUtils.h",
26 EXPORTS.mozilla += [
27     "AlertNotification.h",
28     "AlertNotificationIPCSerializer.h",
31 UNIFIED_SOURCES += [
32     "AlertNotification.cpp",
33     "nsAlertsService.cpp",
34     "nsAlertsUtils.cpp",
35     "nsXULAlerts.cpp",
38 include("/ipc/chromium/chromium-config.mozbuild")
40 FINAL_LIBRARY = "xul"
42 JAR_MANIFESTS += ["jar.mn"]
44 with Files("**"):
45     BUG_COMPONENT = ("Toolkit", "Alerts Service")