2016-07-14 10:16:42 -06:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 13:20:01 -08:00
|
|
|
# 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/.
|
|
|
|
|
2016-10-21 16:56:51 -04:00
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
|
2013-03-12 10:17:46 -07:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
"nsCURILoader.idl",
|
|
|
|
"nsIContentHandler.idl",
|
|
|
|
"nsIDocumentLoader.idl",
|
|
|
|
"nsITransfer.idl",
|
|
|
|
"nsIURIContentListener.idl",
|
|
|
|
"nsIURILoader.idl",
|
|
|
|
"nsIWebProgress.idl",
|
|
|
|
"nsIWebProgressListener.idl",
|
|
|
|
"nsIWebProgressListener2.idl",
|
|
|
|
]
|
|
|
|
|
2013-11-19 11:47:43 +09:00
|
|
|
XPIDL_MODULE = "uriloader"
|
2013-03-19 11:47:00 -07:00
|
|
|
|
2013-04-16 15:24:43 -04:00
|
|
|
EXPORTS += [
|
|
|
|
"nsDocLoader.h",
|
|
|
|
"nsURILoader.h",
|
|
|
|
]
|
|
|
|
|
2013-11-18 23:50:59 -08:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 17:54:15 -04:00
|
|
|
"nsDocLoader.cpp",
|
|
|
|
"nsURILoader.cpp",
|
|
|
|
]
|
|
|
|
|
2020-05-21 03:38:37 +00:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
"/netwerk/base",
|
|
|
|
]
|
|
|
|
|
2013-11-19 11:47:14 +09:00
|
|
|
FINAL_LIBRARY = "xul"
|
2021-08-25 10:46:17 +00:00
|
|
|
|
|
|
|
REQUIRES_UNIFIED_BUILD = True
|