Commit 404201b9 authored by Kai Koehne's avatar Kai Koehne
Browse files

Do not import README.chromium files without license / source code


Task-number: QTBUG-69365
Change-Id: Ifa11a5fa1fa9be89699497650158536c3271e265
Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
Showing with 5 additions and 2 deletions
...@@ -82,6 +82,9 @@ def isInChromiumBlacklist(file_path): ...@@ -82,6 +82,9 @@ def isInChromiumBlacklist(file_path):
or file_path.startswith('base/android') or file_path.startswith('base/android')
or file_path.startswith('breakpad') or file_path.startswith('breakpad')
or file_path.startswith('buildtools/clang_format/script') 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 or (file_path.startswith('chrome/') and
not file_path.startswith('chrome/VERSION') and not file_path.startswith('chrome/VERSION') and
not file_path.startswith('chrome/browser/chrome_notification_types.h') and not file_path.startswith('chrome/browser/chrome_notification_types.h') and
...@@ -197,7 +200,7 @@ def isInChromiumBlacklist(file_path): ...@@ -197,7 +200,7 @@ def isInChromiumBlacklist(file_path):
or file_path.startswith('third_party/icu/android') or file_path.startswith('third_party/icu/android')
or file_path.startswith('third_party/icu/ios') or file_path.startswith('third_party/icu/ios')
or file_path.startswith('third_party/instrumented_libraries') 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/junit')
or file_path.startswith('third_party/lcov') or file_path.startswith('third_party/lcov')
or file_path.startswith('third_party/libphonenumber') or file_path.startswith('third_party/libphonenumber')
...@@ -229,7 +232,7 @@ def isInChromiumBlacklist(file_path): ...@@ -229,7 +232,7 @@ def isInChromiumBlacklist(file_path):
or file_path.startswith('third_party/talloc') or file_path.startswith('third_party/talloc')
or file_path.startswith('third_party/trace-viewer') or file_path.startswith('third_party/trace-viewer')
or file_path.startswith('third_party/undoview') 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/webgl')
or file_path.startswith('third_party/webrtc/resources/') or file_path.startswith('third_party/webrtc/resources/')
or file_path.startswith('third_party/webrtc/third_party/boringssl/crypto_test_data.cc') or file_path.startswith('third_party/webrtc/third_party/boringssl/crypto_test_data.cc')
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment