mirror of
https://github.com/google/santa.git
synced 2026-01-14 08:47:57 -05:00
* * Added Xcode project + pods * Cleaned up unused SNTXPCUnprivilegedControlInterface MachServices id. * Change santad's MachServices id to be compatible with the default SystemExtension namespace template. * pods * bazel * switch MachService name for 10.15+ * build with SystemExensions framework * build with Xcode 11 * launchd.plist fix * use @available * * Request SystemExtension activation on a background thread. * Create a constant for the "com.google.santa.daemon" SystemExtension id.
23 lines
394 B
Ruby
23 lines
394 B
Ruby
|
|
def common_pods
|
|
pod 'MOLXPCConnection'
|
|
pod 'MOLCodesignChecker'
|
|
pod 'FMDB'
|
|
pod 'MOLCertificate'
|
|
pod 'OCMock'
|
|
pod 'MOLAuthenticatingURLSession'
|
|
pod 'MOLFCMClient'
|
|
end
|
|
|
|
project './Santa.xcodeproj'
|
|
|
|
project = Xcodeproj::Project.open "./Santa.xcodeproj"
|
|
project.targets.each do |t|
|
|
if t.name == "santa-driver"
|
|
next
|
|
end
|
|
target t.name do
|
|
common_pods
|
|
end
|
|
end
|