2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:19:09 +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/.
|
|
|
|
|
2014-02-07 01:00:20 +04:00
|
|
|
MOCHITEST_MANIFESTS += ['test/mochitest.ini']
|
2013-03-12 21:17:46 +04:00
|
|
|
|
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIAlertsService.idl',
|
|
|
|
]
|
|
|
|
|
2013-11-19 06:47:43 +04:00
|
|
|
XPIDL_MODULE = 'alerts'
|
2013-04-24 01:54:15 +04:00
|
|
|
|
2015-10-06 05:45:04 +03:00
|
|
|
EXPORTS += [
|
|
|
|
'nsAlertsUtils.h',
|
|
|
|
]
|
|
|
|
|
2015-12-03 19:44:25 +03:00
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'AlertNotification.h',
|
|
|
|
'AlertNotificationIPCSerializer.h',
|
|
|
|
]
|
|
|
|
|
2013-11-27 22:43:14 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2015-12-03 19:44:25 +03:00
|
|
|
'AlertNotification.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsAlertsService.cpp',
|
2015-10-06 05:45:04 +03:00
|
|
|
'nsAlertsUtils.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsXULAlerts.cpp',
|
|
|
|
]
|
|
|
|
|
2013-10-02 21:17:55 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2013-12-10 11:18:11 +04:00
|
|
|
|
2014-02-07 01:00:20 +04:00
|
|
|
JAR_MANIFESTS += ['jar.mn']
|
2014-11-08 11:41:17 +03:00
|
|
|
|
2015-03-15 21:36:24 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Toolkit', 'Notifications and Alerts')
|