summaryrefslogtreecommitdiffstats
path: root/tools/scripts/take_snapshot.py
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2018-10-05 17:11:58 +0200
committerKai Koehne <kai.koehne@qt.io>2018-10-18 11:55:15 +0000
commit404201b9a41564512937a7d96e55d6b095bdcab0 (patch)
tree98fde0744fa66578ef110457dd28cb161a1a9b48 /tools/scripts/take_snapshot.py
parent8b811ee0797f0378a0ef49a5ca04302959e08c65 (diff)
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>
Diffstat (limited to 'tools/scripts/take_snapshot.py')
-rwxr-xr-xtools/scripts/take_snapshot.py7
1 files 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')