gecko-dev/dom/xhr/moz.build
Andrea Marchesini 37ac18fc67 Bug 1269162 - part 6 - Merge XMLHttpRequestWorker and XMLHttpRequestMainThread, r=smaug
--HG--
rename : dom/xhr/nsXMLHttpRequest.cpp => dom/xhr/XMLHttpRequestMainThread.cpp
rename : dom/xhr/nsXMLHttpRequest.h => dom/xhr/XMLHttpRequestMainThread.h
2016-06-27 19:13:41 +02:00

37 lines
876 B
Python

# -*- 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/.
XPIDL_SOURCES += [
'nsIXMLHttpRequest.idl',
]
XPIDL_MODULE = 'dom_xhr'
EXPORTS.mozilla.dom += [
'XMLHttpRequest.h',
'XMLHttpRequestEventTarget.h',
'XMLHttpRequestMainThread.h',
'XMLHttpRequestUpload.h',
]
UNIFIED_SOURCES += [
'XMLHttpRequest.cpp',
'XMLHttpRequestEventTarget.cpp',
'XMLHttpRequestMainThread.cpp',
'XMLHttpRequestUpload.cpp',
'XMLHttpRequestWorker.cpp',
]
LOCAL_INCLUDES += [
'/dom/base',
'/dom/workers',
'/netwerk/base',
]
MOCHITEST_MANIFESTS += [ 'tests/mochitest.ini' ]
FINAL_LIBRARY = 'xul'