Title: [121802] trunk/Tools
Revision
121802
Author
[email protected]
Date
2012-07-03 14:02:29 -0700 (Tue, 03 Jul 2012)

Log Message

[chromium] Don't archive build files generated by VS2010
https://bugs.webkit.org/show_bug.cgi?id=90493

Reviewed by Ojan Vafai.

In particular, the pch (pre compiled header) files are gigantic, making
release.zip almost a 1gb in size.

* BuildSlaveSupport/built-product-archive:
(archiveBuiltProduct):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/built-product-archive (121801 => 121802)


--- trunk/Tools/BuildSlaveSupport/built-product-archive	2012-07-03 20:26:08 UTC (rev 121801)
+++ trunk/Tools/BuildSlaveSupport/built-product-archive	2012-07-03 21:02:29 UTC (rev 121802)
@@ -166,7 +166,8 @@
 
         removeDirectoryIfExists(thinDirectory)
         copyBuildFiles(configurationBuildDirectory, thinDirectory,
-            ['.svn', '*.a', '*.d', '*.dSYM', '*.o', '*.ilk', '*.lib', '*.idb', 'BuildLog.htm', '*.obj', '*.pdb'])
+            ['.svn', '*.a', '*.d', '*.dSYM', '*.o', '*.ilk', '*.lib', '*.idb', 'BuildLog.htm', '*.obj',
+            '*.pdb', '*.pch', '*.tlog', '*.lastbuildstate'])
         if createZip(thinDirectory, configuration):
             return 1
 

Modified: trunk/Tools/ChangeLog (121801 => 121802)


--- trunk/Tools/ChangeLog	2012-07-03 20:26:08 UTC (rev 121801)
+++ trunk/Tools/ChangeLog	2012-07-03 21:02:29 UTC (rev 121802)
@@ -1,5 +1,18 @@
 2012-07-03  Tony Chang  <[email protected]>
 
+        [chromium] Don't archive build files generated by VS2010
+        https://bugs.webkit.org/show_bug.cgi?id=90493
+
+        Reviewed by Ojan Vafai.
+
+        In particular, the pch (pre compiled header) files are gigantic, making
+        release.zip almost a 1gb in size.
+
+        * BuildSlaveSupport/built-product-archive:
+        (archiveBuiltProduct):
+
+2012-07-03  Tony Chang  <[email protected]>
+
         [chromium] Unreviewed, update .gitignore to handle VS2010 files.
 
         * .gitignore:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to