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