2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:20 +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/.
|
|
|
|
|
2014-08-27 17:12:15 +00:00
|
|
|
DIRS += ['interfaces']
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'Icc.h',
|
2014-10-13 04:35:53 +00:00
|
|
|
'IccCardLockError.h',
|
2014-09-19 07:53:05 +00:00
|
|
|
'IccInfo.h',
|
2014-08-27 17:12:15 +00:00
|
|
|
'IccManager.h',
|
|
|
|
]
|
|
|
|
|
2015-01-07 08:58:35 +00:00
|
|
|
EXPORTS.mozilla.dom.icc += [
|
|
|
|
'ipc/IccChild.h',
|
2015-06-16 09:41:47 +00:00
|
|
|
'ipc/IccIPCUtils.h',
|
|
|
|
'ipc/IccParent.h'
|
2015-01-07 08:58:35 +00:00
|
|
|
]
|
|
|
|
|
2014-09-25 14:10:42 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2014-09-03 11:31:00 +00:00
|
|
|
'Assertions.cpp',
|
2014-08-27 17:12:15 +00:00
|
|
|
'Icc.cpp',
|
2015-01-13 10:03:44 +00:00
|
|
|
'IccCallback.cpp',
|
2014-10-13 04:35:53 +00:00
|
|
|
'IccCardLockError.cpp',
|
2015-06-16 09:35:42 +00:00
|
|
|
'IccContact.cpp',
|
2014-09-19 07:53:05 +00:00
|
|
|
"IccInfo.cpp",
|
2014-08-27 17:12:15 +00:00
|
|
|
'IccListener.cpp',
|
|
|
|
'IccManager.cpp',
|
2015-01-07 08:58:35 +00:00
|
|
|
'ipc/IccChild.cpp',
|
|
|
|
'ipc/IccIPCService.cpp',
|
2015-06-16 09:41:47 +00:00
|
|
|
'ipc/IccIPCUtils.cpp',
|
2015-01-07 08:58:35 +00:00
|
|
|
'ipc/IccParent.cpp',
|
2015-01-07 06:53:21 +00:00
|
|
|
]
|
|
|
|
|
2015-01-07 06:53:21 +00:00
|
|
|
IPDL_SOURCES += [
|
|
|
|
'ipc/PIcc.ipdl',
|
|
|
|
'ipc/PIccRequest.ipdl',
|
|
|
|
'ipc/PIccTypes.ipdlh',
|
|
|
|
]
|
|
|
|
|
2014-10-27 07:58:56 +00:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and CONFIG['MOZ_B2G_RIL']:
|
2015-01-06 05:32:08 +00:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'gonk/IccService.js',
|
|
|
|
'gonk/IccService.manifest',
|
2015-04-15 10:33:26 +00:00
|
|
|
'gonk/StkCmdFactory.js',
|
|
|
|
'gonk/StkCmdFactory.manifest'
|
2015-01-06 05:32:08 +00:00
|
|
|
]
|
2014-10-27 07:58:56 +00:00
|
|
|
|
2014-08-27 17:12:15 +00:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/system/gonk',
|
|
|
|
]
|
2015-09-23 04:39:03 +00:00
|
|
|
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
|
|
CXXFLAGS += ['-Wshadow']
|