summaryrefslogtreecommitdiffstats
path: root/Tools/Scripts/check-for-inappropriate-files-in-framework
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Scripts/check-for-inappropriate-files-in-framework')
-rwxr-xr-xTools/Scripts/check-for-inappropriate-files-in-framework4
1 files changed, 3 insertions, 1 deletions
diff --git a/Tools/Scripts/check-for-inappropriate-files-in-framework b/Tools/Scripts/check-for-inappropriate-files-in-framework
index 1ab71b2..41e7c84 100755
--- a/Tools/Scripts/check-for-inappropriate-files-in-framework
+++ b/Tools/Scripts/check-for-inappropriate-files-in-framework
@@ -27,7 +27,9 @@ base_directory = ENV['TARGET_BUILD_DIR'] or throw "Unable to find TARGET_BUILD_D
project_name = ENV['PROJECT_NAME'] or throw "Unable to find PROJECT_NAME in the environment!"
is_shallow_bundle = (ENV['SHALLOW_BUNDLE'] || "NO").upcase == "YES"
-$INAPPROPRIATE_FILES = { "WebCore" => { "Resources" => ["*.css", "*.in", "*.idl", "*.h"] } }
+$INAPPROPRIATE_FILES = { "WebCore" => { "Resources" => ["*.css", "*.in", "*.idl", "*.h"] },
+ "WebKit2" => { "Resources" => ["*.in", "*.h"] },
+ }
Dir.chdir base_directory