HomeSort by relevance Sort by last modified time
    Searched full:build_dir (Results 51 - 75 of 148) sorted by null

1 23 4 5 6

  /ndk/build/tools/
build-host-gcc.sh 130 BUILD_DIR=
131 register_var_option "--build-dir=<path>" BUILD_DIR "Build GCC into directory"
180 if [ -z "$BUILD_DIR" ]; then
181 BUILD_DIR=/tmp/ndk-$USER/build/host-gcc
461 run_on_setup mkdir -p "$BUILD_DIR"
463 rm -rf "$BUILD_DIR"/*
466 TOP_BUILD_DIR=$BUILD_DIR
468 setup_default_log_file $BUILD_DIR/build.log
470 WRAPPERS_DIR="$BUILD_DIR/toolchain-wrappers"
473 STAMPS_DIR="$BUILD_DIR/timestamps
    [all...]
build-mingw64-toolchain.sh 377 BUILD_DIR=$TEMP_DIR/build-$HOST_TAG
382 rm -rf $BUILD_DIR
387 mkdir -p $BUILD_DIR
489 mkdir -p $BUILD_DIR/$PKGNAME &&
490 cd $BUILD_DIR/$PKGNAME &&
535 mkdir -p $BUILD_DIR/$PKGNAME &&
536 cd $BUILD_DIR/$PKGNAME &&
559 mkdir -p $BUILD_DIR/$PKGNAME &&
560 cd $BUILD_DIR/$PKGNAME &&
589 mkdir -p $BUILD_DIR/$PKGNAME &
    [all...]
build-host-python.sh 69 BUILD_DIR=
70 register_var_option "--build-dir=<path>" BUILD_DIR "Build Python into directory"
183 if [ -z "$BUILD_DIR" ] ; then
184 BUILD_DIR=/tmp/ndk-$USER/buildhost
187 bh_setup_build_dir $BUILD_DIR
198 TEMP_DIR=$BUILD_DIR/tmp
202 BUILD_DIR=$TEMP_DIR/build-$HOST_TAG
204 mkdir -p $BUILD_DIR
build-host-gdb.sh 58 BUILD_DIR=
59 register_var_option "--build-dir=<path>" BUILD_DIR "Build GDB into directory"
100 if [ -z "$BUILD_DIR" ] ; then
101 BUILD_DIR=/tmp/ndk-$USER/buildgdb
104 bh_setup_build_dir $BUILD_DIR
build-cxx-stl.sh 64 BUILD_DIR=
127 BUILD_DIR=$NDK_TMPDIR/build-$CXX_STL
129 BUILD_DIR=$OPTION_BUILD_DIR
131 mkdir -p "$BUILD_DIR"
132 fail_panic "Could not create build directory: $BUILD_DIR"
330 MAKEFILE=$BUILD_DIR/Makefile
463 build_stl_libs_for_abi $ABI "$BUILD_DIR/$ABI/shared" "shared" "$OUT_DIR"
464 build_stl_libs_for_abi $ABI "$BUILD_DIR/$ABI/static" "static" "$OUT_DIR"
484 rm -rf $BUILD_DIR
486 log "Don't forget to cleanup: $BUILD_DIR"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 99 """Generate list of '(package,src_dir,build_dir,filenames)' tuples"""
108 build_dir = os.path.join(*([self.build_lib] + package.split('.')))
119 data.append((package, src_dir, build_dir, filenames))
136 for package, src_dir, build_dir, filenames in self.data_files:
138 target = os.path.join(build_dir, filename)
303 def get_module_outfile(self, build_dir, package, module):
304 outfile_path = [build_dir] + list(package) + [module + ".py"]
321 os.path.join(build_dir, filename)
322 for package, src_dir, build_dir, filenames in self.data_files
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 99 """Generate list of '(package,src_dir,build_dir,filenames)' tuples"""
108 build_dir = os.path.join(*([self.build_lib] + package.split('.')))
119 data.append((package, src_dir, build_dir, filenames))
136 for package, src_dir, build_dir, filenames in self.data_files:
138 target = os.path.join(build_dir, filename)
303 def get_module_outfile(self, build_dir, package, module):
304 outfile_path = [build_dir] + list(package) + [module + ".py"]
321 os.path.join(build_dir, filename)
322 for package, src_dir, build_dir, filenames in self.data_files
  /external/chromium-trace/
update.py 43 build_dir = os.path.join(trace_viewer_dir, 'build') variable
44 sys.path.append(build_dir)
systrace-legacy.py 134 build_dir = os.path.join(script_dir, options.asset_dir, 'build')
136 js_files, js_flattenizer, css_files, templates = get_assets(src_dir, build_dir)
214 def get_assets(src_dir, build_dir):
215 sys.path.append(build_dir)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader.py 38 def __init__(self, host, build_dir):
40 self._build_dir = build_dir
dump_reader_win.py 42 def __init__(self, host, build_dir):
43 super(DumpReaderWin, self).__init__(host, build_dir)
  /external/chromium_org/third_party/mesa/src/
SConstruct 127 variant_dir = host_env['build_dir'],
143 variant_dir = env['build_dir'],
  /external/chromium_org/tools/gn/
ninja_target_writer.cc 29 path_output_(settings_->build_settings()->build_dir(),
119 settings_->build_settings()->build_dir().value()));
ninja_script_target_writer.cc 18 target->settings()->build_settings()->build_dir(),
49 settings_->build_settings()->build_dir().value()));
210 settings_->build_settings()->build_dir().value());
  /external/mesa3d/
SConstruct 127 variant_dir = host_env['build_dir'],
143 variant_dir = env['build_dir'],
  /ndk/tests/standalone/
run.sh 144 BUILD_DIR=$TMPDIR/build
145 mkdir -p "$BUILD_DIR"
416 rm -rf "$BUILD_DIR"/* &&
417 cp -RL "$SUBDIR"/* "$BUILD_DIR/"
418 fail_panic "Could not copy test files to $BUILD_DIR !?"
426 run cd "$BUILD_DIR" && run_script $SCRIPT
433 run cd "$BUILD_DIR" && run $CC $LDFLAGS $CFLAGS -o $NULL $SOURCES
440 run cd "$BUILD_DIR" && run $CXX $LDFLAGS $CXXFLAGS -o $NULL $SOURCES
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_scripts.py 21 self.assertTrue(cmd.build_dir is None)
26 self.assertEqual(cmd.build_dir, "/foo/bar")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_scripts.py 21 self.assertTrue(cmd.build_dir is None)
26 self.assertEqual(cmd.build_dir, "/foo/bar")
  /external/eigen/unsupported/
README.txt 49 The .html files are generated in: build_dir/doc/html/unsupported/
  /external/chromium_org/testing/
xvfb.py 81 def run_executable(cmd, build_dir, env):
105 if not wait_for_xvfb(os.path.join(build_dir, 'xdisplaycheck'), env):
127 'Usage: xvfb.py [path to build_dir] [command args...]')
  /external/chromium_org/third_party/openssl/openssl/
check-all-builds.sh 160 BUILD_DIR=
170 BUILD_DIR=${OPT##--build-dir=}
252 if [ -z "$BUILD_DIR" ]; then
255 BUILD_DIR=$(mktemp -d)
257 log "Cleaning up temporary directory: $BUILD_DIR"
258 rm -rf "$BUILD_DIR"
263 log "Using temporary build directory: $BUILD_DIR"
265 log "Using user build directory: $BUILD_DIR"
268 mkdir -p "$BUILD_DIR" && rm -rf "$BUILD_DIR"/*
    [all...]
  /external/openssl/
check-all-builds.sh 160 BUILD_DIR=
170 BUILD_DIR=${OPT##--build-dir=}
252 if [ -z "$BUILD_DIR" ]; then
255 BUILD_DIR=$(mktemp -d)
257 log "Cleaning up temporary directory: $BUILD_DIR"
258 rm -rf "$BUILD_DIR"
263 log "Using temporary build directory: $BUILD_DIR"
265 log "Using user build directory: $BUILD_DIR"
268 mkdir -p "$BUILD_DIR" && rm -rf "$BUILD_DIR"/*
    [all...]
  /external/chromium_org/third_party/openssl/
import_from_android.sh 277 BUILD_DIR=$TEMP_DIR/build
278 mkdir -p "$BUILD_DIR" && rm -rf "$BUILD_DIR"/*
281 ANDROID_SRC_DIR=$BUILD_DIR/android-openssl
313 DOWNLOAD_DIR=$BUILD_DIR/download
341 SVN_LIST_FILE=$BUILD_DIR/svn-subdirs
343 SAVED_SVN_TARBALL=$BUILD_DIR/saved-svn-subdirs.tar.gz
  /external/chromium_org/chrome/test/base/
ui_test_utils.cc 281 bool GetRelativeBuildDirectory(base::FilePath* build_dir) {
316 *build_dir = base::FilePath();
318 *build_dir = build_dir->Append(FILE_PATH_LITERAL(".."));
320 *build_dir = build_dir->Append(exe_parts[match]);
  /external/chromium_org/tools/cr/cr/base/
client.py 175 build_dir = context.Find('CR_BUILD_DIR')
176 if not build_dir:
178 cr.auto.build.__path__.append(os.path.join(build_dir, CLIENT_CONFIG_PATH))

Completed in 350 milliseconds

1 23 4 5 6