2017-01-11 23:38:08 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# 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")
|
|
|
|
|
2017-04-20 02:19:28 +03:00
|
|
|
IPDL_SOURCES += [
|
|
|
|
'PWebAuthnTransaction.ipdl'
|
|
|
|
]
|
|
|
|
|
2017-01-11 23:38:08 +03:00
|
|
|
EXPORTS.mozilla.dom += [
|
2017-05-22 23:03:58 +03:00
|
|
|
'AuthenticatorAssertionResponse.h',
|
2017-05-17 03:07:01 +03:00
|
|
|
'AuthenticatorAttestationResponse.h',
|
|
|
|
'AuthenticatorResponse.h',
|
2017-01-11 23:38:08 +03:00
|
|
|
'NSSU2FTokenRemote.h',
|
2017-05-17 03:07:01 +03:00
|
|
|
'PublicKeyCredential.h',
|
2017-06-23 16:48:50 +03:00
|
|
|
'U2FHIDTokenManager.h',
|
2017-05-05 03:48:34 +03:00
|
|
|
'U2FSoftTokenManager.h',
|
|
|
|
'U2FTokenManager.h',
|
|
|
|
'U2FTokenTransport.h',
|
2017-04-20 03:46:08 +03:00
|
|
|
'WebAuthnManager.h',
|
2017-01-11 23:38:08 +03:00
|
|
|
'WebAuthnRequest.h',
|
2017-04-20 03:46:08 +03:00
|
|
|
'WebAuthnTransactionChild.h',
|
2017-05-05 03:48:34 +03:00
|
|
|
'WebAuthnTransactionParent.h',
|
2017-04-20 03:46:08 +03:00
|
|
|
'WebAuthnUtil.h'
|
2017-01-11 23:38:08 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2017-05-22 23:03:58 +03:00
|
|
|
'AuthenticatorAssertionResponse.cpp',
|
2017-05-17 03:07:01 +03:00
|
|
|
'AuthenticatorAttestationResponse.cpp',
|
|
|
|
'AuthenticatorResponse.cpp',
|
2017-01-11 23:38:08 +03:00
|
|
|
'NSSU2FTokenRemote.cpp',
|
2017-05-17 03:07:01 +03:00
|
|
|
'PublicKeyCredential.cpp',
|
2017-06-23 16:48:50 +03:00
|
|
|
'U2FHIDTokenManager.cpp',
|
2017-05-05 03:48:34 +03:00
|
|
|
'U2FSoftTokenManager.cpp',
|
|
|
|
'U2FTokenManager.cpp',
|
2017-04-20 03:46:08 +03:00
|
|
|
'WebAuthnManager.cpp',
|
|
|
|
'WebAuthnTransactionChild.cpp',
|
2017-05-05 03:48:34 +03:00
|
|
|
'WebAuthnTransactionParent.cpp',
|
2017-04-20 03:46:08 +03:00
|
|
|
'WebAuthnUtil.cpp'
|
2017-01-11 23:38:08 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base',
|
|
|
|
'/dom/crypto',
|
|
|
|
'/security/manager/ssl',
|
|
|
|
'/security/pkix/include',
|
|
|
|
'/security/pkix/lib',
|
|
|
|
]
|
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest.ini']
|