summaryrefslogtreecommitdiffstats
path: root/uriloader/base/moz.build
blob: 36282f6f144838c57aac0f743283a6730ec1526e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.

include("/ipc/chromium/chromium-config.mozbuild")

with Files("**"):
    BUG_COMPONENT = ("Core", "Document Navigation")

with Files("nsITransfer.idl"):
    BUG_COMPONENT = ("Firefox", "File Handling")

XPIDL_SOURCES += [
    "nsCURILoader.idl",
    "nsIContentHandler.idl",
    "nsIDocumentLoader.idl",
    "nsITransfer.idl",
    "nsIURIContentListener.idl",
    "nsIURILoader.idl",
    "nsIWebProgress.idl",
    "nsIWebProgressListener.idl",
    "nsIWebProgressListener2.idl",
]

XPIDL_MODULE = "uriloader"

EXPORTS += [
    "nsDocLoader.h",
    "nsURILoader.h",
]

UNIFIED_SOURCES += [
    "nsDocLoader.cpp",
    "nsURILoader.cpp",
]

LOCAL_INCLUDES += [
    "/netwerk/base",
]

FINAL_LIBRARY = "xul"