Title: [250808] trunk/Tools
Revision
250808
Author
d...@apple.com
Date
2019-10-07 17:14:52 -0700 (Mon, 07 Oct 2019)

Log Message

Various filter-build-webkit updates
https://bugs.webkit.org/show_bug.cgi?id=202558

Reviewed by Tim Horton.

Add rules for:
- RuleScriptExecution
- tapi
- plutil
- A postprocessing ANGLE script
- "Prepare build"
- Signing Identity

* Scripts/filter-build-webkit:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (250807 => 250808)


--- trunk/Tools/ChangeLog	2019-10-07 23:53:24 UTC (rev 250807)
+++ trunk/Tools/ChangeLog	2019-10-08 00:14:52 UTC (rev 250808)
@@ -1,3 +1,20 @@
+2019-10-07  Dean Jackson  <d...@apple.com>
+
+        Various filter-build-webkit updates
+        https://bugs.webkit.org/show_bug.cgi?id=202558
+
+        Reviewed by Tim Horton.
+
+        Add rules for:
+        - RuleScriptExecution
+        - tapi
+        - plutil
+        - A postprocessing ANGLE script
+        - "Prepare build"
+        - Signing Identity
+
+        * Scripts/filter-build-webkit:
+
 2019-10-07  Saam Barati  <sbar...@apple.com>
 
         Allow OSR exit to the LLInt

Modified: trunk/Tools/Scripts/filter-build-webkit (250807 => 250808)


--- trunk/Tools/Scripts/filter-build-webkit	2019-10-07 23:53:24 UTC (rev 250807)
+++ trunk/Tools/Scripts/filter-build-webkit	2019-10-08 00:14:52 UTC (rev 250808)
@@ -138,11 +138,13 @@
         $buildFinished = 1;
     } elsif ($line =~ /^===/) {
         printLine($line, STYLE_HEADER);
+    } elsif ($line =~ /^note: using/) {
+        printLine($line, STYLE_HEADER);
     } elsif ($line =~ /Checking Dependencies|Check dependencies|Create product structure|Write auxiliary files|LinkStoryboards/) {
         printLine($line, STYLE_PLAIN);
     } elsif ($line =~ /\*\* BUILD SUCCEEDED \*\*/) {
         printLine("Build Succeeded", STYLE_SUCCESS);
-    } elsif ($line =~ /^(\e\[1m)?(PhaseScriptExecution|ClCompile|CompileC|Distributed-CompileC|Ld|PBXCp|CpResource|CopyPNGFile|CopyTiffFile|CpHeader|Preprocess|Processing|ProcessInfoPlistFile|ProcessPCH|ProcessPCH\+\+|Touch|Libtool|CopyStringsFile|Mig|CreateUniversalBinary|Analyze|AnalyzeShallow|ProcessProductPackaging|CodeSign|Validate|SymLink|Updating|CompileDTraceScript|CompileXIB|StripNIB|CopyPlistFile|GenerateDSYMFile|GenerateTAPI|CompileStoryboard|ExternalBuildToolExecution)(\e\[0m)? ("[^"]+"|(\\|(?<=\\)\s|\S)+)?/) {
+    } elsif ($line =~ /^(\e\[1m)?(PhaseScriptExecution|RuleScriptExecution|ClCompile|CompileC|Distributed-CompileC|Ld|PBXCp|CpResource|CopyPNGFile|CopyTiffFile|CpHeader|Preprocess|Processing|ProcessInfoPlistFile|ProcessPCH|ProcessPCH\+\+|Touch|Libtool|CopyStringsFile|Mig|CreateUniversalBinary|Analyze|AnalyzeShallow|ProcessProductPackaging|CodeSign|Validate|SymLink|Updating|CompileDTraceScript|CompileXIB|StripNIB|CopyPlistFile|GenerateDSYMFile|GenerateTAPI|CompileStoryboard|ExternalBuildToolExecution)(\e\[0m)? ("[^"]+"|(\\|(?<=\\)\s|\S)+)?/) {
         my ($command, $path) = ($2, basename($4));
         $path =~ s/("|\\|\.[ah]$)//g;
         printLine("$command $path", STYLE_PLAIN);
@@ -149,6 +151,12 @@
     } elsif ($line =~ /^\S+mkdir .*?(\S+)$/) {
         my $path = basename($1);
         printLine("mkdir $path", STYLE_PLAIN);
+    } elsif ($line =~ /^\S+\/usr\/bin\/tapi reexport .*?(\S+)$/) {
+        my $path = basename($1);
+        printLine("tapi $path", STYLE_PLAIN);
+    } elsif ($line =~ /^plutil .*?(\S+)$/) {
+        my $path = basename($1);
+        printLine("plutil $path", STYLE_PLAIN);
     } elsif ($line =~ /^cp (\S+)/) {
         my $path = basename($1);
         printLine("cp $path", STYLE_PLAIN);
@@ -167,8 +175,14 @@
         printLine("Generating $command $path", STYLE_PLAIN);
     } elsif ($line =~ /^(Generating|Merging) (\S+) (from|for) (\S+)/) {
         printLine($line, STYLE_PLAIN);
+    } elsif ($line =~ /^Postprocessed ANGLE header/) {
+        printLine($line, STYLE_PLAIN);
+    } elsif ($line =~ /^Prepare build/) {
+        printLine($line, STYLE_PLAIN);
     } elsif ($line =~ /^GXCF:/) {
         printLine($line, STYLE_PLAIN);
+    } elsif ($line =~ /^Signing Identity:/) {
+        printLine($line, STYLE_PLAIN);
     } elsif ($line =~ /^Pre-processing (\S+) sandbox profile/) {
         printLine($line, STYLE_PLAIN);
     } elsif ($line =~ /^(\S+\/cc).*?(\S+)\.(out|exp)/) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to