From 5ea819f80c6840c492386bfafbffb059c7e2091f Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Tue, 23 Oct 2012 10:25:11 +0200 Subject: Imported WebKit commit 20434eb8eb95065803473139d8794e98a7672f75 (http://svn.webkit.org/repository/webkit/trunk@132191) New snapshot that should fix build with latest qtbase and the QPlastiqueStyle removal --- Tools/Scripts/webkitpy/common/find_files.py | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'Tools/Scripts/webkitpy/common/find_files.py') diff --git a/Tools/Scripts/webkitpy/common/find_files.py b/Tools/Scripts/webkitpy/common/find_files.py index 82bbc91dd..32ce4d105 100644 --- a/Tools/Scripts/webkitpy/common/find_files.py +++ b/Tools/Scripts/webkitpy/common/find_files.py @@ -44,13 +44,6 @@ If a callback is passed in, it will be called for the each file and the file will be included into the result if the callback returns True. The callback has to take three arguments: filesystem, dirname and filename.""" -import time - -from webkitpy.common.system import logutils - - -_log = logutils.get_logger(__file__) - def find(filesystem, base_dir, paths=None, skipped_directories=None, file_filter=None): """Finds the set of tests under a given list of sub-paths. @@ -78,7 +71,6 @@ def _normalized_find(filesystem, paths, skipped_directories, file_filter): paths: a list of absolute path expressions to search. Glob patterns are ok. """ - gather_start_time = time.time() paths_to_walk = set() for path in paths: @@ -95,7 +87,4 @@ def _normalized_find(filesystem, paths, skipped_directories, file_filter): files = filesystem.files_under(path, skipped_directories, file_filter) all_files.update(set(files)) - gather_time = time.time() - gather_start_time - _log.debug("Test gathering took %f seconds" % gather_time) - return all_files -- cgit v1.2.1