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

Side by Side Diff: mojo/public/tools/dart_list_packages_contents.py

Issue 1311803002: Dart: Removes dartzip (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Readme fixes Created 5 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 unified diff | Download patch
« no previous file with comments | « mojo/public/tools/dart_analyze.py ('k') | mojo/public/tools/dart_package.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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))
OLDNEW
« no previous file with comments | « mojo/public/tools/dart_analyze.py ('k') | mojo/public/tools/dart_package.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698