From 1910ddb3e2869e50514da343aa6947e88f734c38 Mon Sep 17 00:00:00 2001 From: Michael Bruning Date: Fri, 15 Jan 2016 11:37:47 +0100 Subject: Adjust take snapshot to include chrome printing sources. Change-Id: I5f6abb62c1f35c544ea8024584cccb1d8c8421da Reviewed-by: Allan Sandfeld Jensen --- tools/scripts/take_snapshot.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tools/scripts') diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py index ea4e358c7..04f53de88 100755 --- a/tools/scripts/take_snapshot.py +++ b/tools/scripts/take_snapshot.py @@ -80,8 +80,10 @@ def isInChromiumBlacklist(file_path): or file_path.startswith('build/android/') or (file_path.startswith('chrome/') and not file_path.startswith('chrome/VERSION') 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 '/renderer/resources/' in file_path and not 'repack_locales' in file_path and @@ -129,7 +131,9 @@ def isInChromiumBlacklist(file_path): or file_path.startswith('courgette') or (file_path.startswith('extensions') and not 'browser/extension_function_registry.h' in file_path and - not 'browser/extension_function_histogram_value.h' in file_path) + not 'browser/extension_function_histogram_value.h' in file_path and + not 'browser/notification_types.cc' in file_path and + not 'browser/notification_types.h' in file_path) or file_path.startswith('google_update') or file_path.startswith('ios') or file_path.startswith('media/base/android/java') -- cgit v1.2.3