2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 21:19:09 +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/.
|
|
|
|
|
|
|
|
TEST_DIRS += ['test']
|
2013-03-12 17:17:46 +00:00
|
|
|
|
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIProfileMigrator.idl',
|
|
|
|
'nsIToolkitProfile.idl',
|
|
|
|
'nsIToolkitProfileService.idl',
|
|
|
|
]
|
|
|
|
|
2013-03-12 05:00:00 +00:00
|
|
|
XPIDL_MODULE = 'toolkitprofile'
|
|
|
|
|
2013-11-27 18:42:01 +00:00
|
|
|
UNIFIED_SOURCES += [ TOPSRCDIR + '/profile/dirserviceprovider/src/nsProfileLock.cpp' ]
|
2013-10-23 23:00:23 +00:00
|
|
|
|
2013-11-27 18:42:01 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-10-23 23:00:23 +00:00
|
|
|
'nsToolkitProfileService.cpp'
|
2013-04-23 21:54:15 +00:00
|
|
|
]
|
|
|
|
|
2013-09-25 20:39:06 +00:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../xre',
|
|
|
|
'/profile/dirserviceprovider/src',
|
|
|
|
]
|
2013-11-19 02:47:14 +00:00
|
|
|
|
2013-12-02 00:25:19 +00:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-11-19 02:47:14 +00:00
|
|
|
FINAL_LIBRARY = 'xulapp_s'
|