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("**"):
|
2019-02-13 17:22:06 +03:00
|
|
|
BUG_COMPONENT = ("Core", "DOM: Web Authentication")
|
2017-02-06 17:45:55 +03:00
|
|
|
|
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",
|
Bug 1245527 - Rewrite U2F.cpp to use U2FTokenManager. r=keeler, r=ttaubert
- This patch reworks the U2F module to asynchronously call U2FManager,
which in turn handles constructing and managing the U2FTokenManager
via IPC.
- Add U2FTransaction{Parent,Child} implementations to mirror similar ones for
WebAuthn
- Rewrite all tests to compensate for U2F executing asynchronously now.
- Used async tasks, used the manifest parameters for scheme, and generally
made these cleaner.
- The mochitest "pref =" functionality from Bug 1328830 doesn't support Android
yet, causing breakage on Android. Rework the tests to go back to the old way
of using iframes to test U2F.
NOTE TO REVIEWERS:
Since this is huge, I recommend the following:
keeler - please review U2F.cpp/h, the tests, and the security-prefs.js. Most
of the U2F logic is still in U2F.cpp like before, but there's been
some reworking of how it is called.
ttaubert - please review U2FManager, the Transaction classes, build changes,
and the changes to nsGlobalWindow. All of these should be very
similar to the WebAuthn code it's patterned off.
MozReview-Commit-ID: C1ZN2ch66Rm
--HG--
extra : rebase_source : 5a2c52b0340c13f471af5040b998eb7e661b1981
2017-09-11 22:56:59 +03:00
|
|
|
"/dom/webauthn",
|
2016-02-09 18:43:00 +03:00
|
|
|
"/security/manager/ssl",
|
|
|
|
]
|
|
|
|
|
2017-01-09 23:22:49 +03:00
|
|
|
MOCHITEST_MANIFESTS += ["tests/mochitest.ini"]
|
2017-11-28 12:08:49 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ["tests/browser/browser.ini"]
|