HomeSort by relevance Sort by last modified time
    Searched refs:ltp_root (Results 1 - 4 of 4) sorted by null

  /external/ltp/android/tools/
make_install_parser.py 37 def __init__(self, ltp_root):
38 self.ltp_root = ltp_root
50 (os.path.realpath(self.ltp_root), os.sep))
64 os.path.realpath(self.ltp_root) + os.sep + src):
make_parser.py 31 ltp_root: string, LTP root directory
38 def __init__(self, ltp_root):
39 self.ltp_root = ltp_root
65 path = os.path.realpath(self.ltp_root + os.sep + self.dir_stack[-1]
67 return os.path.realpath(path).replace(self.ltp_root + os.sep, '')
android_build_generator.py 253 def ParseInput(self, input_list, ltp_root):
312 cc_includes[target] = [i for i in cc_includes[target] if os.path.isdir(os.path.join(ltp_root, i))]
422 def ParseAll(self, ltp_root):
426 ltp_root: string
428 parser = make_parser.MakeParser(ltp_root)
429 self.ParseInput(parser.ParseFile(MAKE_DRY_RUN_FILE_NAME), ltp_root)
430 parser = make_install_parser.MakeInstallParser(ltp_root)
431 self.ParseInput(parser.ParseFile(MAKE_INSTALL_DRY_RUN_FILE_NAME), ltp_root)
442 '--ltp_root', dest='ltp_root', required=True, help='LTP root dir'
    [all...]
gen_android_build.sh 20 LTP_ROOT=$(realpath $LTP_ANDROID_DIR/..)
24 OUTPUT_BP=$LTP_ROOT/gen.bp
26 if ! [ -f $LTP_ROOT/include/config.h ]; then
28 echo "Executing \"cd $LTP_ROOT; make autotools; ./configure\""
29 cd $LTP_ROOT
31 $LTP_ROOT/configure
69 python android_build_generator.py --ltp_root $LTP_ROOT --output_mk_path $OUTPUT_MK \

Completed in 71 milliseconds