Lines Matching refs:os
16 config.base_path = os.getenv('ANDROID_BUILD_TOP')
24 config.test_exec_root = os.path.join(config.base_path, 'out', 'tests', 'slang', 'lit-tests')
31 tool = os.getenv(env_var)
34 if tool and os.path.isfile(tool):
45 return os.path.abspath(tool)
47 config.slang = inferTool('llvm-rs-cc', 'SLANG', os.path.join(os.getenv('ANDROID_HOST_OUT'), 'bin'))…
48 config.llvm_rs_as = inferTool('llvm-rs-as', 'LLVM_RS_AS', os.path.join(os.getenv('ANDROID_HOST_OUT'…
51 config.rs_filecheck_wrapper = inferTool('rs-filecheck-wrapper.sh', 'RS_FILECHECK_WRAPPER', os.path.…
52 …r = inferTool('scriptc-filecheck-wrapper.sh', 'SCRIPTC_FILECHECK_WRAPPER', os.path.join(config.bas…
55 config.slang_includes = "-I " + os.path.join(config.base_path, 'frameworks', 'rs', 'scriptc') + " "…
56 … + "-I " + os.path.join(config.base_path, 'external', 'clang', 'lib', 'Headers')