blob: 29fa008448e19f77ff59b42e8eb440f4ac5b8eab [file] [log] [blame]
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001module Clang_Analysis {
2 requires cplusplus
3 umbrella "Analysis"
4
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005 textual header "Analysis/Analyses/ThreadSafetyOps.def"
Stephen Hinesc568f1e2014-07-21 00:47:37 -07006
7 module * { export * }
8}
9
10module Clang_AST {
11 requires cplusplus
12 umbrella "AST"
13
Stephen Hines0e2c34f2015-03-23 12:09:02 -070014 textual header "AST/BuiltinTypes.def"
15 textual header "AST/TypeLocNodes.def"
16 textual header "AST/TypeNodes.def"
Stephen Hinesc568f1e2014-07-21 00:47:37 -070017
18 module * { export * }
19}
20
21module Clang_ASTMatchers { requires cplusplus umbrella "ASTMatchers" module * { export * } }
22
23module Clang_Basic {
24 requires cplusplus
25 umbrella "Basic"
26
Stephen Hines0e2c34f2015-03-23 12:09:02 -070027 textual header "Basic/BuiltinsAArch64.def"
28 textual header "Basic/BuiltinsARM.def"
29 textual header "Basic/Builtins.def"
30 textual header "Basic/BuiltinsHexagon.def"
31 textual header "Basic/BuiltinsLe64.def"
32 textual header "Basic/BuiltinsMips.def"
33 textual header "Basic/BuiltinsNEON.def"
34 textual header "Basic/BuiltinsNVPTX.def"
35 textual header "Basic/BuiltinsPPC.def"
36 textual header "Basic/BuiltinsR600.def"
37 textual header "Basic/BuiltinsX86.def"
38 textual header "Basic/BuiltinsXCore.def"
39 textual header "Basic/DiagnosticOptions.def"
40 textual header "Basic/LangOptions.def"
41 textual header "Basic/OpenCLExtensions.def"
42 textual header "Basic/OpenMPKinds.def"
43 textual header "Basic/OperatorKinds.def"
44 textual header "Basic/Sanitizers.def"
45 textual header "Basic/TokenKinds.def"
Stephen Hinesc568f1e2014-07-21 00:47:37 -070046
47 module * { export * }
48}
49
50module Clang_CodeGen { requires cplusplus umbrella "CodeGen" module * { export * } }
51module Clang_Config { requires cplusplus umbrella "Config" module * { export * } }
52
Stephen Hines176edba2014-12-01 14:53:08 -080053// Files for diagnostic groups are spread all over the include/clang/ tree, but
54// logically form a single module.
55module Clang_Diagnostics {
56 requires cplusplus
57
58 module All { header "Basic/AllDiagnostics.h" export * }
59 module Analysis { header "Analysis/AnalysisDiagnostic.h" export * }
60 module AST { header "AST/ASTDiagnostic.h" export * }
61 module Comment { header "AST/CommentDiagnostic.h" export * }
62 module Driver { header "Driver/DriverDiagnostic.h" export * }
63 module Frontend { header "Frontend/FrontendDiagnostic.h" export * }
64 module Lex { header "Lex/LexDiagnostic.h" export * }
65 module Parse { header "Parse/ParseDiagnostic.h" export * }
66 // FIXME: This breaks the build of Clang_Sema, for unknown reasons.
67 //module Sema { header "Sema/SemaDiagnostic.h" export * }
68 module Serialization { header "Serialization/SerializationDiagnostic.h" export * }
69}
70
Stephen Hinesc568f1e2014-07-21 00:47:37 -070071module Clang_Driver {
72 requires cplusplus
73 umbrella "Driver"
74
Stephen Hines0e2c34f2015-03-23 12:09:02 -070075 textual header "Driver/Types.def"
Stephen Hinesc568f1e2014-07-21 00:47:37 -070076
77 module * { export * }
78}
79
80module Clang_Edit { requires cplusplus umbrella "Edit" module * { export * } }
81module Clang_Format { requires cplusplus umbrella "Format" module * { export * } }
82
83module Clang_Frontend {
84 requires cplusplus
85 umbrella "Frontend"
86
Stephen Hines0e2c34f2015-03-23 12:09:02 -070087 textual header "Frontend/CodeGenOptions.def"
88 textual header "Frontend/LangStandards.def"
Stephen Hinesc568f1e2014-07-21 00:47:37 -070089
90 module * { export * }
91}
92
93module Clang_FrontendTool { requires cplusplus umbrella "FrontendTool" module * { export * } }
94module Clang_Index { requires cplusplus umbrella "Index" module * { export * } }
95module Clang_Lex { requires cplusplus umbrella "Lex" module * { export * } }
96module Clang_Parse { requires cplusplus umbrella "Parse" module * { export * } }
97module Clang_Rewrite { requires cplusplus umbrella "Rewrite" module * { export * } }
98module Clang_Sema { requires cplusplus umbrella "Sema" module * { export * } }
99module Clang_Serialization { requires cplusplus umbrella "Serialization" module * { export * } }
100
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700101module Clang_StaticAnalyzer_Core {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700102 requires cplusplus
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700103 umbrella "StaticAnalyzer/Core"
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700104
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700105 textual header "StaticAnalyzer/Core/Analyses.def"
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700106
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700107 module * { export * }
108}
109
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700110module Clang_StaticAnalyzer_Checkers {
111 requires cplusplus
112 umbrella "StaticAnalyzer/Checkers"
113 module * { export * }
114}
115
116module Clang_StaticAnalyzer_Frontend {
117 requires cplusplus
118 umbrella "StaticAnalyzer/Frontend"
119 module * { export * }
120}
121
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700122module Clang_Tooling { requires cplusplus umbrella "Tooling" module * { export * } }