mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
7c784cea9f
This CL enables GN builds of all targets from dart.gyp on Linux for the host (i.e. ia32, x64). R=johnmccutchan@google.com Review URL: https://codereview.chromium.org/2379803002 .
31 lines
851 B
Python
Executable file
31 lines
851 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
"""Tool for listing files whose name match a pattern.
|
|
|
|
Usage:
|
|
python tools/list_files.py PATTERN DIRECTORY...
|
|
"""
|
|
|
|
import os
|
|
import re
|
|
import sys
|
|
|
|
|
|
def main(argv):
|
|
pattern = re.compile(argv[1])
|
|
for directory in argv[2:]:
|
|
for root, directories, files in os.walk(directory):
|
|
if '.git' in directories:
|
|
directories.remove('.git')
|
|
for filename in files:
|
|
fullname = os.path.relpath(os.path.join(root, filename))
|
|
fullname = fullname.replace(os.sep, '/')
|
|
if re.search(pattern, fullname):
|
|
print fullname
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv))
|