Reviewed by Tony Chang.
Chromium builders don't delete unversioned directories when DEPS change
https://bugs.webkit.org/show_bug.cgi?id=52745
If we pass this option to gclient sync, gclient will delete directories
that are no longer part of DEPS instead of leaving them around to
confuse us later. Apparently, the downstream buildbots use this option
already.
* Scripts/update-webkit-chromium:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76222
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-01-20 Adam Barth <abarth@webkit.org>
+
+ Reviewed by Tony Chang.
+
+ Chromium builders don't delete unversioned directories when DEPS change
+ https://bugs.webkit.org/show_bug.cgi?id=52745
+
+ If we pass this option to gclient sync, gclient will delete directories
+ that are no longer part of DEPS instead of leaving them around to
+ confuse us later. Apparently, the downstream buildbots use this option
+ already.
+
+ * Scripts/update-webkit-chromium:
+
2011-01-19 Dirk Pranke <dpranke@chromium.org>
Unreviewed, build fix - I pulled this patch in to fix an issue
print "Updating chromium port dependencies using gclient...\n";
my @gclientArgs = ($gclientPath, "sync");
push @gclientArgs, "--force" if $force;
+push @gclientArgs, "--delete_unversioned_trees" if $force;
system(@gclientArgs) == 0 or die $!;