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/.
6
7TEST_DIRS += ['tests']
8
9XPIDL_SOURCES += [
10    'nsITransaction.idl',
11    'nsITransactionListener.idl',
12    'nsITransactionManager.idl',
13]
14
15XPIDL_MODULE = 'txmgr'
16
17EXPORTS += [
18    'nsTransactionManagerCID.h',
19]
20
21EXPORTS.mozilla += [
22    'TransactionManager.h',
23    'TransactionStack.h',
24]
25
26UNIFIED_SOURCES += [
27    'TransactionItem.cpp',
28    'TransactionManager.cpp',
29    'TransactionStack.cpp',
30]
31
32FINAL_LIBRARY = 'xul'
33