Backed out changeset 0d924e17bba4 (bug 869613) for checktest failures.

This commit is contained in:
Ryan VanderMeulen 2013-09-25 10:56:57 -04:00
parent ef102a8dbf
commit bb2e5fbc55

View File

@ -7,7 +7,6 @@ from __future__ import unicode_literals
from collections import OrderedDict
from itertools import groupby
from operator import itemgetter
from os.path import dirname
WHITESPACE_CHARACTERS = ' \t'
@ -62,6 +61,7 @@ def all_dependencies(*targets, **kwargs):
all_targets = OrderedDict() # Used as an ordered set.
for target in targets:
all_targets[target] = True
if target in dm:
for dependency in dm[target]:
# Move element back in the ordered set.
@ -71,18 +71,6 @@ def all_dependencies(*targets, **kwargs):
return all_targets.keys()
def get_components(path):
"""Take a path and return all the components of the path."""
paths = [path]
while True:
parent = dirname(paths[-1])
if parent == "":
break
paths.append(parent)
paths.reverse()
return paths
def add_extra_dependencies(target_pairs, dependency_map):
"""Take a list [(make_dir, make_target)] and expand (make_dir, None)
entries with extra make dependencies from |dependency_map|.
@ -90,33 +78,16 @@ def add_extra_dependencies(target_pairs, dependency_map):
Returns an iterator of pairs (make_dir, make_target).
"""
all_targets = OrderedDict() # Used as an ordered set.
make_dirs = OrderedDict() # Used as an ordered set.
for make_target, group in groupby(target_pairs, itemgetter(1)):
# Return non-simple directory targets untouched.
if make_target is not None:
for pair in group:
# Generate dependencies for all components of a path.
# Given path a/b/c, examine a, a/b, and a/b/c in that order.
paths = get_components(pair[1])
# For each component of a path, find and add all dependencies
# to the final target list.
for target in paths:
if target not in all_targets:
yield pair[0], target
all_targets[target] = True
yield pair
continue
# Add extra dumbmake dependencies to simple directory targets.
for make_dir, _ in group:
make_dirs[make_dir] = True
make_dirs = [make_dir for make_dir, _ in group]
new_make_dirs = all_dependencies(*make_dirs, dependency_map=dependency_map)
all_components = []
for make_dir in make_dirs.iterkeys():
all_components.extend(get_components(make_dir))
yield make_dir, None
for i in all_dependencies(*all_components, dependency_map=dependency_map):
if i not in make_dirs:
yield i, None
for make_dir in new_make_dirs:
yield make_dir, None