author | Mike Hommey <mh+mozilla@glandium.org> |
Thu, 07 Aug 2014 02:58:48 +0900 | |
changeset 198139 | b755c903799edb8caf35a8485d5f8400ee1a6449 |
parent 198138 | 5abc37293afb7e65a2be633aaec63699a7550359 |
child 198140 | 5bdf577bf6e0b1e7d60abc01f306dfeca26c7505 |
push id | 47314 |
push user | mh@glandium.org |
push date | Wed, 06 Aug 2014 18:05:40 +0000 |
treeherder | mozilla-inbound@55e77a59da6d [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | mshal |
bugs | 1049247 |
milestone | 34.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
|
--- a/b2g/app.mozbuild +++ b/b2g/app.mozbuild @@ -1,16 +1,15 @@ # 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/. if not CONFIG['LIBXUL_SDK']: app_libxul_dirs = [] - app_libxul_static_dirs = [] include('/toolkit/toolkit.mozbuild') elif CONFIG['ENABLE_TESTS']: add_tier_dir('testharness', 'testing/mochitest') if CONFIG['MOZ_EXTENSIONS']: add_tier_dir('app', 'extensions')
--- a/b2g/dev/app.mozbuild +++ b/b2g/dev/app.mozbuild @@ -1,16 +1,15 @@ # 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/. if not CONFIG['LIBXUL_SDK']: app_libxul_dirs = [] - app_libxul_static_dirs = [] include('/toolkit/toolkit.mozbuild') if CONFIG['MOZ_EXTENSIONS']: add_tier_dir('app', 'extensions') add_tier_dir('app', [CONFIG['MOZ_BRANDING_DIRECTORY']]) if CONFIG['MOZ_WEBAPP_RUNTIME']:
--- a/browser/app.mozbuild +++ b/browser/app.mozbuild @@ -1,16 +1,15 @@ # 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/. if not CONFIG['LIBXUL_SDK']: app_libxul_dirs = [] - app_libxul_static_dirs = [] include('/toolkit/toolkit.mozbuild') if CONFIG['MOZ_EXTENSIONS']: add_tier_dir('app', 'extensions') add_tier_dir('app', [CONFIG['MOZ_BRANDING_DIRECTORY']]) if CONFIG['MOZ_WEBAPP_RUNTIME']:
--- a/mobile/android/app.mozbuild +++ b/mobile/android/app.mozbuild @@ -1,16 +1,15 @@ # 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/. if not CONFIG['LIBXUL_SDK']: app_libxul_dirs = ['mobile/android/components/build'] - app_libxul_static_dirs = [] include('/toolkit/toolkit.mozbuild') elif CONFIG['ENABLE_TESTS']: add_tier_dir('testharness', 'testing/mochitest') if CONFIG['MOZ_EXTENSIONS']: add_tier_dir('app', 'extensions')
--- a/toolkit/toolkit.mozbuild +++ b/toolkit/toolkit.mozbuild @@ -151,17 +151,16 @@ add_tier_dir('platform', 'js/ductwork/de add_tier_dir('platform', 'other-licenses/snappy') if CONFIG['MOZ_GIO_COMPONENT']: add_tier_dir('platform', 'extensions/gio') # Applications can cheat and ask for code to be # built before libxul so it can be linked into libxul. add_tier_dir('platform', app_libxul_dirs) -add_tier_dir('platform', app_libxul_static_dirs, static=True) add_tier_dir('platform', 'toolkit/library/StaticXULComponentsEnd') add_tier_dir('platform', 'toolkit/library') if CONFIG['MOZ_REPLACE_MALLOC']: add_tier_dir('platform', 'memory/replace') if CONFIG['NS_TRACE_MALLOC']:
--- a/xulrunner/app.mozbuild +++ b/xulrunner/app.mozbuild @@ -1,15 +1,14 @@ # 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/. app_libxul_dirs = [] -app_libxul_static_dirs = [] include('/toolkit/toolkit.mozbuild') if CONFIG['MOZ_EXTENSIONS']: add_tier_dir('app', 'extensions') if CONFIG['OS_ARCH'] == 'WINNT' and (CONFIG['ENABLE_TESTS'] or CONFIG['MOZILLA_OFFICIAL']): add_tier_dir('app', 'embedding/tests/winEmbed')