summaryrefslogtreecommitdiffstats
path: root/tools/scripts/take_snapshot.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/scripts/take_snapshot.py')
-rwxr-xr-xtools/scripts/take_snapshot.py52
1 files changed, 20 insertions, 32 deletions
diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py
index 756c10079..dffdcbc11 100755
--- a/tools/scripts/take_snapshot.py
+++ b/tools/scripts/take_snapshot.py
@@ -68,41 +68,29 @@ def isInChromiumBlacklist(file_path):
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/app/resources/') and
+ not file_path.startswith('chrome/app/theme/') and
not file_path.startswith('chrome/browser/chrome_notification_types.h') and
- not '/app/theme/' in file_path and
- not '/app/resources/' in file_path and
- not '/browser/printing/' in file_path and
- not ('/browser/resources/' in file_path and not '/chromeos/' in file_path) and
- not '/renderer/resources/' in file_path and
- not 'repack_locales' in file_path and
- not 'third_party/chromevox' in file_path and
- not 'media/webrtc/desktop_media_list.h' in file_path and
- not 'media/webrtc/desktop_streams_registry.' in file_path and
- not 'browser/net/chrome_mojo_proxy_resolver_factory.' in file_path and
- not '/browser/accessibility/' in file_path and
- not '/browser/custom_handlers/' in file_path and
- not '/browser/devtools/' in file_path and
- not '/browser/ui/webui/' in file_path and
- not 'common/chrome_constants.' in file_path and
- not 'common/chrome_paths' in file_path and
- not 'common/chrome_switches.' in file_path and
- not 'common/content_restriction.h' in file_path and
- not 'common/custom_handlers/' in file_path and
- not 'common/spellcheck_' in file_path and
- not 'common/url_constants.' in file_path and
- not 'common/webui_url_constants.' in file_path and
- not '/extensions/api/' in file_path and
- not '/extensions/browser/api/' in file_path and
- not '/extensions/permissions/' in file_path and
- not '/renderer_host/pepper/' in file_path and
- not '/renderer/pepper/' in file_path and
- not '/spellchecker/' in file_path and
- not '/tools/convert_dict/' in file_path and
- not file_path.endswith('cf_resources.rc') and
- not file_path.endswith('version.py') and
+ not file_path.startswith('chrome/browser/accessibility/') 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/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/renderer_host/') and
+ not file_path.startswith('chrome/browser/spellchecker') and
+ not file_path.startswith('chrome/browser/ui/webui/') and
+ not (file_path.startswith('chrome/browser/resources/') and
+ not '/chromeos/' in file_path and
+ not '/settings/' in file_path and
+ not '/mediarouter/' in file_path) and
+ not (file_path.startswith('chrome/common/') and not file_path.startswith('chrome/common/extensions/docs')) and
+ not file_path.startswith('chrome/renderer/') and
+ not file_path.startswith('chrome/tools/convert_dict/') and
not file_path.endswith('.grd') and
not file_path.endswith('.grdp') and
- not file_path.endswith('.json') and
not file_path.endswith('chrome_version.rc.version'))
or file_path.startswith('chrome_elf')
or file_path.startswith('chromecast')