2014-07-28 23:28:20 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2014-09-24 09:03:20 +04:00
|
|
|
'Fetch.h',
|
2014-10-06 22:01:20 +04:00
|
|
|
'FetchDriver.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 += [
|
2014-09-24 09:03:20 +04:00
|
|
|
'Fetch.cpp',
|
2014-10-06 22:01:20 +04:00
|
|
|
'FetchDriver.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
|
|
|
]
|
|
|
|
|
2014-07-30 01:24:22 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../workers',
|
2014-10-06 22:01:20 +04:00
|
|
|
# For nsDataHandler.h
|
|
|
|
'/netwerk/protocol/data',
|
2014-07-30 01:24:22 +04:00
|
|
|
]
|
|
|
|
|
2014-07-28 23:28:20 +04:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
FINAL_LIBRARY = 'xul'
|