diff options
author | Kai Koehne <kai.koehne@qt.io> | 2018-10-05 17:11:58 +0200 |
---|---|---|
committer | Kai Koehne <kai.koehne@qt.io> | 2018-10-18 11:55:15 +0000 |
commit | 404201b9a41564512937a7d96e55d6b095bdcab0 (patch) | |
tree | 98fde0744fa66578ef110457dd28cb161a1a9b48 /tools | |
parent | 8b811ee0797f0378a0ef49a5ca04302959e08c65 (diff) | |
download | qtwebengine-404201b9a41564512937a7d96e55d6b095bdcab0.tar.gz |
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')
-rwxr-xr-x | tools/scripts/take_snapshot.py | 7 |
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') |