Lines Matching full:root_dir
20 def Modules(root_dir):
21 """Yields module names in root_dir."""
22 for root, _, files in os.walk(root_dir):
29 def Yamls(root_dir):
30 """Yields yaml files in root_dir."""
31 for root, _, files in os.walk(root_dir):
38 def TempAppDir(root_dir, symlinks):
42 root_dir: The root directory of the app.
62 for module in Modules(root_dir):
63 module_source_dir = os.path.join(root_dir, module)
73 link(os.path.join(root_dir, 'base'),