2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +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 += [
|
|
|
|
'nsIWifi.idl',
|
2014-04-30 15:58:35 +04:00
|
|
|
'nsIWifiCertService.idl',
|
2013-08-28 00:54:51 +04:00
|
|
|
'nsIWifiService.idl',
|
2013-03-12 21:17:46 +04:00
|
|
|
]
|
|
|
|
|
2013-03-12 09:00:00 +04:00
|
|
|
XPIDL_MODULE = 'dom_wifi'
|
|
|
|
|
2013-06-12 00:38:22 +04:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'DOMWifiManager.js',
|
|
|
|
'DOMWifiManager.manifest',
|
2014-01-14 14:23:42 +04:00
|
|
|
'DOMWifiP2pManager.js',
|
|
|
|
'DOMWifiP2pManager.manifest',
|
2013-06-12 00:38:22 +04:00
|
|
|
'WifiWorker.js',
|
|
|
|
'WifiWorker.manifest',
|
|
|
|
]
|
|
|
|
|
2013-09-30 07:05:05 +04:00
|
|
|
EXTRA_JS_MODULES += [
|
2014-01-14 14:23:42 +04:00
|
|
|
'StateMachine.jsm',
|
2013-09-30 07:05:05 +04:00
|
|
|
'WifiCommand.jsm',
|
|
|
|
'WifiNetUtil.jsm',
|
2014-01-14 14:23:42 +04:00
|
|
|
'WifiP2pManager.jsm',
|
|
|
|
'WifiP2pWorkerObserver.jsm',
|
2013-09-30 07:05:05 +04:00
|
|
|
]
|
|
|
|
|
2013-08-28 00:54:51 +04:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
2014-09-25 18:10:42 +04:00
|
|
|
UNIFIED_SOURCES = [
|
2014-04-28 11:49:57 +04:00
|
|
|
'WifiCertService.cpp',
|
2014-01-22 12:37:40 +04:00
|
|
|
'WifiHotspotUtils.cpp',
|
2013-08-28 00:54:51 +04:00
|
|
|
'WifiProxyService.cpp',
|
|
|
|
'WifiUtils.cpp',
|
|
|
|
]
|
2013-06-10 20:08:47 +04:00
|
|
|
|
2013-11-19 06:47:14 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|