Changeset 76222 in webkit


Ignore:
Timestamp:
Jan 20, 2011 4:16:04 AM (13 years ago)
Author:
abarth@webkit.org
Message:

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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r76200 r76222  
     12011-01-20  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Tony Chang.
     4
     5        Chromium builders don't delete unversioned directories when DEPS change
     6        https://bugs.webkit.org/show_bug.cgi?id=52745
     7
     8        If we pass this option to gclient sync, gclient will delete directories
     9        that are no longer part of DEPS instead of leaving them around to
     10        confuse us later.  Apparently, the downstream buildbots use this option
     11        already.
     12
     13        * Scripts/update-webkit-chromium:
     14
    1152011-01-19  Dirk Pranke  <dpranke@chromium.org>
    216
  • trunk/Tools/Scripts/update-webkit-chromium

    r75917 r76222  
    6666my @gclientArgs = ($gclientPath, "sync");
    6767push @gclientArgs, "--force" if $force;
     68push @gclientArgs, "--delete_unversioned_trees" if $force;
    6869system(@gclientArgs) == 0 or die $!;
Note: See TracChangeset for help on using the changeset viewer.