Lines Matching refs:join

21 CHROMIUM_DIR = os.path.abspath(os.path.join(THIS_DIR, '..', '..', '..'))
22 THIRD_PARTY_DIR = os.path.join(THIS_DIR, '..', '..', '..', 'third_party')
23 LLVM_DIR = os.path.join(THIRD_PARTY_DIR, 'llvm')
24 LLVM_BOOTSTRAP_DIR = os.path.join(THIRD_PARTY_DIR, 'llvm-bootstrap')
25 LLVM_BOOTSTRAP_INSTALL_DIR = os.path.join(THIRD_PARTY_DIR,
27 LLVM_BUILD_DIR = os.path.join(THIRD_PARTY_DIR, 'llvm-build')
28 LLVM_RELEASE_DIR = os.path.join(LLVM_BUILD_DIR, 'Release+Asserts')
29 EU_STRIP = os.path.join(THIRD_PARTY_DIR, 'eu-strip', 'bin', 'eu-strip')
30 STAMP_FILE = os.path.join(LLVM_BUILD_DIR, 'cr_build_revision')
64 rev_cmd = [sys.executable, os.path.join(THIS_DIR, 'update.py'),
71 sys.path.insert(0, os.path.join(CHROMIUM_DIR, 'build'))
81 gsutil_path = os.path.join(depot_path, 'gsutil.py')
109 print ('gsutil %s' % ' '.join(gsutil_args))
130 sys.path.insert(0, os.path.join(CHROMIUM_DIR, 'tools', 'symsrc'))
135 binary_path = os.path.join(LLVM_RELEASE_DIR, binary_path)
190 TeeCmd(['svn', 'stat', os.path.join(LLVM_DIR, 'tools', 'clang')],
192 TeeCmd(['svn', 'diff', os.path.join(LLVM_DIR, 'tools', 'clang')],
198 TeeCmd(['svn', 'stat', os.path.join(LLVM_DIR, 'projects', 'compiler-rt')],
200 TeeCmd(['svn', 'diff', os.path.join(LLVM_DIR, 'projects', 'compiler-rt')],
203 TeeCmd(['svn', 'stat', os.path.join(LLVM_DIR, 'projects', 'libcxx')],
205 TeeCmd(['svn', 'diff', os.path.join(LLVM_DIR, 'projects', 'libcxx')],
218 build_cmd = [sys.executable, os.path.join(THIS_DIR, 'update.py'),
288 rel_files = [os.path.join(rel_root, f) for f in files]
293 os.makedirs(os.path.join(pdir, rel_root))
295 src = os.path.join(LLVM_RELEASE_DIR, f)
296 dest = os.path.join(pdir, f)
317 subprocess.call(['strip', '-x', os.path.join(pdir, 'bin', f)])
319 subprocess.call(['strip', os.path.join(pdir, 'bin', f)])
323 os.symlink('clang', os.path.join(pdir, 'bin', 'clang++'))
324 os.symlink('clang', os.path.join(pdir, 'bin', 'clang-cl'))
327 os.symlink('lld', os.path.join(pdir, 'bin', 'ld.lld'))
328 os.symlink('lld', os.path.join(pdir, 'bin', 'lld-link'))
332 shutil.copytree(os.path.join(LLVM_BOOTSTRAP_INSTALL_DIR, 'include', 'c++'),
333 os.path.join(pdir, 'include', 'c++'))
344 tar.add(os.path.join(pdir, entry), arcname=entry, filter=PrintTarProgress)
351 os.makedirs(os.path.join(code_coverage_dir, 'bin'))
353 shutil.copy(os.path.join(LLVM_RELEASE_DIR, 'bin', filename + exe_ext),
354 os.path.join(code_coverage_dir, 'bin'))
356 tar.add(os.path.join(code_coverage_dir, 'bin'), arcname='bin',
363 os.makedirs(os.path.join(objdumpdir, 'bin'))
366 shutil.copy(os.path.join(LLVM_RELEASE_DIR, 'bin', filename + exe_ext),
367 os.path.join(objdumpdir, 'bin'))
369 llvmobjdump_stamp_file = os.path.join(objdumpdir, llvmobjdump_stamp_file_base)
374 os.symlink('llvm-readobj', os.path.join(objdumpdir, 'bin', 'llvm-readelf'))
376 tar.add(os.path.join(objdumpdir, 'bin'), arcname='bin',
385 os.makedirs(os.path.join(cfiverifydir, 'bin'))
386 shutil.copy(os.path.join(LLVM_RELEASE_DIR, 'bin', 'llvm-cfi-verify' +
388 os.path.join(cfiverifydir, 'bin'))
390 tar.add(os.path.join(cfiverifydir, 'bin'), arcname='bin',
397 os.makedirs(os.path.join(safestackdir, 'lib'))
398 for build in glob.glob(os.path.join(LLVM_RELEASE_DIR, 'lib', 'clang', '*')):
400 dest_dir = os.path.join(safestackdir, 'lib', 'clang', version,
403 for lib in glob.glob(os.path.join(build, 'lib', 'linux',
407 tar.add(os.path.join(safestackdir, 'lib'), arcname='lib',
415 os.makedirs(os.path.join(llddir, 'bin'))
416 shutil.copy(os.path.join(LLVM_RELEASE_DIR, 'bin', 'lld'),
417 os.path.join(llddir, 'bin'))
418 os.symlink('lld', os.path.join(llddir, 'bin', 'lld-link'))
419 os.symlink('lld', os.path.join(llddir, 'bin', 'ld.lld'))
421 tar.add(os.path.join(llddir, 'bin'), arcname='bin',
428 os.makedirs(os.path.join(translation_unit_dir, 'bin'))
429 shutil.copy(os.path.join(LLVM_RELEASE_DIR, 'bin', 'translation_unit' +
431 os.path.join(translation_unit_dir, 'bin'))
433 tar.add(os.path.join(translation_unit_dir, 'bin'), arcname='bin',