Backed out changeset c40e797b011f (bug 765285) for ASAN bustage. r=whyunsetc-nanyway
[gecko.git] / extensions / auth / moz.build
blobf8058d102d17f1b9dfd302eff017d9a3d3b6d75f
1 # -*- Mode: python; c-basic-offset: 4; 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 MODULE = 'auth'
9 SOURCES += [
10     'nsAuthFactory.cpp',
11     'nsAuthGSSAPI.cpp',
12     'nsAuthSASL.cpp',
13     'nsHttpNegotiateAuth.cpp',
16 if CONFIG['OS_ARCH'] == 'WINNT':
17     SOURCES += [
18         'nsAuthSSPI.cpp',
19     ]
20     DEFINES['USE_SSPI'] = True
21 else:
22     SOURCES += [
23         'nsAuthSambaNTLM.cpp',
24     ]
26 LIBRARY_NAME = 'auth'
28 LIBXUL_LIBRARY = True
30 EXPORT_LIBRARY = True