xpcom/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xpcom/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,47 @@
     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 +PARALLEL_DIRS += [
    1.11 +    'idl-parser',
    1.12 +]
    1.13 +
    1.14 +DIRS += [
    1.15 +    'typelib',
    1.16 +    'string',
    1.17 +    'glue',
    1.18 +    'base',
    1.19 +    'ds',
    1.20 +    'io',
    1.21 +    'components',
    1.22 +    'threads',
    1.23 +    'reflect',
    1.24 +    'system',
    1.25 +    '../chrome',
    1.26 +    'build',
    1.27 +]
    1.28 +
    1.29 +if CONFIG['OS_ARCH'] == 'WINNT' and CONFIG['MOZ_DEBUG']:
    1.30 +    DIRS += ['windbgdlg']
    1.31 +
    1.32 +TEST_TOOL_DIRS += [
    1.33 +    'tests',
    1.34 +    'sample',
    1.35 +    'typelib/xpt/tests',
    1.36 +]
    1.37 +
    1.38 +#  Can't build internal xptcall tests that use symbols which are not exported.
    1.39 +#TEST_TOOL_DIRS += [
    1.40 +#    'reflect/xptinfo/tests',
    1.41 +#    'reflect/xptcall/tests,
    1.42 +#]
    1.43 +
    1.44 +if CONFIG['DEHYDRA_PATH']:
    1.45 +    DIRS += ['analysis']
    1.46 +
    1.47 +CONFIGURE_DEFINE_FILES += [
    1.48 +    'xpcom-config.h',
    1.49 +    'xpcom-private.h',
    1.50 +]

mercurial