Lines Matching full:path
4 """Small utility function to find depot_tools and add it to the python path.
14 def IsRealDepotTools(path):
15 return os.path.isfile(os.path.join(path, 'gclient'))
19 """Search for depot_tools and add it to sys.path."""
21 for i in sys.path:
24 # Then look if depot_tools is in PATH, common case.
25 for i in os.environ['PATH'].split(os.pathsep):
27 sys.path.append(i.rstrip(os.sep))
29 # Rare case, it's not even in PATH, look upward up to root.
30 root_dir = os.path.dirname(os.path.abspath(__file__))
31 previous_dir = os.path.abspath(__file__)
33 i = os.path.join(root_dir, 'depot_tools')
35 sys.path.append(i)
38 root_dir = os.path.dirname(root_dir)