| ☠☠ backed out by ce21e7a57cf8 ☠ ☠ | |
| author | Gregory Szorc <gps@mozilla.com> |
| Thu, 26 Feb 2015 11:43:45 -0800 | |
| changeset 231278 | 4cc39c54099d3eb7a40cb114e22da2a0da9e419a |
| parent 231277 | 7eed09d39b9fae0d3a08485129aebaa3b71ff04a |
| child 231279 | b7ec05265c3319720ffd13ed1a93a25cab9acd05 |
| push id | 56230 |
| push user | gszorc@mozilla.com |
| push date | Mon, 02 Mar 2015 03:22:38 +0000 |
| treeherder | mozilla-inbound@b7ec05265c33 [default view] [failures only] |
| perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
| reviewers | glandium |
| bugs | 1132771 |
| milestone | 39.0a1 |
| first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
| last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
| build/moz.build | file | annotate | diff | comparison | revisions | |
| config/moz.build | file | annotate | diff | comparison | revisions | |
| moz.build | file | annotate | diff | comparison | revisions | |
| python/moz.build | file | annotate | diff | comparison | revisions | |
| services/common/moz.build | file | annotate | diff | comparison | revisions | |
| services/crypto/moz.build | file | annotate | diff | comparison | revisions | |
| services/sync/moz.build | file | annotate | diff | comparison | revisions |
--- a/build/moz.build +++ b/build/moz.build @@ -1,14 +1,17 @@ # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- # 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/. +with Files('**'): + BUG_COMPONENT = ('Core', 'Build Config') + # This cannot be named "build" because of bug 922191. SPHINX_TREES['buildsystem'] = 'docs' if CONFIG['OS_ARCH'] == 'WINNT': DIRS += ['win32'] else: DIRS += ['unix']
--- a/config/moz.build +++ b/config/moz.build @@ -1,14 +1,17 @@ # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- # 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/. +with Files('**'): + BUG_COMPONENT = ('Core', 'Build Config') + NO_DIST_INSTALL = True # For sanity's sake, we compile nsinstall without the wrapped system # headers, so that we can use it to set up the wrapped system headers. NO_VISIBILITY_FLAGS = True CONFIGURE_SUBST_FILES += [ 'doxygen.cfg', 'makefiles/test/Makefile',
--- a/moz.build +++ b/moz.build @@ -1,14 +1,18 @@ # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- # 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/. +with Files('**/Makefile.in'): + BUG_COMPONENT = ('Core', 'Build Config') + FINAL = True + CONFIGURE_SUBST_FILES += [ 'config/autoconf.mk', 'config/emptyvars.mk', ] if CONFIG['ENABLE_CLANG_PLUGIN']: DIRS += ['build/clang-plugin']
--- a/python/moz.build +++ b/python/moz.build @@ -1,14 +1,20 @@ # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- # 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/. +with Files('mach/**'): + BUG_COMPONENT = ('Core', 'mach') + +with Files('mozbuild/**'): + BUG_COMPONENT = ('Core', 'Build Config') + SPHINX_PYTHON_PACKAGE_DIRS += [ 'mach', 'mozbuild/mozbuild', 'mozbuild/mozpack', 'mozversioncontrol/mozversioncontrol', ] SPHINX_TREES['mach'] = 'mach/docs'
--- a/services/common/moz.build +++ b/services/common/moz.build @@ -1,14 +1,17 @@ # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- # 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/. +with Files('**'): + BUG_COMPONENT = ('Mozilla Services', 'Firefox: Common') + TEST_DIRS += ['tests'] EXTRA_COMPONENTS += [ 'servicesComponents.manifest', ] EXTRA_JS_MODULES['services-common'] += [ 'hawkclient.js',
--- a/services/crypto/moz.build +++ b/services/crypto/moz.build @@ -1,14 +1,17 @@ # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- # 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/. +with Files('**'): + BUG_COMPONENT = ('Mozilla Services', 'Firefox Sync: Crypto') + DIRS += ['component'] XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini'] EXTRA_JS_MODULES['services-crypto'] += [ 'modules/utils.js', ]
--- a/services/sync/moz.build +++ b/services/sync/moz.build @@ -1,14 +1,17 @@ # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- # 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/. +with Files('**'): + BUG_COMPONENT = ('Mozilla Services', 'Firefox Sync: Backend') + DIRS += ['locales'] XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini'] EXTRA_COMPONENTS += [ 'Weave.js', ]