2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:23 +00: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/.
|
|
|
|
|
2014-07-28 23:55:55 +00:00
|
|
|
TEST_DIRS += ['httpserver']
|
2013-03-19 18:47:00 +00:00
|
|
|
|
2014-02-06 21:00:20 +00:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['browser/browser.ini']
|
|
|
|
MOCHITEST_MANIFESTS += ['mochitests/mochitest.ini']
|
2013-04-29 18:49:00 +00:00
|
|
|
|
2015-01-03 01:00:20 +00:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
|
|
'unit/xpcshell.ini',
|
2015-04-02 01:17:59 +00:00
|
|
|
'unit/xpcshell_b2g.ini',
|
2015-01-03 01:00:20 +00:00
|
|
|
'unit_ipc/xpcshell.ini',
|
|
|
|
]
|
2013-04-23 21:54:15 +00:00
|
|
|
|
2014-10-30 04:06:12 +00:00
|
|
|
GeckoSimplePrograms([
|
2013-08-14 07:00:13 +00:00
|
|
|
'PropertiesTest',
|
|
|
|
'ReadNTLM',
|
|
|
|
'TestBlockingSocket',
|
|
|
|
'TestDNS',
|
|
|
|
'TestIncrementalDownload',
|
|
|
|
'TestOpen',
|
|
|
|
'TestProtocols',
|
|
|
|
'TestServ',
|
|
|
|
'TestStandardURL',
|
|
|
|
'TestStreamLoader',
|
|
|
|
'TestUpload',
|
2013-10-23 23:05:43 +00:00
|
|
|
'TestURLParser',
|
2013-08-14 07:00:13 +00:00
|
|
|
'urltest',
|
2014-09-03 05:10:54 +00:00
|
|
|
])
|
2013-08-14 07:00:13 +00:00
|
|
|
|
|
|
|
# XXX Make this work in libxul builds.
|
2013-11-01 23:43:55 +00:00
|
|
|
#SIMPLE_PROGRAMS += [
|
2013-08-14 07:00:13 +00:00
|
|
|
# TestIDN',
|
|
|
|
# TestIOThreads',
|
|
|
|
# TestSocketTransport',
|
|
|
|
# TestStreamPump',
|
|
|
|
# TestStreamTransport',
|
|
|
|
# TestUDPSocketProvider',
|
|
|
|
#]
|
|
|
|
|
2014-09-03 05:10:54 +00:00
|
|
|
CppUnitTests([
|
2014-10-07 09:25:54 +00:00
|
|
|
'TestBind',
|
2014-07-24 17:01:43 +00:00
|
|
|
'TestCookie',
|
2014-07-23 04:29:44 +00:00
|
|
|
'TestUDPSocket',
|
2014-09-03 05:10:54 +00:00
|
|
|
])
|
2013-07-24 07:23:06 +00:00
|
|
|
|
2013-11-05 18:37:54 +00:00
|
|
|
RESOURCE_FILES += [
|
|
|
|
'urlparse.dat',
|
|
|
|
'urlparse_unx.dat',
|
|
|
|
]
|
2014-07-23 04:30:52 +00:00
|
|
|
|
2014-08-07 18:46:58 +00:00
|
|
|
CXXFLAGS += CONFIG['TK_CFLAGS']
|