-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathPackage.swift
More file actions
171 lines (157 loc) · 5.62 KB
/
Package.swift
File metadata and controls
171 lines (157 loc) · 5.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "AutomatticTracksiOS",
platforms: [.macOS(.v10_14), .iOS(.v15), .tvOS(.v15)],
products: [
.library(
name: "AutomatticTracks",
targets: [
"AutomatticTracksEvents",
"AutomatticEncryptedLogs",
"AutomatticRemoteLogging",
"AutomatticExperiments",
"AutomatticCrashLoggingUI",
"AutomatticTracksModel",
"AutomatticTracksModelObjC",
"AutomatticTracksConstantsObjC",
"AutomatticTracks",
]
),
// This target is seperated out to reduce the number of other
// dependencies included as part of the other targets.
.library(
name: "AutomatticEncryptedLogs",
targets: ["AutomatticEncryptedLogs"]
),
],
dependencies: [
// Runtime dependencies
.package(name: "Sentry", url: "https://github.com/getsentry/sentry-cocoa", from: "9.4.0"),
.package(name: "Sodium", url: "https://github.com/jedisct1/swift-sodium", from: "0.10.0"),
.package(url: "https://github.com/squarefrog/UIDeviceIdentifier", from: "2.0.0"),
// Tests dependencies
.package(url: "https://github.com/AliSoftware/OHHTTPStubs", from: "9.0.0"),
.package(name: "OCMock", url: "https://github.com/erikdoe/ocmock", .branch("master")),
.package(name: "BuildkiteTestCollector", url: "https://github.com/buildkite/test-collector-swift", from: "0.3.0"),
],
targets: [
// ExPlat experiments
.target(
name: "AutomatticExperiments",
dependencies: ["AutomatticTracksModel"],
path: "Sources/Experiments"
),
// Reporting events to the Tracks service
.target(
name: "AutomatticTracksEvents",
dependencies: [
"AutomatticTracksModel",
"AutomatticExperiments",
"AutomatticTracksEventsForSwift"
],
path: "Sources/Event Logging",
publicHeadersPath: ".",
cSettings: [.headerSearchPath("../Model/ObjC")]
),
// Reporting events to the Tracks service
//
// This module offers a convenience incremental migration path
// from ObjC to Swift for AutomatticTracksEvents.
// Once all of the code is migrated to Swift we can just remove
// AutomatticTracksEvents and rename this module to
// AutomatticTracksEvents
//
.target(
name: "AutomatticTracksEventsForSwift",
dependencies: ["AutomatticTracksModel"],
path: "Sources/Event Logging (Swift)"
),
// Uploading app logs and crash logs
.target(
name: "AutomatticRemoteLogging",
dependencies: [
"Sentry",
"Sodium",
"AutomatticTracksModel",
"AutomatticTracksEvents",
"AutomatticEncryptedLogs"
],
path: "Sources/Remote Logging"
),
// Uploading app logs
.target(
name: "AutomatticEncryptedLogs",
dependencies: [
"Sodium",
"AutomatticTracksConstantsObjC"
],
path: "Sources/Encrypted Logs"
),
// UI for displaying crash logs
.target(
name: "AutomatticCrashLoggingUI",
dependencies: ["AutomatticRemoteLogging"],
path: "Sources/UI"
),
// A catch-all target for when you just want to import everything
.target(
name: "AutomatticTracks",
dependencies: [
"AutomatticExperiments",
"AutomatticTracksEvents",
"AutomatticRemoteLogging",
"AutomatticCrashLoggingUI",
"AutomatticTracksModel",
"AutomatticTracksModelObjC"
],
path: "Sources/AutomatticTracks",
exclude: ["AutomatticTracks.h"]
),
// Shared code used by multiple targets
.target(
name: "AutomatticTracksModelObjC",
dependencies: [
"UIDeviceIdentifier",
"AutomatticTracksConstantsObjC"
],
path: "Sources/Model/ObjC/Common",
publicHeadersPath: ".",
cSettings: [.headerSearchPath("../../Event Logging/private")]
),
.target(
name: "AutomatticTracksConstantsObjC",
dependencies: [],
path: "Sources/Model/ObjC/Constants",
publicHeadersPath: ".",
cSettings: []
),
.target(
name: "AutomatticTracksModel",
dependencies: ["AutomatticTracksModelObjC", "Sentry"],
path: "Sources/Model/Swift"),
// Tests
.testTarget(
name: "AutomatticTracksTests",
dependencies: [
"AutomatticTracks",
"AutomatticTracksEvents",
"AutomatticTracksModel",
"BuildkiteTestCollector",
.product(name: "OHHTTPStubsSwift", package: "OHHTTPStubs"),
],
path: "Tests",
exclude: ["Tests/ObjC"],
resources: [.process("Mock Data")]
),
.testTarget(
name: "AutomatticTracksTestsObjC",
dependencies: [
"AutomatticTracksEvents",
"BuildkiteTestCollector",
"OCMock",
],
path: "Tests/Tests/ObjC"
),
]
)