Lines Matching full:projects
29 all_projects: projects in the LLVM checkout.
63 When False, relative paths for each projects points to a separate
67 # FIXME: cover all of llvm projects.
69 # Projects that reside inside 'projects/' in a single source tree checkout.
78 # Projects that reside inside 'tools/' in a single source tree checkout.
82 projects = [LLVMProject("llvm", "")]
83 projects += [
84 LLVMProject(p, os.path.join("projects", p)) for p in ORDINARY_PROJECTS
86 projects += [LLVMProject(p, os.path.join("tools", p)) for p in TOOLS_PROJECTS]
87 projects.append(
93 projects = [LLVMProject("llvm", "llvm")]
94 projects += [LLVMProject(p, p) for p in ORDINARY_PROJECTS]
95 projects += [LLVMProject(p, p) for p in TOOLS_PROJECTS]
96 projects.append(
99 return projects