2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +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/.
|
|
|
|
|
2014-04-02 06:52:04 +04:00
|
|
|
DEFINES.update({
|
|
|
|
'IMPL_LIBXUL': True,
|
|
|
|
'MOZILLA_INTERNAL_API': True,
|
|
|
|
})
|
|
|
|
|
2013-08-22 10:56:00 +04:00
|
|
|
# Do NOT export this library. We don't actually want our test code
|
|
|
|
# being added to libxul or anything.
|
|
|
|
|
2014-09-03 09:10:54 +04:00
|
|
|
Library('dombindings_test_s')
|
2013-08-15 17:02:09 +04:00
|
|
|
|
2014-02-15 10:36:43 +04:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'TestInterfaceJS.js',
|
|
|
|
'TestInterfaceJS.manifest',
|
|
|
|
]
|
|
|
|
|
2013-09-30 11:51:57 +04:00
|
|
|
MOCHITEST_MANIFESTS += ['mochitest.ini']
|
|
|
|
|
2013-09-30 11:52:01 +04:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['chrome.ini']
|
|
|
|
|
2013-12-12 11:26:38 +04:00
|
|
|
TEST_WEBIDL_FILES += [
|
|
|
|
'TestDictionary.webidl',
|
|
|
|
'TestJSImplInheritanceGen.webidl',
|
|
|
|
'TestTypedef.webidl',
|
|
|
|
]
|
|
|
|
|
|
|
|
PREPROCESSED_TEST_WEBIDL_FILES += [
|
|
|
|
'TestCodeGen.webidl',
|
|
|
|
'TestExampleGen.webidl',
|
|
|
|
'TestJSImplGen.webidl',
|
|
|
|
]
|
|
|
|
|
2013-12-15 23:43:47 +04:00
|
|
|
WEBIDL_EXAMPLE_INTERFACES += [
|
|
|
|
'TestExampleInterface',
|
|
|
|
'TestExampleProxyInterface',
|
|
|
|
]
|
|
|
|
|
2014-02-18 17:49:12 +04:00
|
|
|
GENERATED_INCLUDES += ['..']
|
2013-11-11 12:04:11 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/bindings',
|
|
|
|
'/js/xpconnect/src',
|
|
|
|
'/js/xpconnect/wrappers',
|
|
|
|
]
|