Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1477)

Unified Diff: mojo/public/tools/bindings/pylib/mojom_tests/support/find_files.py

Issue 2250183003: Make the fuchsia mojo/public repo the source of truth. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/public/tools/bindings/pylib/mojom_tests/support/find_files.py
diff --git a/mojo/public/tools/bindings/pylib/mojom_tests/support/find_files.py b/mojo/public/tools/bindings/pylib/mojom_tests/support/find_files.py
deleted file mode 100644
index 2a4b17b29bc8e6029c95abc1551f0cef31c691eb..0000000000000000000000000000000000000000
--- a/mojo/public/tools/bindings/pylib/mojom_tests/support/find_files.py
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import fnmatch
-from os import walk
-from os.path import join
-import sys
-
-
-def FindFiles(top, pattern, **kwargs):
- """Finds files under |top| matching the glob pattern |pattern|, returning a
- list of paths."""
- matches = []
- for dirpath, _, filenames in walk(top, **kwargs):
- for filename in fnmatch.filter(filenames, pattern):
- matches.append(join(dirpath, filename))
- return matches
-
-
-def main(argv):
- if len(argv) != 3:
- print "usage: %s path pattern" % argv[0]
- return 1
-
- for filename in FindFiles(argv[1], argv[2]):
- print filename
- return 0
-
-
-if __name__ == '__main__':
- sys.exit(main(sys.argv))

Powered by Google App Engine
This is Rietveld 408576698