2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2016-02-09 18:43:00 +03: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/.
|
|
|
|
|
2017-02-06 17:45:55 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "DOM: Device Interfaces")
|
|
|
|
|
2016-02-09 18:43:00 +03:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'U2F.h',
|
2017-01-09 23:22:49 +03:00
|
|
|
'U2FAuthenticator.h',
|
2016-02-09 18:43:00 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'U2F.cpp',
|
|
|
|
]
|
|
|
|
|
2016-04-15 19:29:12 +03:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2016-02-09 18:43:00 +03:00
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base',
|
|
|
|
'/dom/crypto',
|
|
|
|
'/security/manager/ssl',
|
|
|
|
'/security/pkix/include',
|
2017-01-09 23:22:49 +03:00
|
|
|
'/security/pkix/lib',
|
2016-02-09 18:43:00 +03:00
|
|
|
]
|
|
|
|
|
2017-01-09 23:22:49 +03:00
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest.ini']
|