Changeset 102891 in webkit


Ignore:
Timestamp:
Dec 14, 2011 10:34:22 PM (12 years ago)
Author:
tony@chromium.org
Message:

[chromium] Remove redundant third_party entries from chromium DEPS
https://bugs.webkit.org/show_bug.cgi?id=74472

Reviewed by Kenneth Russell.

Source/WebKit/chromium:

Removed redundant DEPS entries for third_party subdirectories
coming from chromium_svn, which were causing intermittent gclient
failures on the bots.

  • DEPS:

Tools:

  • Scripts/update-webkit-chromium: Temporarily keep unversioned trees.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r102887 r102891  
     12011-12-14  Tony Chang  <tony@chromium.org>
     2
     3        [chromium] Remove redundant third_party entries from chromium DEPS
     4        https://bugs.webkit.org/show_bug.cgi?id=74472
     5
     6        Reviewed by Kenneth Russell.
     7
     8        Removed redundant DEPS entries for third_party subdirectories
     9        coming from chromium_svn, which were causing intermittent gclient
     10        failures on the bots.
     11
     12        * DEPS:
     13
    1142011-12-14  Scott Graham  <scottmg@chromium.org>
    215
  • trunk/Source/WebKit/chromium/DEPS

    r102772 r102891  
    110110  'third_party/libjingle/source':
    111111    From('chromium_deps', 'src/third_party/libjingle/source'),
    112   'third_party/libwebp':
    113     Var('chromium_svn')+'/third_party/libwebp@'+Var('chromium_rev'),
    114112  'tools/grit':
    115113    From('chromium_deps', 'src/tools/grit'),
     
    159157  },
    160158  'mac': {
    161     'third_party/apple_apsl':
    162       Var('chromium_svn')+'/third_party/apple_apsl@'+Var('chromium_rev'),
    163     'third_party/apple_webkit':
    164       Var('chromium_svn')+'/third_party/apple_webkit@'+Var('chromium_rev'),
    165159    'third_party/nss':
    166160      From('chromium_deps', 'src/third_party/nss'),
  • trunk/Tools/ChangeLog

    r102890 r102891  
     12011-12-14  Tony Chang  <tony@chromium.org>
     2
     3        [chromium] Remove redundant third_party entries from chromium DEPS
     4        https://bugs.webkit.org/show_bug.cgi?id=74472
     5
     6        Reviewed by Kenneth Russell.
     7
     8        * Scripts/update-webkit-chromium: Temporarily keep unversioned trees.
     9
    1102011-12-14  Kentaro Hara  <haraken@chromium.org>
    211
  • trunk/Tools/Scripts/update-webkit-chromium

    r102700 r102891  
    8787# --reset could delete modified files if necessary to sync.
    8888push @gclientArgs, "--reset" if $force;
    89 push @gclientArgs, "--delete_unversioned_trees" if $force;
     89# Temporarily keep unversioned trees so we don't delete third_party/libwebp.
     90# See https://bugs.webkit.org/show_bug.cgi?id=74565 .
     91#push @gclientArgs, "--delete_unversioned_trees" if $force;
    9092push @gclientArgs, "--deps=unix,android" if isChromiumAndroid();
    9193
Note: See TracChangeset for help on using the changeset viewer.