| OLD | NEW |
| (Empty) |
| 1 #!/usr/bin/python | |
| 2 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 """This script outputs the filenames of the files that are in the "packages/" | |
| 7 subdir of the given directory, relative to that directory.""" | |
| 8 | |
| 9 import argparse | |
| 10 import os | |
| 11 import sys | |
| 12 | |
| 13 def main(target_directory, package_name): | |
| 14 os.chdir(target_directory) | |
| 15 self_path = 'packages/' + package_name | |
| 16 for root, _, files in os.walk("packages", followlinks=True): | |
| 17 for f in files: | |
| 18 path = os.path.join(root, f) | |
| 19 # Skip the contents of our own packages/package_name symlink. | |
| 20 if not path.startswith(self_path): | |
| 21 print os.path.join(root, f) | |
| 22 | |
| 23 if __name__ == '__main__': | |
| 24 parser = argparse.ArgumentParser( | |
| 25 description="List filenames of files in the packages/ subdir of the " | |
| 26 "given directory.") | |
| 27 parser.add_argument("--target-directory", | |
| 28 dest="target_directory", | |
| 29 metavar="<target-directory>", | |
| 30 type=str, | |
| 31 required=True, | |
| 32 help="The target directory, specified relative to this " | |
| 33 "directory.") | |
| 34 parser.add_argument("--package-name", | |
| 35 dest="package_name", | |
| 36 metavar="<package-name>", | |
| 37 type=str, | |
| 38 required=True, | |
| 39 help="The name of the package whose packages/ is being " | |
| 40 "dumped.") | |
| 41 args = parser.parse_args() | |
| 42 sys.exit(main(args.target_directory, args.package_name)) | |
| OLD | NEW |