Bug 1858509 add thread-safety annotations around MediaSourceDemuxer::mMonitor r=alwu
[gecko.git] / extensions / auth / moz.build
blobac2a23fcf01b83403a2b683245090afd299af5e5
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/.
7 UNIFIED_SOURCES += [
8     "nsAuthGSSAPI.cpp",
11 SOURCES += [
12     "nsAuthSASL.cpp",
13     "nsHttpNegotiateAuth.cpp",  # contains constants whose names conflict with constants in other files
14     "nsIAuthModule.cpp",  # includes windows.h recursively which conflicts with TimeStamp.h
17 if CONFIG["OS_ARCH"] == "WINNT":
18     SOURCES += [
19         "nsAuthSSPI.cpp",
20     ]
21     DEFINES["USE_SSPI"] = True
22 else:
23     UNIFIED_SOURCES += [
24         "nsAuthSambaNTLM.cpp",
25     ]
27 LOCAL_INCLUDES += [
28     "/netwerk/dns",  # For nsDNSService2.h
29     "/security/manager/ssl",
32 FINAL_LIBRARY = "xul"
34 with Files("**"):
35     BUG_COMPONENT = ("Core", "Networking")
37 include("/tools/fuzzing/libfuzzer-config.mozbuild")
39 include("/ipc/chromium/chromium-config.mozbuild")