2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:23 +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/.
|
|
|
|
|
2016-07-25 22:48:05 +03:00
|
|
|
TEST_DIRS += ['httpserver', 'gtest']
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2014-02-07 01:00:20 +04:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['browser/browser.ini']
|
|
|
|
MOCHITEST_MANIFESTS += ['mochitests/mochitest.ini']
|
2013-04-29 22:49:00 +04:00
|
|
|
|
2015-01-03 04:00:20 +03:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
|
|
'unit/xpcshell.ini',
|
|
|
|
'unit_ipc/xpcshell.ini',
|
|
|
|
]
|
2013-04-24 01:54:15 +04:00
|
|
|
|
2016-11-29 21:53:48 +03:00
|
|
|
FINAL_LIBRARY = 'xul-gtest'
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'TestBind.cpp',
|
|
|
|
'TestCookie.cpp',
|
|
|
|
'TestUDPSocket.cpp',
|
|
|
|
]
|
2013-07-24 11:23:06 +04:00
|
|
|
|
2016-09-30 19:51:01 +03:00
|
|
|
if CONFIG['OS_TARGET'] == 'WINNT':
|
2016-11-29 21:53:48 +03:00
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'TestNamedPipeService.cpp',
|
|
|
|
]
|
2016-09-30 19:51:01 +03:00
|
|
|
|
2016-02-25 18:41:13 +03:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
2016-05-11 10:00:01 +03:00
|
|
|
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
|
|
CXXFLAGS += ['-Wno-shadow']
|