2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2014-07-28 23:28:20 +04: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/.
|
|
|
|
|
2017-03-01 16:20:25 +03:00
|
|
|
with Files("**"):
|
2019-04-25 12:14:08 +03:00
|
|
|
BUG_COMPONENT = ("Core", "DOM: Networking")
|
2017-03-01 16:20:25 +03:00
|
|
|
|
2014-07-28 23:28:20 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
2017-01-24 14:13:31 +03:00
|
|
|
'BodyExtractor.h',
|
2015-05-25 21:21:05 +03:00
|
|
|
'ChannelInfo.h',
|
2014-09-24 09:03:20 +04:00
|
|
|
'Fetch.h',
|
2014-10-06 22:01:20 +04:00
|
|
|
'FetchDriver.h',
|
2016-06-07 12:46:03 +03:00
|
|
|
'FetchIPCTypes.h',
|
2017-03-22 13:06:23 +03:00
|
|
|
'FetchObserver.h',
|
2017-08-11 04:04:55 +03:00
|
|
|
'FetchStreamReader.h',
|
2015-09-11 21:26:33 +03:00
|
|
|
'FetchUtil.h',
|
2014-07-28 23:28:20 +04:00
|
|
|
'Headers.h',
|
2014-10-02 21:59:20 +04:00
|
|
|
'InternalHeaders.h',
|
2014-09-24 09:03:20 +04:00
|
|
|
'InternalRequest.h',
|
2014-09-27 03:41:15 +04:00
|
|
|
'InternalResponse.h',
|
2014-07-25 04:53:03 +04:00
|
|
|
'Request.h',
|
2014-07-25 04:50:32 +04:00
|
|
|
'Response.h',
|
2014-07-28 23:28:20 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2017-01-24 14:13:31 +03:00
|
|
|
'BodyExtractor.cpp',
|
2015-05-25 21:21:05 +03:00
|
|
|
'ChannelInfo.cpp',
|
2018-11-06 16:48:07 +03:00
|
|
|
'EmptyBody.cpp',
|
2014-09-24 09:03:20 +04:00
|
|
|
'Fetch.cpp',
|
2014-10-06 22:01:20 +04:00
|
|
|
'FetchDriver.cpp',
|
2017-03-22 13:06:23 +03:00
|
|
|
'FetchObserver.cpp',
|
2017-08-11 04:04:55 +03:00
|
|
|
'FetchStreamReader.cpp',
|
2015-09-11 21:26:33 +03:00
|
|
|
'FetchUtil.cpp',
|
2014-07-28 23:28:20 +04:00
|
|
|
'Headers.cpp',
|
2014-10-02 21:59:20 +04:00
|
|
|
'InternalHeaders.cpp',
|
2014-09-24 09:03:20 +04:00
|
|
|
'InternalRequest.cpp',
|
2014-09-27 03:41:15 +04:00
|
|
|
'InternalResponse.cpp',
|
2014-07-25 04:53:03 +04:00
|
|
|
'Request.cpp',
|
2014-07-25 04:50:32 +04:00
|
|
|
'Response.cpp',
|
2014-07-28 23:28:20 +04:00
|
|
|
]
|
|
|
|
|
2015-05-25 21:21:05 +03:00
|
|
|
IPDL_SOURCES += [
|
|
|
|
'ChannelInfo.ipdlh',
|
2016-06-07 12:46:03 +03:00
|
|
|
'FetchTypes.ipdlh',
|
2015-05-25 21:21:05 +03:00
|
|
|
]
|
|
|
|
|
2014-07-30 01:24:22 +04:00
|
|
|
LOCAL_INCLUDES += [
|
2018-04-09 23:30:32 +03:00
|
|
|
# For nsDOMSerializer
|
|
|
|
'/dom/base',
|
2015-05-25 21:21:05 +03:00
|
|
|
# For HttpBaseChannel.h dependencies
|
|
|
|
'/netwerk/base',
|
2014-10-06 22:01:20 +04:00
|
|
|
# For nsDataHandler.h
|
|
|
|
'/netwerk/protocol/data',
|
2015-05-25 21:21:05 +03:00
|
|
|
# For HttpBaseChannel.h
|
|
|
|
'/netwerk/protocol/http',
|
2014-07-30 01:24:22 +04:00
|
|
|
]
|
|
|
|
|
2018-09-11 22:13:15 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += [ 'tests/browser.ini' ]
|
2019-05-13 20:03:58 +03:00
|
|
|
MOCHITEST_MANIFESTS += [ 'tests/mochitest.ini' ]
|
2018-09-11 22:13:15 +03:00
|
|
|
|
2014-07-28 23:28:20 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2015-05-25 21:21:05 +03:00
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|