moz.build (1101B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 8 with Files("**"): 9 BUG_COMPONENT = ("Core", "DOM: Credential Management") 10 11 EXPORTS.mozilla.dom += [ 12 "IdentityCredential.h", 13 "IdentityCredentialSerializationHelpers.h", 14 "IdentityNetworkHelpers.h", 15 "IdentityProvider.h", 16 "NavigatorLogin.h", 17 "WebIdentityChild.h", 18 "WebIdentityHandler.h", 19 "WebIdentityParent.h", 20 ] 21 22 IPDL_SOURCES += [ 23 "PWebIdentity.ipdl", 24 ] 25 26 UNIFIED_SOURCES += [ 27 "IdentityCredential.cpp", 28 "IdentityNetworkHelpers.cpp", 29 "IdentityProvider.cpp", 30 "NavigatorLogin.cpp", 31 "WebIdentityChild.cpp", 32 "WebIdentityHandler.cpp", 33 "WebIdentityParent.cpp", 34 ] 35 36 include("/ipc/chromium/chromium-config.mozbuild") 37 38 FINAL_LIBRARY = "xul" 39 40 BROWSER_CHROME_MANIFESTS += ["tests/browser/browser.toml"] 41 MOCHITEST_MANIFESTS += ["tests/mochitest/mochitest.toml"]