Title: [269991] trunk/Tools
Revision
269991
Author
[email protected]
Date
2020-11-18 14:48:09 -0800 (Wed, 18 Nov 2020)

Log Message

Extend check-for-inappropriate-files-in-framework to check for .tmp files
https://bugs.webkit.org/show_bug.cgi?id=219064
<rdar://problem/71519010>

Reviewed by Alexey Proskuryakov.

Some *.tmp files that were generated from post-processing header files
were appearing in *.framework/Headers directories. The problem doesn't
seem to be occurring any more, but update
check-for-inappropriate-files-in-framework to catch it if it does
again.

* Scripts/check-for-inappropriate-files-in-framework:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (269990 => 269991)


--- trunk/Tools/ChangeLog	2020-11-18 22:44:44 UTC (rev 269990)
+++ trunk/Tools/ChangeLog	2020-11-18 22:48:09 UTC (rev 269991)
@@ -1,3 +1,19 @@
+2020-11-18  Keith Rollin  <[email protected]>
+
+        Extend check-for-inappropriate-files-in-framework to check for .tmp files
+        https://bugs.webkit.org/show_bug.cgi?id=219064
+        <rdar://problem/71519010>
+
+        Reviewed by Alexey Proskuryakov.
+
+        Some *.tmp files that were generated from post-processing header files
+        were appearing in *.framework/Headers directories. The problem doesn't
+        seem to be occurring any more, but update
+        check-for-inappropriate-files-in-framework to catch it if it does
+        again.
+
+        * Scripts/check-for-inappropriate-files-in-framework:
+
 2020-11-18  Jonathan Bedard  <[email protected]>
 
         [webkitpy] Respect --result-report-flavor on device ports

Modified: trunk/Tools/Scripts/check-for-inappropriate-files-in-framework (269990 => 269991)


--- trunk/Tools/Scripts/check-for-inappropriate-files-in-framework	2020-11-18 22:44:44 UTC (rev 269990)
+++ trunk/Tools/Scripts/check-for-inappropriate-files-in-framework	2020-11-18 22:48:09 UTC (rev 269991)
@@ -28,10 +28,21 @@
 is_shallow_bundle = (ENV['SHALLOW_BUNDLE'] || "NO").upcase == "YES"
 
 $INAPPROPRIATE_FILES = {
-  "_javascript_Core"  => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
-  "WebCore"         => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
-  "WebKitLegacy"    => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
-  "WebKit"          => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
+  "_javascript_Core" => {
+    "Headers" => ["*.tmp"],
+    "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
+  },
+  "WebCore" => {
+    "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
+  },
+  "WebKitLegacy" => {
+    "Headers" => ["*.tmp"],
+    "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
+  },
+  "WebKit" => {
+    "Headers" => ["*.tmp"],
+    "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
+  },
 }
 
 Dir.chdir base_directory
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to