1
2module lldb_API {
3  requires cplusplus
4
5  textual header "Utility/Instrumentation.h"
6
7  umbrella "API"
8  module * { export * }
9}
10
11module lldb_Host {
12  requires cplusplus
13
14  // Because we have OS-specific headers in Host, we just list
15  // all OS-independent headers here that will include the correct
16  // OS-specific header for us.
17  module ConnectionFileDescriptor { header "Host/ConnectionFileDescriptor.h" export * }
18  module Debug { header "Host/Debug.h" export * }
19  module Editline { header "Host/Editline.h" export * }
20  module FileCache { header "Host/FileCache.h" export * }
21  module File { header "Host/File.h" export * }
22  module FileAction { header "Host/FileAction.h" export * }
23  module FileSystem { header "Host/FileSystem.h" export * }
24  module HostGetOpt { header "Host/HostGetOpt.h" export * }
25  module Host { header "Host/Host.h" export * }
26  module HostInfoBase { header "Host/HostInfoBase.h" export * }
27  module HostInfo { header "Host/HostInfo.h" export * }
28  module HostNativeProcessBase { header "Host/HostNativeProcessBase.h" export * }
29  module HostNativeProcess { header "Host/HostNativeProcess.h" export * }
30  module HostNativeThreadBase { header "Host/HostNativeThreadBase.h" export * }
31  module HostNativeThreadForward { header "Host/HostNativeThreadForward.h" export * }
32  module HostNativeThread { header "Host/HostNativeThread.h" export * }
33  module HostProcess { header "Host/HostProcess.h" export * }
34  module HostThread { header "Host/HostThread.h" export * }
35  module LockFileBase { header "Host/LockFileBase.h" export * }
36  module LockFile { header "Host/LockFile.h" export * }
37  module MainLoopBase { header "Host/MainLoopBase.h" export * }
38  module MainLoop { header "Host/MainLoop.h" export * }
39  module MonitoringProcessLauncher { header "Host/MonitoringProcessLauncher.h" export * }
40  module OptionParser { header "Host/OptionParser.h" export * }
41  module PipeBase { header "Host/PipeBase.h" export * }
42  module Pipe { header "Host/Pipe.h" export * }
43  module PosixApi { header "Host/PosixApi.h" export * }
44  module ProcessLauncher { header "Host/ProcessLauncher.h" export * }
45  module ProcessLaunchInfo { header "Host/ProcessLaunchInfo.h" export * }
46  module ProcessRunLock { header "Host/ProcessRunLock.h" export * }
47  module PseudoTerminal { header "Host/PseudoTerminal.h" export * }
48  module SafeMachO { header "Host/SafeMachO.h" export * }
49  module SocketAddress { header "Host/SocketAddress.h" export * }
50  module Socket { header "Host/Socket.h" export * }
51  module Terminal { header "Host/Terminal.h" export * }
52  module ThreadLauncher { header "Host/ThreadLauncher.h" export * }
53  module Time { header "Host/Time.h" export * }
54  module XML { header "Host/XML.h" export * }
55
56  module common {
57    umbrella "Host/common"
58    module * { export * }
59  }
60
61  export *
62}
63
64module lldb_Initialization {
65  requires cplusplus
66
67  umbrella "Initialization"
68  module * { export * }
69}
70
71
72module lldb_Wrapper {
73
74  module lldb_Breakpoint {
75    requires cplusplus
76
77    umbrella "Breakpoint"
78    module * { export * }
79  }
80
81  module lldb_Core {
82    requires cplusplus
83
84    umbrella "Core"
85    module * { export * }
86  }
87
88  module lldb_DataFormatters {
89    requires cplusplus
90
91    umbrella "DataFormatters"
92    module * { export * }
93  }
94
95  module lldb_Expression {
96    requires cplusplus
97
98    umbrella "Expression"
99    module * { export * }
100    // TODO: This file includes a non-public header.
101    exclude header "Expression/REPL.h"
102  }
103
104  module lldb_Interpreter {
105    requires cplusplus
106
107    umbrella "Interpreter"
108    module * { export * }
109  }
110
111  module lldb_Symbol {
112    requires cplusplus
113
114    umbrella "Symbol"
115    module * { export * }
116  }
117  module lldb_Target {
118    requires cplusplus
119
120    umbrella "Target"
121    textual header "Target/AppleArm64ExceptionClass.def"
122    module * { export * }
123  }
124}
125
126
127module lldb_Utility {
128  requires cplusplus
129
130  umbrella "Utility"
131  module * { export * }
132
133  module lldb_defines { header "lldb-defines.h" export * }
134  module lldb_enumerations { header "lldb-enumerations.h" export * }
135  module lldb_forward { header "lldb-forward.h" export * }
136  module lldb_private_enumerations { header "lldb-private-enumerations.h" export * }
137  module lldb_private_forward { header "lldb-private-forward.h" export * }
138  module lldb_private { header "lldb-private.h" export * }
139  module lldb_private_interfaces { header "lldb-private-interfaces.h" export * }
140  module lldb_private_types { header "lldb-private-types.h" export * }
141  module lldb_public { header "lldb-public.h" export * }
142  module lldb_types { header "lldb-types.h" export * }
143  module lldb_versioning { header "lldb-versioning.h" export * }
144}
145