├── .bazelrc ├── .gitignore ├── .travis.yml ├── BUILD ├── BazelExtensions ├── BUILD └── version.bzl ├── BuildServiceShim ├── BUILD ├── main.c └── stub.sh ├── Docs ├── default_architecture.png ├── xcbuildkit_proxy.png └── xcbuildkit_replacement.png ├── Examples ├── BEP │ ├── build_event_stream.pb.swift │ ├── command_line.pb.swift │ ├── invocation_policy.pb.swift │ └── option_filters.pb.swift ├── BSBuildService │ ├── Info.plist │ └── main.swift ├── BazelBuildService │ ├── BEPService.swift │ ├── BEPStream.swift │ ├── BazelBuildServiceConfig.swift │ ├── BazelBuildServiceStub.swift │ ├── IndexingService.swift │ ├── Info.plist │ ├── InstallerPkg │ │ ├── Resources │ │ │ └── welcome.html │ │ └── distribution.xml │ ├── ProgressView.swift │ ├── WorkspaceInfo.swift │ ├── WorkspaceInfoKeyable.swift │ └── main.swift ├── HybridBuildService │ ├── Info.plist │ ├── Messages.swift │ └── main.swift └── XCBBuildServiceProxy │ ├── Info.plist │ ├── XCBBuildServiceProxyStub.swift │ └── main.swift ├── LICENSE ├── Makefile ├── README.md ├── Sources ├── BKBuildService │ ├── BPlistConverter.swift │ ├── PrettyPrinter.swift │ ├── Service.swift │ └── XCBBuildServiceProcess.swift └── XCBProtocol │ ├── Coder.swift │ ├── Packer.swift │ └── Protocol.swift ├── WORKSPACE ├── iOSApp ├── CLI │ └── main.m ├── Default-568h@2x.png ├── FW1 │ ├── FW1.h │ ├── FW1.m │ └── FW1.swift ├── iOSApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── iOSApp.xcscheme └── iOSApp │ ├── Info.plist │ ├── Test.swift │ ├── iOSApp-Bridging-Header.h │ └── main.m ├── notes.txt ├── templates └── FW1 │ ├── FW1 │ ├── Info.plist │ └── module.modulemap ├── test └── ServiceTests.swift ├── third_party ├── BUILD.bazel ├── repositories.bzl └── xcbuildkit-MessagePack │ ├── .gitignore │ ├── .swift-version │ ├── .travis.yml │ ├── BUILD.bazel │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── MessagePack.swift.podspec │ ├── MessagePack.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── MessagePack iOS.xcscheme │ │ ├── MessagePack macOS.xcscheme │ │ ├── MessagePack tvOS.xcscheme │ │ └── MessagePack watchOS.xcscheme │ ├── Package.swift │ ├── README.md │ ├── Resources │ ├── Info.plist │ ├── MessagePack.h │ └── Tests-Info.plist │ ├── Sources │ └── MessagePack │ │ ├── ConvenienceInitializers.swift │ │ ├── ConvenienceProperties.swift │ │ ├── LiteralConvertibles.swift │ │ ├── MessagePack.swift │ │ ├── Pack.swift │ │ ├── Subdata.swift │ │ └── Unpack.swift │ ├── Tests │ ├── LinuxMain.swift │ └── MessagePackTests │ │ ├── ArrayTests.swift │ │ ├── BinaryTests.swift │ │ ├── ConvenienceInitializersTests.swift │ │ ├── ConveniencePropertiesTests.swift │ │ ├── DescriptionTests.swift │ │ ├── DoubleTests.swift │ │ ├── EqualityTests.swift │ │ ├── ExampleTests.swift │ │ ├── ExtendedTests.swift │ │ ├── FalseTests.swift │ │ ├── FloatTests.swift │ │ ├── HashValueTests.swift │ │ ├── IntegerTests.swift │ │ ├── MapTests.swift │ │ ├── NilTests.swift │ │ ├── StringTests.swift │ │ ├── SubdataTests.swift │ │ └── TrueTests.swift │ └── WORKSPACE ├── tools └── bazelwrapper └── utils ├── InstallerPkg ├── pkg.bzl └── scripts │ └── postinstall ├── diff.py ├── msgpack_dumper.py ├── service.py ├── uninstall.sh └── unpacker.py /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/.bazelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/BUILD -------------------------------------------------------------------------------- /BazelExtensions/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BazelExtensions/version.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/BazelExtensions/version.bzl -------------------------------------------------------------------------------- /BuildServiceShim/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/BuildServiceShim/BUILD -------------------------------------------------------------------------------- /BuildServiceShim/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/BuildServiceShim/main.c -------------------------------------------------------------------------------- /BuildServiceShim/stub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/BuildServiceShim/stub.sh -------------------------------------------------------------------------------- /Docs/default_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Docs/default_architecture.png -------------------------------------------------------------------------------- /Docs/xcbuildkit_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Docs/xcbuildkit_proxy.png -------------------------------------------------------------------------------- /Docs/xcbuildkit_replacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Docs/xcbuildkit_replacement.png -------------------------------------------------------------------------------- /Examples/BEP/build_event_stream.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BEP/build_event_stream.pb.swift -------------------------------------------------------------------------------- /Examples/BEP/command_line.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BEP/command_line.pb.swift -------------------------------------------------------------------------------- /Examples/BEP/invocation_policy.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BEP/invocation_policy.pb.swift -------------------------------------------------------------------------------- /Examples/BEP/option_filters.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BEP/option_filters.pb.swift -------------------------------------------------------------------------------- /Examples/BSBuildService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BSBuildService/Info.plist -------------------------------------------------------------------------------- /Examples/BSBuildService/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BSBuildService/main.swift -------------------------------------------------------------------------------- /Examples/BazelBuildService/BEPService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/BEPService.swift -------------------------------------------------------------------------------- /Examples/BazelBuildService/BEPStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/BEPStream.swift -------------------------------------------------------------------------------- /Examples/BazelBuildService/BazelBuildServiceConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/BazelBuildServiceConfig.swift -------------------------------------------------------------------------------- /Examples/BazelBuildService/BazelBuildServiceStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/BazelBuildServiceStub.swift -------------------------------------------------------------------------------- /Examples/BazelBuildService/IndexingService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/IndexingService.swift -------------------------------------------------------------------------------- /Examples/BazelBuildService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/Info.plist -------------------------------------------------------------------------------- /Examples/BazelBuildService/InstallerPkg/Resources/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/InstallerPkg/Resources/welcome.html -------------------------------------------------------------------------------- /Examples/BazelBuildService/InstallerPkg/distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/InstallerPkg/distribution.xml -------------------------------------------------------------------------------- /Examples/BazelBuildService/ProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/ProgressView.swift -------------------------------------------------------------------------------- /Examples/BazelBuildService/WorkspaceInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/WorkspaceInfo.swift -------------------------------------------------------------------------------- /Examples/BazelBuildService/WorkspaceInfoKeyable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/WorkspaceInfoKeyable.swift -------------------------------------------------------------------------------- /Examples/BazelBuildService/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/BazelBuildService/main.swift -------------------------------------------------------------------------------- /Examples/HybridBuildService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/HybridBuildService/Info.plist -------------------------------------------------------------------------------- /Examples/HybridBuildService/Messages.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/HybridBuildService/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/HybridBuildService/main.swift -------------------------------------------------------------------------------- /Examples/XCBBuildServiceProxy/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/XCBBuildServiceProxy/Info.plist -------------------------------------------------------------------------------- /Examples/XCBBuildServiceProxy/XCBBuildServiceProxyStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/XCBBuildServiceProxy/XCBBuildServiceProxyStub.swift -------------------------------------------------------------------------------- /Examples/XCBBuildServiceProxy/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Examples/XCBBuildServiceProxy/main.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/BKBuildService/BPlistConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Sources/BKBuildService/BPlistConverter.swift -------------------------------------------------------------------------------- /Sources/BKBuildService/PrettyPrinter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Sources/BKBuildService/PrettyPrinter.swift -------------------------------------------------------------------------------- /Sources/BKBuildService/Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Sources/BKBuildService/Service.swift -------------------------------------------------------------------------------- /Sources/BKBuildService/XCBBuildServiceProcess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Sources/BKBuildService/XCBBuildServiceProcess.swift -------------------------------------------------------------------------------- /Sources/XCBProtocol/Coder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Sources/XCBProtocol/Coder.swift -------------------------------------------------------------------------------- /Sources/XCBProtocol/Packer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Sources/XCBProtocol/Packer.swift -------------------------------------------------------------------------------- /Sources/XCBProtocol/Protocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/Sources/XCBProtocol/Protocol.swift -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/WORKSPACE -------------------------------------------------------------------------------- /iOSApp/CLI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/CLI/main.m -------------------------------------------------------------------------------- /iOSApp/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/Default-568h@2x.png -------------------------------------------------------------------------------- /iOSApp/FW1/FW1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/FW1/FW1.h -------------------------------------------------------------------------------- /iOSApp/FW1/FW1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/FW1/FW1.m -------------------------------------------------------------------------------- /iOSApp/FW1/FW1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/FW1/FW1.swift -------------------------------------------------------------------------------- /iOSApp/iOSApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/iOSApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSApp/iOSApp.xcodeproj/xcshareddata/xcschemes/iOSApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/iOSApp.xcodeproj/xcshareddata/xcschemes/iOSApp.xcscheme -------------------------------------------------------------------------------- /iOSApp/iOSApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/iOSApp/Info.plist -------------------------------------------------------------------------------- /iOSApp/iOSApp/Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/iOSApp/Test.swift -------------------------------------------------------------------------------- /iOSApp/iOSApp/iOSApp-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/iOSApp/iOSApp-Bridging-Header.h -------------------------------------------------------------------------------- /iOSApp/iOSApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/iOSApp/iOSApp/main.m -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/notes.txt -------------------------------------------------------------------------------- /templates/FW1/FW1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/templates/FW1/FW1 -------------------------------------------------------------------------------- /templates/FW1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/templates/FW1/Info.plist -------------------------------------------------------------------------------- /templates/FW1/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/templates/FW1/module.modulemap -------------------------------------------------------------------------------- /test/ServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/test/ServiceTests.swift -------------------------------------------------------------------------------- /third_party/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/repositories.bzl -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/.gitignore -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/.travis.yml -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/BUILD.bazel -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/LICENSE -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/MessagePack.swift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/MessagePack.swift.podspec -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/MessagePack.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/MessagePack.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/MessagePack.xcodeproj/xcshareddata/xcschemes/MessagePack iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/MessagePack.xcodeproj/xcshareddata/xcschemes/MessagePack iOS.xcscheme -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/MessagePack.xcodeproj/xcshareddata/xcschemes/MessagePack macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/MessagePack.xcodeproj/xcshareddata/xcschemes/MessagePack macOS.xcscheme -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/MessagePack.xcodeproj/xcshareddata/xcschemes/MessagePack tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/MessagePack.xcodeproj/xcshareddata/xcschemes/MessagePack tvOS.xcscheme -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/MessagePack.xcodeproj/xcshareddata/xcschemes/MessagePack watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/MessagePack.xcodeproj/xcshareddata/xcschemes/MessagePack watchOS.xcscheme -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Package.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/README.md -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Resources/Info.plist -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Resources/MessagePack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Resources/MessagePack.h -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Resources/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Resources/Tests-Info.plist -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Sources/MessagePack/ConvenienceInitializers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Sources/MessagePack/ConvenienceInitializers.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Sources/MessagePack/ConvenienceProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Sources/MessagePack/ConvenienceProperties.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Sources/MessagePack/LiteralConvertibles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Sources/MessagePack/LiteralConvertibles.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Sources/MessagePack/MessagePack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Sources/MessagePack/MessagePack.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Sources/MessagePack/Pack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Sources/MessagePack/Pack.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Sources/MessagePack/Subdata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Sources/MessagePack/Subdata.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Sources/MessagePack/Unpack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Sources/MessagePack/Unpack.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/ArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/ArrayTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/BinaryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/BinaryTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/ConvenienceInitializersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/ConvenienceInitializersTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/ConveniencePropertiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/ConveniencePropertiesTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/DescriptionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/DescriptionTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/DoubleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/DoubleTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/EqualityTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/EqualityTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/ExampleTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/ExtendedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/ExtendedTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/FalseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/FalseTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/FloatTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/FloatTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/HashValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/HashValueTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/IntegerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/IntegerTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/MapTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/MapTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/NilTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/NilTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/StringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/StringTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/SubdataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/SubdataTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/TrueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/third_party/xcbuildkit-MessagePack/Tests/MessagePackTests/TrueTests.swift -------------------------------------------------------------------------------- /third_party/xcbuildkit-MessagePack/WORKSPACE: -------------------------------------------------------------------------------- 1 | workspace(name = "xcbuildkit-MessagePack") 2 | -------------------------------------------------------------------------------- /tools/bazelwrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/tools/bazelwrapper -------------------------------------------------------------------------------- /utils/InstallerPkg/pkg.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/utils/InstallerPkg/pkg.bzl -------------------------------------------------------------------------------- /utils/InstallerPkg/scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/utils/InstallerPkg/scripts/postinstall -------------------------------------------------------------------------------- /utils/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/utils/diff.py -------------------------------------------------------------------------------- /utils/msgpack_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/utils/msgpack_dumper.py -------------------------------------------------------------------------------- /utils/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/utils/service.py -------------------------------------------------------------------------------- /utils/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/utils/uninstall.sh -------------------------------------------------------------------------------- /utils/unpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrymarino/xcbuildkit/HEAD/utils/unpacker.py --------------------------------------------------------------------------------