diff options
Diffstat (limited to 'comm/calendar/base/public/moz.build')
-rw-r--r-- | comm/calendar/base/public/moz.build | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/comm/calendar/base/public/moz.build b/comm/calendar/base/public/moz.build new file mode 100644 index 0000000000..8879b4e63b --- /dev/null +++ b/comm/calendar/base/public/moz.build @@ -0,0 +1,56 @@ +# 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/. + +XPIDL_SOURCES += [ + "calIAlarm.idl", + "calIAlarmService.idl", + "calIAttachment.idl", + "calIAttendee.idl", + "calICalendar.idl", + "calICalendarACLManager.idl", + "calICalendarManager.idl", + "calICalendarProvider.idl", + "calICalendarView.idl", + "calICalendarViewController.idl", + "calIChangeLog.idl", + "calIDateTime.idl", + "calIDeletedItems.idl", + "calIDuration.idl", + "calIErrors.idl", + "calIEvent.idl", + "calIFreeBusyProvider.idl", + "calIIcsParser.idl", + "calIIcsSerializer.idl", + "calIICSService.idl", + "calIImportExport.idl", + "calIItemBase.idl", + "calIItipItem.idl", + "calIItipTransport.idl", + "calIOperation.idl", + "calIPeriod.idl", + "calIRecurrenceDate.idl", + "calIRecurrenceInfo.idl", + "calIRecurrenceItem.idl", + "calIRecurrenceRule.idl", + "calIRelation.idl", + "calISchedulingSupport.idl", + "calIStartupService.idl", + "calIStatusObserver.idl", + "calITimezone.idl", + "calITimezoneDatabase.idl", + "calITimezoneService.idl", + "calITodo.idl", + "calIWeekInfoService.idl", +] + +XPIDL_MODULE = "calbase" + +EXPORTS += [] + +with Files("**"): + BUG_COMPONENT = ("Calendar", "Internal Components") + +with Files("calIAlarm*"): + BUG_COMPONENT = ("Calendar", "Alarms") |