Title: [140375] trunk/Tools
Revision
140375
Author
[email protected]
Date
2013-01-21 17:44:42 -0800 (Mon, 21 Jan 2013)

Log Message

[chromium] Don't archive generated source files.
https://bugs.webkit.org/show_bug.cgi?id=106736

Reviewed by Eric Seidel.

They shouldn't be needed to run tests. They don't need a lot of space,
but add many lines to the "extracting" stdout. This attempts to reduce
that noise a bit.

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

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/built-product-archive (140374 => 140375)


--- trunk/Tools/BuildSlaveSupport/built-product-archive	2013-01-22 01:39:17 UTC (rev 140374)
+++ trunk/Tools/BuildSlaveSupport/built-product-archive	2013-01-22 01:44:42 UTC (rev 140375)
@@ -166,7 +166,8 @@
         thinDirectory = os.path.join(configurationBuildDirectory, "thin")
 
         ignorePatterns = ['.svn', '*.a', '*.d', '*.dSYM', '*.o', '*.ilk', '*.lib', '*.idb',
-                          'BuildLog.htm', '*.obj', '*.pdb', '*.pch', '*.tlog', '*.lastbuildstate']
+                          'BuildLog.htm', '*.obj', '*.pdb', '*.pch', '*.tlog', '*.lastbuildstate',
+                          '*.h', '*.c', '*.cc', '*.cpp', '*.stamp', '*.ninja']
 
         if fullPlatform and fullPlatform == 'chromium-android':
             ignorePatterns.extend(['*.so', '*-unaligned.apk', '*-unsigned.apk'])

Modified: trunk/Tools/ChangeLog (140374 => 140375)


--- trunk/Tools/ChangeLog	2013-01-22 01:39:17 UTC (rev 140374)
+++ trunk/Tools/ChangeLog	2013-01-22 01:44:42 UTC (rev 140375)
@@ -1,3 +1,17 @@
+2013-01-21  Nico Weber  <[email protected]>
+
+        [chromium] Don't archive generated source files.
+        https://bugs.webkit.org/show_bug.cgi?id=106736
+
+        Reviewed by Eric Seidel.
+
+        They shouldn't be needed to run tests. They don't need a lot of space,
+        but add many lines to the "extracting" stdout. This attempts to reduce
+        that noise a bit.
+
+        * BuildSlaveSupport/built-product-archive:
+        (archiveBuiltProduct):
+
 2013-01-21  Benjamin Poulain  <[email protected]>
 
         Mac DumpRenderTree's installSignalHandlers() is unreachable code
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to