Check to see if a dependency was skipped in custom_deps, and if so, skip it in

recurse.

R=maruel@chromium.org
BUG=

Review URL: https://chromiumcodereview.appspot.com/19670012

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@212373 0039d316-1c4b-4281-b951-d872f2087c98
experimental/szager/collated-output
iannucci@chromium.org 12 years ago
parent 3e2fff2e03
commit f3ec5784d3

@ -705,7 +705,9 @@ class Dependency(gclient_utils.WorkItem, DependencySettings):
print_stdout = True
filter_fn = None
if os.path.isdir(cwd):
if parsed_url is None:
print >> sys.stderr, 'Skipped omitted dependency %s' % cwd
elif os.path.isdir(cwd):
try:
gclient_utils.CheckCallAndFilter(
args, cwd=cwd, env=env, print_stdout=print_stdout,

Loading…
Cancel
Save