2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:20:02 +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/.
|
|
|
|
|
2013-03-12 21:17:46 +04:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIBlocklistService.idl',
|
|
|
|
'nsIDeviceSensors.idl',
|
2015-06-30 21:27:57 +03:00
|
|
|
'nsIExternalApplication.idl',
|
2013-03-12 21:17:46 +04:00
|
|
|
'nsIGConfService.idl',
|
|
|
|
'nsIGeolocationProvider.idl',
|
2013-10-24 03:05:43 +04:00
|
|
|
'nsIGIOService.idl',
|
|
|
|
'nsIGSettingsService.idl',
|
2013-03-12 21:17:46 +04:00
|
|
|
'nsIHapticFeedback.idl',
|
2015-02-17 07:59:00 +03:00
|
|
|
'nsIPackageKitService.idl',
|
2013-03-12 21:17:46 +04:00
|
|
|
'nsIXULAppInfo.idl',
|
|
|
|
'nsIXULRuntime.idl',
|
|
|
|
]
|
|
|
|
|
2013-03-12 21:20:41 +04:00
|
|
|
if CONFIG['MOZ_CRASHREPORTER']:
|
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsICrashReporter.idl',
|
|
|
|
]
|
|
|
|
|
2013-03-12 09:00:00 +04:00
|
|
|
XPIDL_MODULE = 'xpcom_system'
|
|
|
|
|
2015-09-23 07:39:03 +03:00
|
|
|
if CONFIG['GNU_CXX']:
|
|
|
|
CXXFLAGS += ['-Wshadow']
|