dom/bindings/test/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/bindings/test/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,48 @@
     1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     1.5 +# vim: set filetype=python:
     1.6 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.9 +
    1.10 +DEFINES.update({
    1.11 +    'IMPL_LIBXUL': True,
    1.12 +    'MOZILLA_INTERNAL_API': True,
    1.13 +})
    1.14 +
    1.15 +# Do NOT export this library.  We don't actually want our test code
    1.16 +# being added to libxul or anything.
    1.17 +
    1.18 +LIBRARY_NAME = 'dombindings_test_s'
    1.19 +
    1.20 +EXTRA_COMPONENTS += [
    1.21 +    'TestInterfaceJS.js',
    1.22 +    'TestInterfaceJS.manifest',
    1.23 +]
    1.24 +
    1.25 +MOCHITEST_MANIFESTS += ['mochitest.ini']
    1.26 +
    1.27 +MOCHITEST_CHROME_MANIFESTS += ['chrome.ini']
    1.28 +
    1.29 +TEST_WEBIDL_FILES += [
    1.30 +    'TestDictionary.webidl',
    1.31 +    'TestJSImplInheritanceGen.webidl',
    1.32 +    'TestTypedef.webidl',
    1.33 +]
    1.34 +
    1.35 +PREPROCESSED_TEST_WEBIDL_FILES += [
    1.36 +    'TestCodeGen.webidl',
    1.37 +    'TestExampleGen.webidl',
    1.38 +    'TestJSImplGen.webidl',
    1.39 +]
    1.40 +
    1.41 +WEBIDL_EXAMPLE_INTERFACES += [
    1.42 +    'TestExampleInterface',
    1.43 +    'TestExampleProxyInterface',
    1.44 +]
    1.45 +
    1.46 +GENERATED_INCLUDES += ['..']
    1.47 +LOCAL_INCLUDES += [
    1.48 +    '/dom/bindings',
    1.49 +    '/js/xpconnect/src',
    1.50 +    '/js/xpconnect/wrappers',
    1.51 +]

mercurial