From 404201b9a41564512937a7d96e55d6b095bdcab0 Mon Sep 17 00:00:00 2001
From: Kai Koehne <kai.koehne@qt.io>
Date: Fri, 5 Oct 2018 17:11:58 +0200
Subject: [PATCH] Do not import README.chromium files without license / source
 code

Task-number: QTBUG-69365
Change-Id: Ifa11a5fa1fa9be89699497650158536c3271e265
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
---
 tools/scripts/take_snapshot.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py
index 442b5fe2a..4bf4381cb 100755
--- a/tools/scripts/take_snapshot.py
+++ b/tools/scripts/take_snapshot.py
@@ -82,6 +82,9 @@ def isInChromiumBlacklist(file_path):
         or file_path.startswith('base/android')
         or file_path.startswith('breakpad')
         or file_path.startswith('buildtools/clang_format/script')
+        or file_path.startswith('buildtools/third_party/libc++')
+        or file_path.startswith('buildtools/third_party/libc++abi')
+        or file_path.startswith('buildtools/third_party/libunwind')
         or (file_path.startswith('chrome/') and
             not file_path.startswith('chrome/VERSION') and
             not file_path.startswith('chrome/browser/chrome_notification_types.h') and
@@ -197,7 +200,7 @@ def isInChromiumBlacklist(file_path):
         or file_path.startswith('third_party/icu/android')
         or file_path.startswith('third_party/icu/ios')
         or file_path.startswith('third_party/instrumented_libraries')
-        or file_path.startswith('third_party/jsr-305/src')
+        or file_path.startswith('third_party/jsr-305')
         or file_path.startswith('third_party/junit')
         or file_path.startswith('third_party/lcov')
         or file_path.startswith('third_party/libphonenumber')
@@ -229,7 +232,7 @@ def isInChromiumBlacklist(file_path):
         or file_path.startswith('third_party/talloc')
         or file_path.startswith('third_party/trace-viewer')
         or file_path.startswith('third_party/undoview')
-        or file_path.startswith('third_party/wayland/src')
+        or file_path.startswith('third_party/wayland')
         or file_path.startswith('third_party/webgl')
         or file_path.startswith('third_party/webrtc/resources/')
         or file_path.startswith('third_party/webrtc/third_party/boringssl/crypto_test_data.cc')
-- 
GitLab