mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
f9ce4741fd
This patch converts |ListenSocket| to forward events to an instance of |ListenSocketConsumer|. All users are converted and the related listener and consumer classes are removed.
19 lines
461 B
Python
19 lines
461 B
Python
# 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/.
|
|
|
|
if CONFIG['MOZ_NFC']:
|
|
EXPORTS.mozilla.ipc += [
|
|
'NfcConnector.h',
|
|
]
|
|
SOURCES += [
|
|
'NfcConnector.cpp',
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
FAIL_ON_WARNINGS = True
|