2012-05-21 04:12:37 -07:00
|
|
|
# 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/.
|
2009-08-18 12:05:15 -07:00
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2009-08-18 12:05:15 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
2012-08-25 11:19:00 -07:00
|
|
|
FAIL_ON_WARNINGS := 1
|
2009-08-18 12:05:15 -07:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = necko
|
|
|
|
|
|
|
|
LIBRARY_NAME = neckoipc_s
|
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
EXPORT_LIBRARY = 1
|
|
|
|
EXPORTS_NAMESPACES = mozilla/net
|
|
|
|
|
|
|
|
EXPORTS_mozilla/net = \
|
|
|
|
NeckoParent.h \
|
|
|
|
NeckoChild.h \
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 11:55:33 -07:00
|
|
|
NeckoCommon.h \
|
2010-04-08 23:26:36 -07:00
|
|
|
NeckoMessageUtils.h \
|
2010-09-20 11:37:09 -07:00
|
|
|
ChannelEventQueue.h \
|
2012-12-22 05:56:21 -08:00
|
|
|
RemoteOpenFileParent.h \
|
|
|
|
RemoteOpenFileChild.h \
|
2009-08-18 12:05:15 -07:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
CPPSRCS = \
|
2013-01-25 11:28:00 -08:00
|
|
|
NeckoCommon.cpp \
|
2009-08-18 12:05:15 -07:00
|
|
|
NeckoChild.cpp \
|
|
|
|
NeckoParent.cpp \
|
2011-06-11 18:37:09 -07:00
|
|
|
ChannelEventQueue.cpp \
|
2012-12-22 05:56:21 -08:00
|
|
|
RemoteOpenFileParent.cpp \
|
|
|
|
RemoteOpenFileChild.cpp \
|
2009-08-18 12:05:15 -07:00
|
|
|
$(NULL)
|
|
|
|
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 11:55:33 -07:00
|
|
|
LOCAL_INCLUDES += \
|
2010-06-07 15:02:45 -07:00
|
|
|
-I$(srcdir)/../protocol/http \
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 11:55:33 -07:00
|
|
|
-I$(srcdir)/../base/src \
|
2013-02-15 14:27:21 -08:00
|
|
|
-I$(topsrcdir)/modules/libjar \
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 11:55:33 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2009-08-18 12:05:15 -07:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
include $(topsrcdir)/config/rules.mk
|