Home | History | Annotate | Download | only in build-android

Lines Matching refs:src_file

29     src_file = os.path.join(src_dir, file_name)
32 print('Copying {} to {}...'.format(src_file, dst_file))
33 if os.path.isdir(src_file):
34 _install_dir(src_file, dst_file)
35 elif os.path.islink(src_file):
36 _install_symlink(src_file, dst_file)
38 _install_file(src_file, dst_file)
48 def _install_symlink(src_file, dst_file):
52 link_target = os.readlink(src_file)
56 def _install_file(src_file, dst_file):
61 shutil.copy2(src_file, dst_file)