summaryrefslogtreecommitdiffstats
path: root/tools/scripts/take_snapshot.py
diff options
context:
space:
mode:
authorSzabolcs David <davidsz@inf.u-szeged.hu>2022-03-10 18:10:29 +0100
committerSzabolcs David <davidsz@inf.u-szeged.hu>2022-04-27 08:19:54 +0100
commitc668352f5a706d6153949c1b5594735ecbad12e7 (patch)
tree1015414be87569e18aba8da43174ababfa1be2a2 /tools/scripts/take_snapshot.py
parent742e6786aeb500ef9bc850bf84803d5f388e3927 (diff)
Update take_snapshot.py to include dependencies for Push Messaging
Change-Id: Idb0ecba3dd42b9afa931cd9dd64f3a416def7af9 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'tools/scripts/take_snapshot.py')
-rwxr-xr-xtools/scripts/take_snapshot.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py
index cb38974ed..a8b12aacf 100755
--- a/tools/scripts/take_snapshot.py
+++ b/tools/scripts/take_snapshot.py
@@ -75,13 +75,17 @@ def isInChromiumBlacklist(file_path):
and not file_path.startswith('chrome/browser/custom_handlers/')
and not file_path.startswith('chrome/browser/devtools/')
and not file_path.startswith('chrome/browser/extensions/api/')
+ and not file_path.startswith('chrome/browser/gcm/')
and not file_path.startswith('chrome/browser/media/webrtc/')
and not file_path.startswith('chrome/browser/net/')
and not file_path.startswith('chrome/browser/prefs/')
and not file_path.startswith('chrome/browser/printing/')
+ and not file_path.startswith('chrome/browser/profiles/incognito_helpers')
+ and not file_path.startswith('chrome/browser/push_messaging/')
and not file_path.startswith('chrome/browser/renderer_host/')
and not file_path.startswith('chrome/browser/share/core/')
and not file_path.startswith('chrome/browser/share/proto/')
+ and not file_path.startswith('chrome/browser/signin/')
and not file_path.startswith('chrome/browser/spellchecker')
and not file_path.startswith('chrome/browser/tab_contents/')
and not file_path.startswith('chrome/browser/ui/webui/')
@@ -106,7 +110,6 @@ def isInChromiumBlacklist(file_path):
or file_path.startswith('components/cronet/')
or file_path.startswith('components/drive/')
or file_path.startswith('components/invalidation/')
- or file_path.startswith('components/gcm_driver/')
or file_path.startswith('components/nacl/')
or file_path.startswith('components/omnibox/')
or file_path.startswith('components/policy/')