summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2016-12-02 13:10:31 +0100
committerMichal Klocek <michal.klocek@qt.io>2016-12-07 15:09:30 +0000
commit72242c614378a43c4563c05678d8e46d6fcbaa8d (patch)
tree98c5db26ed5194e62adef2b63c3ebd5965e63b5e /tools
parent3ea2a12afa54e06726b3bfaf77eff46030fbdbdb (diff)
Update snapshot script to include 'mus' and 'catapult'
Change-Id: I8291b2e1ebf9832a745b335f9d8e5743330ae255 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/scripts/take_snapshot.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py
index 316805b6d..7f52ec476 100755
--- a/tools/scripts/take_snapshot.py
+++ b/tools/scripts/take_snapshot.py
@@ -58,7 +58,7 @@ def isInChromiumBlacklist(file_path):
if file_path.endswith('.gyp') or file_path.endswith('.gypi') or file_path.endswith('.isolate'):
return False
# We do need all the gn file.
- if file_path.endswith('.gn') or file_path.endswith('.gni') or file_path.endswith('typemap') or \
+ if file_path.endswith('.gn') or file_path.endswith('.gni') or file_path.endswith('.typemap') or \
file_path.endswith('.mojom'):
return False
if ( '_jni' in file_path
@@ -120,7 +120,6 @@ def isInChromiumBlacklist(file_path):
or file_path.startswith('components/drive/')
or file_path.startswith('components/invalidation/')
or file_path.startswith('components/gcm_driver/')
- or file_path.startswith('components/mus/')
or file_path.startswith('components/nacl/')
or file_path.startswith('components/omnibox/')
or file_path.startswith('components/policy/')
@@ -159,7 +158,13 @@ def isInChromiumBlacklist(file_path):
or (file_path.startswith('third_party/cacheinvalidation') and
not file_path.endswith('isolate'))
or file_path.startswith('third_party/boringssl/src/fuzz')
- or file_path.startswith('third_party/catapult')
+ or (file_path.startswith('third_party/catapult') and not
+ (file_path.startswith('third_party/catapult/third_party/py_vulcanize')
+ or file_path.startswith('third_party/catapult/tracing/tracing/')
+ or file_path.startswith('third_party/catapult/tracing/tracing_build')
+ or file_path.startswith('third_party/catapult/tracing/third_party')
+ or file_path.startswith('third_party/catapult/tracing/bin')
+ or file_path.endswith('tracing_project.py')))
or file_path.startswith('third_party/chromite')
or file_path.startswith('third_party/cld_2')
or file_path.startswith('third_party/codesighs')