Title: [129522] trunk/Tools
Revision
129522
Author
pe...@chromium.org
Date
2012-09-25 10:10:32 -0700 (Tue, 25 Sep 2012)

Log 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):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/built-product-archive (129521 => 129522)


--- trunk/Tools/BuildSlaveSupport/built-product-archive	2012-09-25 17:08:01 UTC (rev 129521)
+++ trunk/Tools/BuildSlaveSupport/built-product-archive	2012-09-25 17:10:32 UTC (rev 129522)
@@ -169,7 +169,7 @@
                           'BuildLog.htm', '*.obj', '*.pdb', '*.pch', '*.tlog', '*.lastbuildstate']
 
         if fullPlatform and fullPlatform == 'chromium-android':
-            ignorePatterns.extend(['*.so', '*-unaligned.apk'])
+            ignorePatterns.extend(['*.so', '*-unaligned.apk', '*-unsigned.apk'])
 
         removeDirectoryIfExists(thinDirectory)
         copyBuildFiles(configurationBuildDirectory, thinDirectory, ignorePatterns)

Modified: trunk/Tools/ChangeLog (129521 => 129522)


--- trunk/Tools/ChangeLog	2012-09-25 17:08:01 UTC (rev 129521)
+++ trunk/Tools/ChangeLog	2012-09-25 17:10:32 UTC (rev 129522)
@@ -1,3 +1,18 @@
+2012-09-25  Peter Beverloo  <pe...@chromium.org>
+
+        [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):
+
 2012-09-25  Tommy Widenflycht  <tom...@google.com>
 
         MediaStream API: Update getUserMedia to match the latest specification
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to