Bug 1370510: Implement Fullscreen Window command r=jgraham
[gecko.git] / moz.build
blob67d926f3e04608c0cefb4ed68a84a66527c5bac8
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('Android.mk'):
20     BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
22 with Files('client.*'):
23     BUG_COMPONENT = ('Core', 'Build Config')
25 with Files('CLOBBER'):
26     BUG_COMPONENT = ('Core', 'Build Config')
28 with Files('*configure*'):
29     BUG_COMPONENT = ('Core', 'Build Config')
31 with Files('mach'):
32     BUG_COMPONENT = ('Core', 'mach')
34 with Files('*moz*'):
35     BUG_COMPONENT = ('Core', 'Build Config')
37 with Files('GNUmakefile'):
38     BUG_COMPONENT = ('Core', 'Build Config')
40 with Files('*gradle*'):
41     BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')
43 with Files('README.txt'):
44     BUG_COMPONENT = ('Core', 'General')
46 with Files('**/Makefile.in'):
47     BUG_COMPONENT = ('Core', 'Build Config')
48     FINAL = True
50 FILES_PER_UNIFIED_FILE = 1
52 CONFIGURE_SUBST_FILES += [
53     'config/autoconf.mk',
54     'config/emptyvars.mk',
57 if CONFIG['ENABLE_CLANG_PLUGIN']:
58     DIRS += ['build/clang-plugin']
60 DIRS += [
61     'config',
62     'python',
63     'taskcluster',
64     'testing/mozbase',
65     'third_party/python',
68 if not CONFIG['JS_STANDALONE']:
69     # These python manifests are included here so they get picked up without an objdir
70     PYTHON_UNITTEST_MANIFESTS += [
71         'testing/marionette/harness/marionette_harness/tests/harness_unit/python.ini',
72     ]
74     CONFIGURE_SUBST_FILES += [
75         'tools/update-packaging/Makefile',
76     ]
77     CONFIGURE_DEFINE_FILES += [
78         'mozilla-config.h',
79     ]
80     EXPORTS += [
81         '!buildid.h',
82         '!mozilla-config.h',
83         '!source-repo.h',
84     ]
86     GENERATED_FILES += [
87         'buildid.h',
88         'source-repo.h',
89     ]
91     GENERATED_FILES['buildid.h'].script = 'build/variables.py:buildid_header'
92     GENERATED_FILES['source-repo.h'].script = 'build/variables.py:source_repo_header'
94     DIRS += [
95         'build',
96         'probes',
97     ]
99 if CONFIG['COMPILE_ENVIRONMENT']:
100     DIRS += ['js/src']
102 DIRS += [
103     'config/external/fdlibm',
104     'config/external/nspr',
105     'config/external/zlib',
106     'memory',
107     'mfbt',
108     'mozglue',
111 if not CONFIG['JS_STANDALONE']:
112     DIRS += ['xpcom/xpidl']
114 if CONFIG['USE_ICU']:
115     DIRS += ['config/external/icu']
117 if CONFIG['COMPILE_ENVIRONMENT']:
118     if not CONFIG['JS_STANDALONE']:
119         DIRS += [
120             'config/external',
121             'security',
122         ]
124     if CONFIG['BUILD_CTYPES']:
125         DIRS += ['config/external/ffi']
127 else:
128     TEST_DIRS += ['js/src/tests']
130 if not CONFIG['JS_STANDALONE'] and CONFIG['MOZ_BUILD_APP']:
131     # Bring in the configuration for the configured application.
132     include('/' + CONFIG['MOZ_BUILD_APP'] + '/app.mozbuild')
134 CONFIGURE_SUBST_FILES += ['.cargo/config']
136 include('build/templates.mozbuild')