Backed out changesets d8fd745a0095 and 30b7ebdf5c99 (bug 924480) for robocop-3 failures.
[gecko.git] / netwerk / dns / moz.build
blobbc967b2fe9269aedf000d4ca684312043bc52b02
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 XPIDL_SOURCES += [
8     'nsIDNSListener.idl',
9     'nsIDNSRecord.idl',
10     'nsIDNSService.idl',
11     'nsIEffectiveTLDService.idl',
12     'nsIIDNService.idl',
13     'nsPIDNSService.idl',
16 XPIDL_MODULE = 'necko_dns'
18 MODULE = 'necko'
20 EXPORTS.mozilla.net += [
21     'DNS.h',
24 CSRCS += [
25     'nameprep.c',
26     'punycode.c',
27     'race.c',
30 CPP_SOURCES += [
31     'DNS.cpp',
32     'nsDNSService2.cpp',
33     'nsEffectiveTLDService.cpp',
34     'nsHostResolver.cpp',
35     'nsIDNService.cpp',
38 LIBRARY_NAME = 'neckodns_s'
40 FAIL_ON_WARNINGS = True
42 LIBXUL_LIBRARY = True
44 MSVC_ENABLE_PGO = True