2013-11-12 18:11:39 +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/.
|
|
|
|
#
|
|
|
|
# Copyright © 2013 Deutsche Telekom, Inc.
|
|
|
|
|
|
|
|
if CONFIG['MOZ_NFC']:
|
|
|
|
EXPORTS.mozilla.dom += [
|
2014-01-29 00:20:17 +00:00
|
|
|
'MozNDEFRecord.h',
|
2013-11-12 18:11:39 +00:00
|
|
|
]
|
|
|
|
SOURCES += [
|
2014-01-29 00:20:17 +00:00
|
|
|
'MozNDEFRecord.cpp',
|
2013-11-12 18:11:39 +00:00
|
|
|
]
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'nsNfc.js',
|
|
|
|
'nsNfc.manifest',
|
|
|
|
]
|
|
|
|
|
2013-11-06 11:59:41 +00:00
|
|
|
TEST_DIRS += ['tests']
|
|
|
|
|
2013-11-12 18:11:39 +00:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-11-19 02:47:14 +00:00
|
|
|
FINAL_LIBRARY = 'gklayout'
|