HomeSort by relevance Sort by last modified time
    Searched full:target_dir (Results 26 - 50 of 180) sorted by null

12 3 4 5 6 7 8

  /external/skqp/infra/bots/assets/linux_vulkan_sdk/
create.py 19 def create_asset(target_dir, sdk_path):
21 shutil.copytree(sdk_path, target_dir)
29 parser.add_argument('--target_dir', '-t', required=True)
32 create_asset(args.target_dir, args.sdk_path)
  /external/skqp/infra/bots/assets/protoc/
create.py 20 def create_asset(target_dir):
24 subprocess.check_call(['unzip', local_zip, '-d', target_dir])
29 parser.add_argument('--target_dir', '-t', required=True)
31 create_asset(args.target_dir)
  /external/skia/infra/bots/assets/android_ndk_darwin/
create.py 22 def create_asset(target_dir):
25 subprocess.check_call(["unzip", "ndk.zip", "-d", target_dir])
26 for f in glob.glob(os.path.join(target_dir, NDK_VER, "*")):
27 shutil.move(f, target_dir)
33 parser.add_argument('--target_dir', '-t', required=True)
35 create_asset(args.target_dir)
  /external/skia/infra/bots/assets/android_ndk_linux/
create.py 22 def create_asset(target_dir):
25 subprocess.check_call(["unzip", "ndk.zip", "-d", target_dir])
26 for f in glob.glob(os.path.join(target_dir, NDK_VER, "*")):
27 shutil.move(f, target_dir)
33 parser.add_argument('--target_dir', '-t', required=True)
35 create_asset(args.target_dir)
  /external/skia/infra/bots/assets/win_vulkan_sdk/
create.py 18 def create_asset(target_dir, sdk_path):
21 target_include_dir = os.path.join(target_dir, "Include")
23 if not os.path.isdir(target_dir):
24 os.makedirs(target_dir)
32 parser.add_argument('--target_dir', '-t', required=True)
35 create_asset(args.target_dir, args.sdk_path)
  /external/skqp/infra/bots/assets/android_ndk_darwin/
create.py 22 def create_asset(target_dir):
25 subprocess.check_call(["unzip", "ndk.zip", "-d", target_dir])
26 for f in glob.glob(os.path.join(target_dir, NDK_VER, "*")):
27 shutil.move(f, target_dir)
33 parser.add_argument('--target_dir', '-t', required=True)
35 create_asset(args.target_dir)
  /external/skqp/infra/bots/assets/android_ndk_linux/
create.py 22 def create_asset(target_dir):
25 subprocess.check_call(["unzip", "ndk.zip", "-d", target_dir])
26 for f in glob.glob(os.path.join(target_dir, NDK_VER, "*")):
27 shutil.move(f, target_dir)
33 parser.add_argument('--target_dir', '-t', required=True)
35 create_asset(args.target_dir)
  /external/skia/infra/bots/
zip_utils.py 27 def zip(target_dir, zip_file, blacklist=None): # pylint: disable=W0622
29 if not os.path.isdir(target_dir):
30 raise IOError('%s does not exist!' % target_dir)
33 for r, d, f in os.walk(target_dir, topdown=True):
38 zi.filename = os.path.relpath(filepath, target_dir)
50 z.write(dirpath, os.path.relpath(dirpath, target_dir))
53 def unzip(zip_file, target_dir):
55 if not os.path.isdir(target_dir):
56 os.makedirs(target_dir)
63 dst_path = os.path.join(target_dir, dst_subpath
    [all...]
  /external/skqp/infra/bots/
zip_utils.py 27 def zip(target_dir, zip_file, blacklist=None): # pylint: disable=W0622
29 if not os.path.isdir(target_dir):
30 raise IOError('%s does not exist!' % target_dir)
33 for r, d, f in os.walk(target_dir, topdown=True):
38 zi.filename = os.path.relpath(filepath, target_dir)
50 z.write(dirpath, os.path.relpath(dirpath, target_dir))
53 def unzip(zip_file, target_dir):
55 if not os.path.isdir(target_dir):
56 os.makedirs(target_dir)
63 dst_path = os.path.join(target_dir, dst_subpath
    [all...]
  /external/skia/infra/bots/assets/armhf_sysroot/
create.py 22 def create_asset(target_dir):
35 shutil.copytree('/usr/arm-linux-gnueabihf', target_dir)
37 os.path.join(target_dir, 'gcc-cross'))
42 os.path.join(target_dir, 'lib'))
44 os.path.join(target_dir, 'include'))
51 bad_libpthread = os.path.join(target_dir, "lib", "libpthread.so")
58 bad_libc = os.path.join(target_dir, "lib", "libc.so")
72 parser.add_argument('--target_dir', '-t', required=True)
74 create_asset(args.target_dir)
  /external/skqp/infra/bots/assets/armhf_sysroot/
create.py 22 def create_asset(target_dir):
35 shutil.copytree('/usr/arm-linux-gnueabihf', target_dir)
37 os.path.join(target_dir, 'gcc-cross'))
42 os.path.join(target_dir, 'lib'))
44 os.path.join(target_dir, 'include'))
51 bad_libpthread = os.path.join(target_dir, "lib", "libpthread.so")
58 bad_libc = os.path.join(target_dir, "lib", "libc.so")
72 parser.add_argument('--target_dir', '-t', required=True)
74 create_asset(args.target_dir)
  /external/skia/infra/bots/assets/valgrind/
create.py 62 def copy_files(target_dir):
64 os.mkdir(os.path.join(target_dir, 'bin'))
66 os.path.join(target_dir, 'bin', 'valgrind'))
67 os.mkdir(os.path.join(target_dir, 'lib'))
68 os.mkdir(os.path.join(target_dir, 'lib', 'valgrind'))
71 os.path.join(target_dir, 'lib', 'valgrind', lib))
75 os.path.join(target_dir, 'lib', 'valgrind', libname))
78 os.path.join(target_dir, 'lib', 'valgrind', 'default.supp'))
81 def create_asset(target_dir):
93 copy_files(target_dir)
    [all...]
  /external/skqp/infra/bots/assets/valgrind/
create.py 62 def copy_files(target_dir):
64 os.mkdir(os.path.join(target_dir, 'bin'))
66 os.path.join(target_dir, 'bin', 'valgrind'))
67 os.mkdir(os.path.join(target_dir, 'lib'))
68 os.mkdir(os.path.join(target_dir, 'lib', 'valgrind'))
71 os.path.join(target_dir, 'lib', 'valgrind', lib))
75 os.path.join(target_dir, 'lib', 'valgrind', libname))
78 os.path.join(target_dir, 'lib', 'valgrind', 'default.supp'))
81 def create_asset(target_dir):
93 copy_files(target_dir)
    [all...]
  /prebuilts/maven_repo/bumptech/
update_repo.sh 6 TARGET_DIR=`pwd`
26 $TARGET_DIR/com/github/bumptech/glide/annotation/SNAPSHOT/annotation-SNAPSHOT.jar
28 $TARGET_DIR/com/github/bumptech/glide/annotation/SNAPSHOT/annotation-SNAPSHOT-sources.jar
30 $TARGET_DIR/com/github/bumptech/glide/compiler/SNAPSHOT/compiler-SNAPSHOT.jar
32 $TARGET_DIR/com/github/bumptech/glide/compiler/SNAPSHOT/compiler-SNAPSHOT-sources.jar
34 $TARGET_DIR/com/github/bumptech/glide/glide/SNAPSHOT/glide-SNAPSHOT.jar
36 $TARGET_DIR/com/github/bumptech/glide/glide/SNAPSHOT/glide-SNAPSHOT-sources.jar
38 $TARGET_DIR/com/github/bumptech/glide/disklrucache/SNAPSHOT/disklrucache-SNAPSHOT.jar
40 $TARGET_DIR/com/github/bumptech/glide/disklrucache/SNAPSHOT/disklrucache-SNAPSHOT-sources.jar
42 $TARGET_DIR/com/github/bumptech/glide/gifdecoder/SNAPSHOT/gifdecoder-SNAPSHOT.ja
    [all...]
  /external/clang/tools/scan-build-py/tests/functional/cases/
test_exec_anatomy.py 15 def run(source_dir, target_dir):
18 cwd=target_dir,
25 result_file = os.path.join(target_dir, 'result.json')
26 expected_file = os.path.join(target_dir, 'expected.json')
  /external/skia/infra/bots/assets/skp/
create.py 25 def create_asset(chrome_src_path, browser_executable, target_dir,
30 target_dir = os.path.realpath(target_dir)
32 if not os.path.exists(target_dir):
33 os.makedirs(target_dir)
77 shutil.copyfile(os.path.join(src, f), os.path.join(target_dir, f))
79 # Copy over private SKPs from Google storage into the target_dir.
81 'gsutil', 'cp', os.path.join(PRIVATE_SKPS_GS, '*'), target_dir])
86 parser.add_argument('--target_dir', '-t', required=True)
91 create_asset(args.chrome_src_path, args.browser_executable, args.target_dir,
    [all...]
  /external/skqp/infra/bots/assets/skp/
create.py 25 def create_asset(chrome_src_path, browser_executable, target_dir,
30 target_dir = os.path.realpath(target_dir)
32 if not os.path.exists(target_dir):
33 os.makedirs(target_dir)
77 shutil.copyfile(os.path.join(src, f), os.path.join(target_dir, f))
79 # Copy over private SKPs from Google storage into the target_dir.
81 'gsutil', 'cp', os.path.join(PRIVATE_SKPS_GS, '*'), target_dir])
86 parser.add_argument('--target_dir', '-t', required=True)
91 create_asset(args.chrome_src_path, args.browser_executable, args.target_dir,
    [all...]
  /external/skia/infra/bots/assets/chromebook_arm_gles/
create.py 20 def create_asset(target_dir, gl_path):
35 lib_dir = os.path.join(target_dir, 'lib')
44 include_dir = os.path.join(target_dir, 'include')
57 parser.add_argument('--target_dir', '-t', required=True)
60 create_asset(args.target_dir, args.lib_path)
  /external/skia/infra/bots/assets/chromebook_x86_64_gles/
create.py 20 def create_asset(target_dir, gl_path):
35 lib_dir = os.path.join(target_dir, 'lib')
44 include_dir = os.path.join(target_dir, 'include')
57 parser.add_argument('--target_dir', '-t', required=True)
60 create_asset(args.target_dir, args.lib_path)
  /external/skqp/infra/bots/assets/chromebook_arm_gles/
create.py 20 def create_asset(target_dir, gl_path):
35 lib_dir = os.path.join(target_dir, 'lib')
44 include_dir = os.path.join(target_dir, 'include')
57 parser.add_argument('--target_dir', '-t', required=True)
60 create_asset(args.target_dir, args.lib_path)
  /external/skqp/infra/bots/assets/chromebook_x86_64_gles/
create.py 20 def create_asset(target_dir, gl_path):
35 lib_dir = os.path.join(target_dir, 'lib')
44 include_dir = os.path.join(target_dir, 'include')
57 parser.add_argument('--target_dir', '-t', required=True)
60 create_asset(args.target_dir, args.lib_path)
  /external/skia/infra/bots/assets/win_toolchain/
create.py 59 def gen_toolchain(chrome_path, msvs_version, target_dir):
60 """Update the VS toolchain and copy it to the target_dir."""
77 # Copy the toolchain files to the target_dir.
79 dst_build = os.path.join(target_dir, 'src', 'build')
85 os.path.join(target_dir, 'src', 'tools', 'gyp', 'pylib'))
87 dst_depot_tools = os.path.join(target_dir, 'depot_tools')
93 target_dir, 'depot_tools', os.path.relpath(src_dir, depot_tools))
97 def create_asset(target_dir, msvs_version, chrome_path=None):
99 if not os.path.isdir(target_dir):
100 os.makedirs(target_dir)
    [all...]
  /external/skqp/infra/bots/assets/win_toolchain/
create.py 59 def gen_toolchain(chrome_path, msvs_version, target_dir):
60 """Update the VS toolchain and copy it to the target_dir."""
77 # Copy the toolchain files to the target_dir.
79 dst_build = os.path.join(target_dir, 'src', 'build')
85 os.path.join(target_dir, 'src', 'tools', 'gyp', 'pylib'))
87 dst_depot_tools = os.path.join(target_dir, 'depot_tools')
93 target_dir, 'depot_tools', os.path.relpath(src_dir, depot_tools))
97 def create_asset(target_dir, msvs_version, chrome_path=None):
99 if not os.path.isdir(target_dir):
100 os.makedirs(target_dir)
    [all...]
  /external/autotest/client/site_tests/platform_FileNum/
platform_FileNum.py 33 def create_files(self, target_dir, count):
34 """Create the number of files specified by count in target_dir.
37 target_dir: Directory to create files in.
42 create_dir = os.path.join(target_dir, 'createdir')
  /external/libcups/
update_libcups.sh 10 TARGET_DIR=$(realpath $(dirname "$0"))
11 echo "== Updating $TARGET_DIR from $SRC_REPO =="
15 cd $TARGET_DIR
48 cd $TARGET_DIR

Completed in 346 milliseconds

12 3 4 5 6 7 8