Bug 1094033 part 2 - Add a "misc" parallel tier where to move parts of the libs tier that can be moved. r=gps

This commit is contained in:
Mike Hommey 2014-11-06 09:29:11 +09:00
parent 6353f52bb4
commit 18ccc42254
2 changed files with 3 additions and 1 deletions

View File

@ -129,5 +129,5 @@ _DEPRECATED_VARIABLES := \
$(foreach var,$(_MOZBUILD_EXTERNAL_VARIABLES) $(_DEPRECATED_VARIABLES),$(eval $(var)_FROZEN := '$($(var))'))
TIERS := export $(if $(COMPILE_ENVIRONMENT),compile )libs tools
TIERS := export $(if $(COMPILE_ENVIRONMENT),compile )misc libs tools
endif

View File

@ -319,6 +319,7 @@ class RecursiveMakeBackend(CommonBackend):
'libs': set(),
}
self._no_skip = {
'misc': set(),
'tools': set(),
}
@ -530,6 +531,7 @@ class RecursiveMakeBackend(CommonBackend):
filters = [
('export', parallel_filter),
('libs', libs_filter),
('misc', parallel_filter),
('tools', tools_filter),
]