Mypal/toolkit/profile/moz.build

27 lines
700 B
Plaintext
Raw Normal View History

2019-03-11 03:26:37 -07:00
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# 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 += [
'nsIProfileMigrator.idl',
'nsIProfileUnlocker.idl',
'nsIToolkitProfile.idl',
'nsIToolkitProfileService.idl',
]
XPIDL_MODULE = 'toolkitprofile'
2020-03-12 10:43:39 -07:00
UNIFIED_SOURCES += ['nsProfileLock.cpp']
2019-03-11 03:26:37 -07:00
if CONFIG['OS_ARCH'] == 'WINNT':
2020-03-12 10:43:39 -07:00
UNIFIED_SOURCES += ['ProfileUnlockerWin.cpp']
2019-03-11 03:26:37 -07:00
2020-03-12 10:43:39 -07:00
UNIFIED_SOURCES += ['nsToolkitProfileService.cpp']
2019-03-11 03:26:37 -07:00
2020-03-12 10:43:39 -07:00
LOCAL_INCLUDES += ['../xre']
2019-03-11 03:26:37 -07:00
FINAL_LIBRARY = 'xul'
JAR_MANIFESTS += ['jar.mn']