Lines Matching refs:path
37 """Returns path to an existing program binary.
43 Absolute path to the program binary, as a string.
48 trunk_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
50 possible_paths = [os.path.join(trunk_path, 'out', 'Release', program),
51 os.path.join(trunk_path, 'out', 'Debug', program),
52 os.path.join(trunk_path, 'out', 'Release',
54 os.path.join(trunk_path, 'out', 'Debug',
57 if os.path.isfile(try_path):