Bug 1393805 - Part 5 - Test that the system extensions dev dir is readable from conte...
[gecko.git] / moz.build
blobd1528608aeef2e527c70fc016bf58996697e1611
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 with Files('AUTHORS'):
8     BUG_COMPONENT = ('mozilla.org', 'Licensing')
10 with Files('LICENSE'):
11     BUG_COMPONENT = ('mozilla.org', 'Licensing')
13 with Files('LEGAL'):
14     BUG_COMPONENT = ('mozilla.org', 'Licensing')
16 with Files('aclocal.m4'):
17     BUG_COMPONENT = ('Core', 'Build Config')
19 with Files('client.*'):
20     BUG_COMPONENT = ('Core', 'Build Config')
22 with Files('CLOBBER'):
23     BUG_COMPONENT = ('Core', 'Build Config')
25 with Files('*configure*'):
26     BUG_COMPONENT = ('Core', 'Build Config')
28 with Files('mach'):
29     BUG_COMPONENT = ('Core', 'mach')
31 with Files('*moz*'):
32     BUG_COMPONENT = ('Core', 'Build Config')
34 with Files('GNUmakefile'):
35     BUG_COMPONENT = ('Core', 'Build Config')
37 with Files('*gradle*'):
38     BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
39     SCHEDULES.exclusive = ['android']
41 with Files('**/l10n.toml'):
42     BUG_COMPONENT = ('Core', 'Localization')
43     FINAL = True
45 with Files('README.txt'):
46     BUG_COMPONENT = ('Core', 'General')
48 with Files('**/Makefile.in'):
49     BUG_COMPONENT = ('Core', 'Build Config')
50     FINAL = True
52 FILES_PER_UNIFIED_FILE = 1
54 CONFIGURE_SUBST_FILES += [
55     'config/autoconf.mk',
56     'config/emptyvars.mk',
59 if CONFIG['ENABLE_CLANG_PLUGIN']:
60     DIRS += ['build/clang-plugin']
62 DIRS += [
63     'config',
64     'python',
65     'taskcluster',
66     'testing/mozbase',
67     'third_party/python',
70 if not CONFIG['JS_STANDALONE']:
71     # These python manifests are included here so they get picked up without an objdir
72     PYTHON_UNITTEST_MANIFESTS += [
73         'layout/tools/reftest/selftest/python.ini',
74         'testing/marionette/harness/marionette_harness/tests/harness_unit/python.ini',
75         'testing/mochitest/tests/python/python.ini',
76     ]
78     CONFIGURE_SUBST_FILES += [
79         'tools/update-packaging/Makefile',
80     ]
81     CONFIGURE_DEFINE_FILES += [
82         'mozilla-config.h',
83     ]
84     EXPORTS += [
85         '!buildid.h',
86         '!mozilla-config.h',
87         '!source-repo.h',
88     ]
90     GENERATED_FILES += [
91         'buildid.h',
92         'source-repo.h',
93     ]
95     GENERATED_FILES['buildid.h'].script = 'build/variables.py:buildid_header'
96     GENERATED_FILES['source-repo.h'].script = 'build/variables.py:source_repo_header'
98     DIRS += [
99         'build',
100         'tools',
101         'probes',
102     ]
104 if CONFIG['COMPILE_ENVIRONMENT']:
105     DIRS += ['js/src']
107 DIRS += [
108     'config/external/fdlibm',
109     'config/external/nspr',
110     'config/external/zlib',
111     'memory',
112     'mfbt',
113     'mozglue',
116 if not CONFIG['JS_STANDALONE']:
117     DIRS += ['xpcom/xpidl']
119 if CONFIG['USE_ICU']:
120     DIRS += ['config/external/icu']
122 if CONFIG['COMPILE_ENVIRONMENT']:
123     if not CONFIG['JS_STANDALONE']:
124         DIRS += [
125             'config/external',
126             'security',
127         ]
129     if CONFIG['BUILD_CTYPES']:
130         DIRS += ['config/external/ffi']
132 else:
133     TEST_DIRS += ['js/src/tests']
135 if not CONFIG['JS_STANDALONE'] and CONFIG['MOZ_BUILD_APP']:
136     # Bring in the configuration for the configured application.
137     include('/' + CONFIG['MOZ_BUILD_APP'] + '/app.mozbuild')
139 CONFIGURE_SUBST_FILES += ['.cargo/config']
141 include('build/templates.mozbuild')