Changeset 129522 in webkit


Ignore:
Timestamp:
Sep 25, 2012, 10:10:32 AM (13 years ago)
Author:
peter@chromium.org
Message:

[Chromium] Android's build archives have grown from 38M to 102M in 11 days
https://bugs.webkit.org/show_bug.cgi?id=97336

Reviewed by Adam Barth.

Each WebKit target results in four APKs in the out/{Debug,Release}/ directory,
while we really only need one. Ignoring the unsigned APKs removes six from
the archive will make sure that we only archive a single APK per target,
bringing its size back to rougly 40 megabytes.

  • BuildSlaveSupport/built-product-archive:

(archiveBuiltProduct):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/built-product-archive

    r128170 r129522  
    170170
    171171        if fullPlatform and fullPlatform == 'chromium-android':
    172             ignorePatterns.extend(['*.so', '*-unaligned.apk'])
     172            ignorePatterns.extend(['*.so', '*-unaligned.apk', '*-unsigned.apk'])
    173173
    174174        removeDirectoryIfExists(thinDirectory)
  • trunk/Tools/ChangeLog

    r129517 r129522  
     12012-09-25  Peter Beverloo  <peter@chromium.org>
     2
     3        [Chromium] Android's build archives have grown from 38M to 102M in 11 days
     4        https://bugs.webkit.org/show_bug.cgi?id=97336
     5
     6        Reviewed by Adam Barth.
     7
     8        Each WebKit target results in four APKs in the out/{Debug,Release}/ directory,
     9        while we really only need one. Ignoring the unsigned APKs removes six from
     10        the archive will make sure that we only archive a single APK per target,
     11        bringing its size back to rougly 40 megabytes.
     12
     13        * BuildSlaveSupport/built-product-archive:
     14        (archiveBuiltProduct):
     15
    1162012-09-25  Tommy Widenflycht  <tommyw@google.com>
    217
Note: See TracChangeset for help on using the changeset viewer.