-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathproject.pbxproj
More file actions
2220 lines (2207 loc) · 124 KB
/
project.pbxproj
File metadata and controls
2220 lines (2207 loc) · 124 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 50;
objects = {
/* Begin PBXBuildFile section */
76140DF1262796F0007CA5AC /* libSwiftUtil.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 76140D9C262795EE007CA5AC /* libSwiftUtil.a */; };
76140DF226279719007CA5AC /* libSwiftUtil.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 76140D9C262795EE007CA5AC /* libSwiftUtil.a */; };
76140DF326279721007CA5AC /* libSwiftUtil.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 76140D9C262795EE007CA5AC /* libSwiftUtil.a */; };
7657C22224F9BEA70056F5A6 /* NSObject+EDOBlockedType.m in Sources */ = {isa = PBXBuildFile; fileRef = 7657C22124F9BEA70056F5A6 /* NSObject+EDOBlockedType.m */; };
7669CFA2258BFA3100280980 /* EDORuntimeUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7669CFA1258BFA3100280980 /* EDORuntimeUtils.m */; };
7685673323A1C10200EDBDB4 /* EDORemoteException.m in Sources */ = {isa = PBXBuildFile; fileRef = 7685673123A1C10100EDBDB4 /* EDORemoteException.m */; };
76EAF4D2262F588D0025F32C /* CodableVariable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76EAF4D1262F588C0025F32C /* CodableVariable.swift */; };
C52D85962220C4AB00E86E60 /* EDODeviceChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = C52D857A2220ADBD00E86E60 /* EDODeviceChannel.m */; };
C52D85982220C4AB00E86E60 /* EDODeviceConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = C52D857D2220ADBE00E86E60 /* EDODeviceConnector.m */; };
C52D859A2220C4AB00E86E60 /* EDODeviceDetector.m in Sources */ = {isa = PBXBuildFile; fileRef = C52D85782220ADBC00E86E60 /* EDODeviceDetector.m */; };
C52D859C2220C4AB00E86E60 /* EDOUSBMuxUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C52D85792220ADBC00E86E60 /* EDOUSBMuxUtil.m */; };
C52D859D2220C4F800E86E60 /* libDeviceLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C52D85942220C44300E86E60 /* libDeviceLib.a */; };
C532ABF32136054B00162011 /* libeDistantObject.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C845027720DD9D5D00D7350F /* libeDistantObject.a */; };
C532ABFA2136142300162011 /* libTestsBundle.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C84503C620DDB07A00D7350F /* libTestsBundle.a */; };
C532ABFB2136172E00162011 /* EDOTestDummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0382134D50600421D72 /* EDOTestDummy.m */; };
C532ABFC2136172E00162011 /* EDOTestProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F03E2134D50600421D72 /* EDOTestProtocol.m */; };
C532ABFD2136180A00162011 /* EDOTestDummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0382134D50600421D72 /* EDOTestDummy.m */; };
C535B59B21D3079000BAE558 /* EDOHostNamingService.m in Sources */ = {isa = PBXBuildFile; fileRef = C535B59921D3077200BAE558 /* EDOHostNamingService.m */; };
C535B59D21D307FF00BAE558 /* EDOHostNamingServiceTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C535B59C21D307FF00BAE558 /* EDOHostNamingServiceTest.m */; };
C55B85F72241AEDA00B568FA /* EDODeviceConnectorTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C55B85D422419CB000B568FA /* EDODeviceConnectorTest.m */; };
C55B85F82241AEE600B568FA /* libDeviceLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C52D85942220C44300E86E60 /* libDeviceLib.a */; };
C55F8B472183AC3100E8E75A /* EDOTestValueType.m in Sources */ = {isa = PBXBuildFile; fileRef = C55F8B432183AC2100E8E75A /* EDOTestValueType.m */; };
C55F8B492183AC3200E8E75A /* EDOTestValueType.m in Sources */ = {isa = PBXBuildFile; fileRef = C55F8B432183AC2100E8E75A /* EDOTestValueType.m */; };
C55F8B4A2183AC4200E8E75A /* EDOTestNonNSCodingType.m in Sources */ = {isa = PBXBuildFile; fileRef = C55F8B442183AC2200E8E75A /* EDOTestNonNSCodingType.m */; };
C55F8B4B2183AC4500E8E75A /* EDOTestNonNSCodingType.m in Sources */ = {isa = PBXBuildFile; fileRef = C55F8B442183AC2200E8E75A /* EDOTestNonNSCodingType.m */; };
C5791D8121AF79FC003EBC59 /* EDOHostPortTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C5791D8021AF79FC003EBC59 /* EDOHostPortTest.m */; };
C5791D8421AF7A67003EBC59 /* EDOHostPort.m in Sources */ = {isa = PBXBuildFile; fileRef = C5791D8321AF7A67003EBC59 /* EDOHostPort.m */; };
C5791DAA21B61082003EBC59 /* EDOChannelPoolTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C5791DA921B61081003EBC59 /* EDOChannelPoolTest.m */; };
C5791DAD21B6109A003EBC59 /* EDOChannelPool.m in Sources */ = {isa = PBXBuildFile; fileRef = C5791DAB21B61099003EBC59 /* EDOChannelPool.m */; };
C5A2F0472134D52500421D72 /* EDOServicePerfTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0462134D52500421D72 /* EDOServicePerfTest.m */; };
C5A2F04E2134D54300421D72 /* EDOServiceUITest.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0492134D54200421D72 /* EDOServiceUITest.m */; };
C5A2F04F2134D54300421D72 /* EDOSwiftUITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F04A2134D54200421D72 /* EDOSwiftUITest.swift */; };
C5A2F0502134D54300421D72 /* EDOTestDummyInTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F04B2134D54200421D72 /* EDOTestDummyInTest.m */; };
C5A2F0512134D54300421D72 /* EDOTestClassDummyStub.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F04C2134D54200421D72 /* EDOTestClassDummyStub.m */; };
C5A2F05A2134D5BE00421D72 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0542134D5BD00421D72 /* ViewController.m */; };
C5A2F05B2134D5BE00421D72 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0552134D5BD00421D72 /* AppDelegate.m */; };
C5A2F05C2134D5BE00421D72 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0562134D5BD00421D72 /* main.m */; };
C5A2F05D2134D5BE00421D72 /* Dummy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0582134D5BE00421D72 /* Dummy.swift */; };
C5A2F0622134D5DA00421D72 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C5A2F05F2134D5D900421D72 /* LaunchScreen.storyboard */; };
C5A2F0632134D5DA00421D72 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C5A2F0602134D5D900421D72 /* Main.storyboard */; };
C5A2F0642134D65600421D72 /* EDOExecutorTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0312134D4CB00421D72 /* EDOExecutorTest.m */; };
C5A2F0662134D65600421D72 /* EDOMessageTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F02F2134D4CB00421D72 /* EDOMessageTest.m */; };
C5A2F0672134D65600421D72 /* EDOServiceTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0302134D4CB00421D72 /* EDOServiceTest.m */; };
C5A2F0682134D6A000421D72 /* EDOClassMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFDE2134D43100421D72 /* EDOClassMessage.m */; };
C5A2F0692134D6A000421D72 /* EDOClientService.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0002134D43400421D72 /* EDOClientService.m */; };
C5A2F06A2134D6A000421D72 /* EDOExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFD82134D43100421D72 /* EDOExecutor.m */; };
C5A2F06B2134D6A000421D72 /* EDOHostService.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFD62134D43100421D72 /* EDOHostService.m */; };
C5A2F06C2134D6A000421D72 /* EDOHostService+Handlers.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFE82134D43200421D72 /* EDOHostService+Handlers.m */; };
C5A2F06D2134D6C100421D72 /* EDOInvocationMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFF02134D43200421D72 /* EDOInvocationMessage.m */; };
C5A2F06E2134D6C100421D72 /* EDOMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFD52134D43100421D72 /* EDOMessage.m */; };
C5A2F0702134D6C100421D72 /* EDOMethodSignatureMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFFB2134D43300421D72 /* EDOMethodSignatureMessage.m */; };
C5A2F0712134D6C100421D72 /* EDOObject.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFF12134D43300421D72 /* EDOObject.m */; };
C5A2F0722134D6C100421D72 /* EDOObject+EDOParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFDC2134D43100421D72 /* EDOObject+EDOParameter.m */; };
C5A2F0732134D6C100421D72 /* EDOObject+Invocation.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFFA2134D43300421D72 /* EDOObject+Invocation.m */; };
C5A2F0742134D6C100421D72 /* EDOObjectAliveMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFD42134D43100421D72 /* EDOObjectAliveMessage.m */; };
C5A2F0752134D6C100421D72 /* EDOObjectMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFEE2134D43200421D72 /* EDOObjectMessage.m */; };
C5A2F0762134D6C100421D72 /* EDOObjectReleaseMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFEC2134D43200421D72 /* EDOObjectReleaseMessage.m */; };
C5A2F0772134D6C100421D72 /* EDOParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0042134D43400421D72 /* EDOParameter.m */; };
C5A2F0782134D6C100421D72 /* EDOProtocolObject.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFDB2134D43100421D72 /* EDOProtocolObject.m */; };
C5A2F0792134D6C100421D72 /* EDORemoteVariable.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFEA2134D43200421D72 /* EDORemoteVariable.m */; };
C5A2F07A2134D6C100421D72 /* EDOServicePort.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFE72134D43200421D72 /* EDOServicePort.m */; };
C5A2F07B2134D6C100421D72 /* EDOServiceRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFFD2134D43400421D72 /* EDOServiceRequest.m */; };
C5A2F07C2134D6C100421D72 /* EDOValueObject.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFF72134D43300421D72 /* EDOValueObject.m */; };
C5A2F07D2134D6C100421D72 /* EDOValueObject+EDOParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFEF2134D43200421D72 /* EDOValueObject+EDOParameter.m */; };
C5A2F07E2134D6C100421D72 /* EDOValueType.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFE52134D43200421D72 /* EDOValueType.m */; };
C5A2F07F2134D6C100421D72 /* NSObject+EDOParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFDF2134D43100421D72 /* NSObject+EDOParameter.m */; };
C5A2F0802134D6C100421D72 /* NSObject+EDOValue.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFED2134D43200421D72 /* NSObject+EDOValue.m */; };
C5A2F0812134D6C100421D72 /* NSObject+EDOValueObject.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2EFF62134D43300421D72 /* NSObject+EDOValueObject.m */; };
C5A2F0822134D6C100421D72 /* NSProxy+EDOParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0012134D43400421D72 /* NSProxy+EDOParameter.m */; };
C5A2F0832134D6D100421D72 /* EDOTestClassDummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F03B2134D50600421D72 /* EDOTestClassDummy.m */; };
C5A2F0842134D6D100421D72 /* EDOTestDummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0382134D50600421D72 /* EDOTestDummy.m */; };
C5A2F0852134D6D100421D72 /* EDOTestProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F03E2134D50600421D72 /* EDOTestProtocol.m */; };
C5A2F0862134D6D100421D72 /* EDOTestSwiftClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F03F2134D50600421D72 /* EDOTestSwiftClass.swift */; };
C5A2F0872134D6D100421D72 /* EDOTestSwiftProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0402134D50600421D72 /* EDOTestSwiftProtocol.swift */; };
C5D03FDE21D77145003DC06A /* EDOChannelUtilTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C5D03FDD21D77144003DC06A /* EDOChannelUtilTest.m */; };
C5D03FE121D77161003DC06A /* EDOChannelUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C5D03FE021D77161003DC06A /* EDOChannelUtil.m */; };
C5DA825422E06EF800E7535F /* EDOChannelErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = C5DA825322E06EF800E7535F /* EDOChannelErrors.m */; };
C8298A0721599CD3003E3C2C /* EDOServiceUIMemoryTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C8298A0421599CD2003E3C2C /* EDOServiceUIMemoryTest.m */; };
C8298A0821599CD3003E3C2C /* EDOServiceUIBaseTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C8298A0521599CD2003E3C2C /* EDOServiceUIBaseTest.m */; };
C8298A0921599CD3003E3C2C /* EDOServiceUIBlockTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C8298A0621599CD3003E3C2C /* EDOServiceUIBlockTest.m */; };
C833238E215C57B40071DB0C /* NSKeyedUnarchiver+EDOAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = C833238A215C57B30071DB0C /* NSKeyedUnarchiver+EDOAdditions.m */; };
C833238F215C57B40071DB0C /* NSKeyedArchiver+EDOAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = C833238C215C57B40071DB0C /* NSKeyedArchiver+EDOAdditions.m */; };
C845028A20DD9D8800D7350F /* EDOSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = C845027E20DD9D8800D7350F /* EDOSocket.m */; };
C845028C20DD9D8800D7350F /* EDOListenSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = C845028520DD9D8800D7350F /* EDOListenSocket.m */; };
C845028D20DD9D8800D7350F /* EDOSocketChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = C845028620DD9D8800D7350F /* EDOSocketChannel.m */; };
C845028E20DD9D8800D7350F /* EDOSocketPort.m in Sources */ = {isa = PBXBuildFile; fileRef = C845028720DD9D8800D7350F /* EDOSocketPort.m */; };
C845032F20DDA0B200D7350F /* libChannelLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C845026520DD9D2E00D7350F /* libChannelLib.a */; };
C845033920DDA11D00D7350F /* libChannelLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C845026520DD9D2E00D7350F /* libChannelLib.a */; };
C845034020DDA18100D7350F /* EDOSocketChannelTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C845027B20DD9D8800D7350F /* EDOSocketChannelTest.m */; };
C845036220DDA33A00D7350F /* libeDistantObject.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C845027720DD9D5D00D7350F /* libeDistantObject.a */; };
C845038220DDA46400D7350F /* libeDistantObject.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C845027720DD9D5D00D7350F /* libeDistantObject.a */; };
C84503A720DDAEF500D7350F /* libeDistantObject.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C845027720DD9D5D00D7350F /* libeDistantObject.a */; };
C849824221BF212E008F0D6F /* EDOClientServiceStatsCollector.m in Sources */ = {isa = PBXBuildFile; fileRef = C849824021BF212D008F0D6F /* EDOClientServiceStatsCollector.m */; };
C862C6E32253D70D00EABE99 /* EDOServiceException.m in Sources */ = {isa = PBXBuildFile; fileRef = C862C6DF2253D70C00EABE99 /* EDOServiceException.m */; };
C862C6E42253D70D00EABE99 /* EDOServiceError.m in Sources */ = {isa = PBXBuildFile; fileRef = C862C6E22253D70D00EABE99 /* EDOServiceError.m */; };
C87E727122DD323B0081EFBF /* EDOBlockingQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = C87E726F22DD323A0081EFBF /* EDOBlockingQueue.m */; };
C87E727422DD324E0081EFBF /* EDOBlockingQueueTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C87E727222DD32450081EFBF /* EDOBlockingQueueTest.m */; };
C88B8A7C21ADD3DE00DDE607 /* EDONumericMeasure.m in Sources */ = {isa = PBXBuildFile; fileRef = C88B8A5F21ADD38500DDE607 /* EDONumericMeasure.m */; };
C88B8A8A21ADD42700DDE607 /* EDONumericMeasureTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C88B8A6121ADD38500DDE607 /* EDONumericMeasureTest.m */; };
C88B8A8C21ADD43400DDE607 /* libMeasureLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C88B8A7B21ADD3BE00DDE607 /* libMeasureLib.a */; };
C88D3E4E22F4F44E00BECABF /* EDOChannelForwarderTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C88D3E4C22F4F44A00BECABF /* EDOChannelForwarderTest.m */; };
C88D3E4F22F4F44E00BECABF /* EDOChannelMultiplexerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C88D3E4D22F4F44A00BECABF /* EDOChannelMultiplexerTest.m */; };
C88D3E5422F4F46A00BECABF /* EDOChannelForwarder.m in Sources */ = {isa = PBXBuildFile; fileRef = C88D3E5022F4F46400BECABF /* EDOChannelForwarder.m */; };
C88D3E5522F4F46A00BECABF /* EDOChannelMultiplexer.m in Sources */ = {isa = PBXBuildFile; fileRef = C88D3E5322F4F46600BECABF /* EDOChannelMultiplexer.m */; };
C8943DF321C1A6E300347547 /* libMeasureLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C88B8A7B21ADD3BE00DDE607 /* libMeasureLib.a */; };
C896A5DB217A601B00CA5610 /* EDOExecutorMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = C896A5D9217A601B00CA5610 /* EDOExecutorMessage.m */; };
C8A5E00521390E3B00D28052 /* EDOBlockObject.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A5E00321390E3B00D28052 /* EDOBlockObject.m */; };
C8A5E007213F896000D28052 /* NSBlock+EDOInvocation.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A5E006213F896000D28052 /* NSBlock+EDOInvocation.m */; };
C8A772D122D5215F00A75B22 /* EDOSocketPortTest.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A772D022D5215D00A75B22 /* EDOSocketPortTest.m */; };
C8C3B44C2140507700A71091 /* EDOTestSwiftProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A2F0402134D50600421D72 /* EDOTestSwiftProtocol.swift */; };
C8EC49DC26BDF64900DDA57F /* CodableVariableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76EAF505262F58C20025F32C /* CodableVariableTests.swift */; };
C8ED2AE421B7504F00118999 /* EDOTimingFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = C8ED2AE221B7504E00118999 /* EDOTimingFunctions.m */; };
DC84AF0422D805C800D43E26 /* EDOWeakObject.m in Sources */ = {isa = PBXBuildFile; fileRef = DC84AEFF22D572BE00D43E26 /* EDOWeakObject.m */; };
DC84AF0522D805EE00D43E26 /* EDODeallocationTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = DC84AEFE22D572BD00D43E26 /* EDODeallocationTracker.m */; };
DC84AF0922D80A4C00D43E26 /* EDOWeakReferenceTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DC84AF0622D8064100D43E26 /* EDOWeakReferenceTest.m */; };
DC9BF6C222DFC8AF00E135B8 /* NSObject+EDOWeakObject.m in Sources */ = {isa = PBXBuildFile; fileRef = DC9BF6C122DFC8AE00E135B8 /* NSObject+EDOWeakObject.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
C55B85F92241AEEF00B568FA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C845024D20DD9CB900D7350F /* Project object */;
proxyType = 1;
remoteGlobalIDString = C52D858C2220C44300E86E60;
remoteInfo = DeviceLib;
};
C845033A20DDA11D00D7350F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C845024D20DD9CB900D7350F /* Project object */;
proxyType = 1;
remoteGlobalIDString = C845026420DD9D2E00D7350F;
remoteInfo = Channel;
};
C845036320DDA38100D7350F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C845024D20DD9CB900D7350F /* Project object */;
proxyType = 1;
remoteGlobalIDString = C845026E20DD9D5D00D7350F;
remoteInfo = eDistantObject;
};
C845037D20DDA40A00D7350F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C845024D20DD9CB900D7350F /* Project object */;
proxyType = 1;
remoteGlobalIDString = C845034420DDA1E800D7350F;
remoteInfo = TestsHost;
};
C84503A820DDAEF500D7350F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C845024D20DD9CB900D7350F /* Project object */;
proxyType = 1;
remoteGlobalIDString = C845026E20DD9D5D00D7350F;
remoteInfo = eDistantObject;
};
C84503BC20DDB03E00D7350F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C845024D20DD9CB900D7350F /* Project object */;
proxyType = 1;
remoteGlobalIDString = C845026E20DD9D5D00D7350F;
remoteInfo = eDistantObject;
};
C88B8A8D21ADD43A00DDE607 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C845024D20DD9CB900D7350F /* Project object */;
proxyType = 1;
remoteGlobalIDString = C88B8A6F21ADD3BE00DDE607;
remoteInfo = MeasureLib;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
76140D9A262795EE007CA5AC /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C52D85902220C44300E86E60 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C845026320DD9D2E00D7350F /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C845027220DD9D5D00D7350F /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C845039D20DDA84A00D7350F /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
C84503C420DDB07A00D7350F /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C88B8A7721ADD3BE00DDE607 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
76140D9C262795EE007CA5AC /* libSwiftUtil.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSwiftUtil.a; sourceTree = BUILT_PRODUCTS_DIR; };
7657C22024F9BEA70056F5A6 /* NSObject+EDOBlockedType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSObject+EDOBlockedType.h"; path = "Service/Sources/NSObject+EDOBlockedType.h"; sourceTree = "<group>"; };
7657C22124F9BEA70056F5A6 /* NSObject+EDOBlockedType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSObject+EDOBlockedType.m"; path = "Service/Sources/NSObject+EDOBlockedType.m"; sourceTree = "<group>"; };
7669CFA0258BFA3100280980 /* EDORuntimeUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDORuntimeUtils.h; path = Service/Sources/EDORuntimeUtils.h; sourceTree = "<group>"; };
7669CFA1258BFA3100280980 /* EDORuntimeUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDORuntimeUtils.m; path = Service/Sources/EDORuntimeUtils.m; sourceTree = "<group>"; };
7674100D237E01FB00D43A15 /* EDOExecutorMessageTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOExecutorMessageTest.m; path = Service/Tests/UnitTests/EDOExecutorMessageTest.m; sourceTree = "<group>"; };
7685673123A1C10100EDBDB4 /* EDORemoteException.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDORemoteException.m; path = Service/Sources/EDORemoteException.m; sourceTree = "<group>"; };
7685673223A1C10100EDBDB4 /* EDORemoteException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDORemoteException.h; path = Service/Sources/EDORemoteException.h; sourceTree = "<group>"; };
7685673423A1C11F00EDBDB4 /* EDORemoteExceptionTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDORemoteExceptionTest.m; path = Service/Tests/UnitTests/EDORemoteExceptionTest.m; sourceTree = "<group>"; };
76EAF4D1262F588C0025F32C /* CodableVariable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CodableVariable.swift; path = Service/Sources/CodableVariable.swift; sourceTree = "<group>"; };
76EAF505262F58C20025F32C /* CodableVariableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CodableVariableTests.swift; path = Service/Tests/UnitTests/CodableVariableTests.swift; sourceTree = "<group>"; };
C52D85772220ADBB00E86E60 /* EDODeviceDetector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = EDODeviceDetector.h; path = Device/Sources/EDODeviceDetector.h; sourceTree = "<group>"; };
C52D85782220ADBC00E86E60 /* EDODeviceDetector.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = EDODeviceDetector.m; path = Device/Sources/EDODeviceDetector.m; sourceTree = "<group>"; };
C52D85792220ADBC00E86E60 /* EDOUSBMuxUtil.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = EDOUSBMuxUtil.m; path = Device/Sources/EDOUSBMuxUtil.m; sourceTree = "<group>"; };
C52D857A2220ADBD00E86E60 /* EDODeviceChannel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = EDODeviceChannel.m; path = Device/Sources/EDODeviceChannel.m; sourceTree = "<group>"; };
C52D857B2220ADBD00E86E60 /* EDODeviceChannel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = EDODeviceChannel.h; path = Device/Sources/EDODeviceChannel.h; sourceTree = "<group>"; };
C52D857C2220ADBE00E86E60 /* EDODeviceConnector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = EDODeviceConnector.h; path = Device/Sources/EDODeviceConnector.h; sourceTree = "<group>"; };
C52D857D2220ADBE00E86E60 /* EDODeviceConnector.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = EDODeviceConnector.m; path = Device/Sources/EDODeviceConnector.m; sourceTree = "<group>"; };
C52D857E2220ADBF00E86E60 /* EDOUSBMuxUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = EDOUSBMuxUtil.h; path = Device/Sources/EDOUSBMuxUtil.h; sourceTree = "<group>"; };
C52D85942220C44300E86E60 /* libDeviceLib.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libDeviceLib.a; sourceTree = BUILT_PRODUCTS_DIR; };
C535B59721D3077100BAE558 /* EDOHostNamingService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOHostNamingService.h; path = Service/Sources/EDOHostNamingService.h; sourceTree = "<group>"; };
C535B59821D3077100BAE558 /* EDOHostNamingService+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "EDOHostNamingService+Private.h"; path = "Service/Sources/EDOHostNamingService+Private.h"; sourceTree = "<group>"; };
C535B59921D3077200BAE558 /* EDOHostNamingService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOHostNamingService.m; path = Service/Sources/EDOHostNamingService.m; sourceTree = "<group>"; };
C535B59C21D307FF00BAE558 /* EDOHostNamingServiceTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOHostNamingServiceTest.m; path = Service/Tests/UnitTests/EDOHostNamingServiceTest.m; sourceTree = "<group>"; };
C55B85D422419CB000B568FA /* EDODeviceConnectorTest.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = EDODeviceConnectorTest.m; path = Device/Tests/EDODeviceConnectorTest.m; sourceTree = "<group>"; };
C55B85F62241AEAC00B568FA /* DeviceUnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DeviceUnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
C55F8B412183AC2000E8E75A /* EDOTestValueType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOTestValueType.h; path = Service/Tests/TestsBundle/EDOTestValueType.h; sourceTree = "<group>"; };
C55F8B422183AC2100E8E75A /* EDOTestNonNSCodingType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOTestNonNSCodingType.h; path = Service/Tests/TestsBundle/EDOTestNonNSCodingType.h; sourceTree = "<group>"; };
C55F8B432183AC2100E8E75A /* EDOTestValueType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOTestValueType.m; path = Service/Tests/TestsBundle/EDOTestValueType.m; sourceTree = "<group>"; };
C55F8B442183AC2200E8E75A /* EDOTestNonNSCodingType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOTestNonNSCodingType.m; path = Service/Tests/TestsBundle/EDOTestNonNSCodingType.m; sourceTree = "<group>"; };
C5791D8021AF79FC003EBC59 /* EDOHostPortTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOHostPortTest.m; sourceTree = "<group>"; };
C5791D8221AF7A66003EBC59 /* EDOHostPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOHostPort.h; sourceTree = "<group>"; };
C5791D8321AF7A67003EBC59 /* EDOHostPort.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOHostPort.m; sourceTree = "<group>"; };
C5791DA921B61081003EBC59 /* EDOChannelPoolTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOChannelPoolTest.m; sourceTree = "<group>"; };
C5791DAB21B61099003EBC59 /* EDOChannelPool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOChannelPool.m; sourceTree = "<group>"; };
C5791DAC21B61099003EBC59 /* EDOChannelPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOChannelPool.h; sourceTree = "<group>"; };
C5A2EFD32134D43100421D72 /* NSProxy+EDOParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSProxy+EDOParameter.h"; path = "Service/Sources/NSProxy+EDOParameter.h"; sourceTree = "<group>"; };
C5A2EFD42134D43100421D72 /* EDOObjectAliveMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOObjectAliveMessage.m; path = Service/Sources/EDOObjectAliveMessage.m; sourceTree = "<group>"; };
C5A2EFD52134D43100421D72 /* EDOMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOMessage.m; path = Service/Sources/EDOMessage.m; sourceTree = "<group>"; };
C5A2EFD62134D43100421D72 /* EDOHostService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOHostService.m; path = Service/Sources/EDOHostService.m; sourceTree = "<group>"; };
C5A2EFD72134D43100421D72 /* EDOServicePort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOServicePort.h; path = Service/Sources/EDOServicePort.h; sourceTree = "<group>"; };
C5A2EFD82134D43100421D72 /* EDOExecutor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOExecutor.m; path = Service/Sources/EDOExecutor.m; sourceTree = "<group>"; };
C5A2EFD92134D43100421D72 /* EDORemoteVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDORemoteVariable.h; path = Service/Sources/EDORemoteVariable.h; sourceTree = "<group>"; };
C5A2EFDA2134D43100421D72 /* EDOHostService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOHostService.h; path = Service/Sources/EDOHostService.h; sourceTree = "<group>"; };
C5A2EFDB2134D43100421D72 /* EDOProtocolObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOProtocolObject.m; path = Service/Sources/EDOProtocolObject.m; sourceTree = "<group>"; };
C5A2EFDC2134D43100421D72 /* EDOObject+EDOParameter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "EDOObject+EDOParameter.m"; path = "Service/Sources/EDOObject+EDOParameter.m"; sourceTree = "<group>"; };
C5A2EFDD2134D43100421D72 /* EDOObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOObject.h; path = Service/Sources/EDOObject.h; sourceTree = "<group>"; };
C5A2EFDE2134D43100421D72 /* EDOClassMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOClassMessage.m; path = Service/Sources/EDOClassMessage.m; sourceTree = "<group>"; };
C5A2EFDF2134D43100421D72 /* NSObject+EDOParameter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSObject+EDOParameter.m"; path = "Service/Sources/NSObject+EDOParameter.m"; sourceTree = "<group>"; };
C5A2EFE12134D43100421D72 /* EDOHostService+Handlers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "EDOHostService+Handlers.h"; path = "Service/Sources/EDOHostService+Handlers.h"; sourceTree = "<group>"; };
C5A2EFE22134D43100421D72 /* EDOParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOParameter.h; path = Service/Sources/EDOParameter.h; sourceTree = "<group>"; };
C5A2EFE42134D43200421D72 /* EDOObjectAliveMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOObjectAliveMessage.h; path = Service/Sources/EDOObjectAliveMessage.h; sourceTree = "<group>"; };
C5A2EFE52134D43200421D72 /* EDOValueType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOValueType.m; path = Service/Sources/EDOValueType.m; sourceTree = "<group>"; };
C5A2EFE62134D43200421D72 /* NSObject+EDOParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSObject+EDOParameter.h"; path = "Service/Sources/NSObject+EDOParameter.h"; sourceTree = "<group>"; };
C5A2EFE72134D43200421D72 /* EDOServicePort.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOServicePort.m; path = Service/Sources/EDOServicePort.m; sourceTree = "<group>"; };
C5A2EFE82134D43200421D72 /* EDOHostService+Handlers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "EDOHostService+Handlers.m"; path = "Service/Sources/EDOHostService+Handlers.m"; sourceTree = "<group>"; };
C5A2EFE92134D43200421D72 /* EDOObject+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "EDOObject+Private.h"; path = "Service/Sources/EDOObject+Private.h"; sourceTree = "<group>"; };
C5A2EFEA2134D43200421D72 /* EDORemoteVariable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDORemoteVariable.m; path = Service/Sources/EDORemoteVariable.m; sourceTree = "<group>"; };
C5A2EFEB2134D43200421D72 /* EDOMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOMessage.h; path = Service/Sources/EDOMessage.h; sourceTree = "<group>"; };
C5A2EFEC2134D43200421D72 /* EDOObjectReleaseMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOObjectReleaseMessage.m; path = Service/Sources/EDOObjectReleaseMessage.m; sourceTree = "<group>"; };
C5A2EFED2134D43200421D72 /* NSObject+EDOValue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSObject+EDOValue.m"; path = "Service/Sources/NSObject+EDOValue.m"; sourceTree = "<group>"; };
C5A2EFEE2134D43200421D72 /* EDOObjectMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOObjectMessage.m; path = Service/Sources/EDOObjectMessage.m; sourceTree = "<group>"; };
C5A2EFEF2134D43200421D72 /* EDOValueObject+EDOParameter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "EDOValueObject+EDOParameter.m"; path = "Service/Sources/EDOValueObject+EDOParameter.m"; sourceTree = "<group>"; };
C5A2EFF02134D43200421D72 /* EDOInvocationMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOInvocationMessage.m; path = Service/Sources/EDOInvocationMessage.m; sourceTree = "<group>"; };
C5A2EFF12134D43300421D72 /* EDOObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOObject.m; path = Service/Sources/EDOObject.m; sourceTree = "<group>"; };
C5A2EFF22134D43300421D72 /* EDOClientService+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "EDOClientService+Private.h"; path = "Service/Sources/EDOClientService+Private.h"; sourceTree = "<group>"; };
C5A2EFF32134D43300421D72 /* EDOInvocationMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOInvocationMessage.h; path = Service/Sources/EDOInvocationMessage.h; sourceTree = "<group>"; };
C5A2EFF42134D43300421D72 /* EDOMethodSignatureMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOMethodSignatureMessage.h; path = Service/Sources/EDOMethodSignatureMessage.h; sourceTree = "<group>"; };
C5A2EFF52134D43300421D72 /* EDOClientService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOClientService.h; path = Service/Sources/EDOClientService.h; sourceTree = "<group>"; };
C5A2EFF62134D43300421D72 /* NSObject+EDOValueObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSObject+EDOValueObject.m"; path = "Service/Sources/NSObject+EDOValueObject.m"; sourceTree = "<group>"; };
C5A2EFF72134D43300421D72 /* EDOValueObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOValueObject.m; path = Service/Sources/EDOValueObject.m; sourceTree = "<group>"; };
C5A2EFF82134D43300421D72 /* EDOExecutor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOExecutor.h; path = Service/Sources/EDOExecutor.h; sourceTree = "<group>"; };
C5A2EFF92134D43300421D72 /* EDOHostService+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "EDOHostService+Private.h"; path = "Service/Sources/EDOHostService+Private.h"; sourceTree = "<group>"; };
C5A2EFFA2134D43300421D72 /* EDOObject+Invocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "EDOObject+Invocation.m"; path = "Service/Sources/EDOObject+Invocation.m"; sourceTree = "<group>"; };
C5A2EFFB2134D43300421D72 /* EDOMethodSignatureMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOMethodSignatureMessage.m; path = Service/Sources/EDOMethodSignatureMessage.m; sourceTree = "<group>"; };
C5A2EFFC2134D43400421D72 /* EDOServiceRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOServiceRequest.h; path = Service/Sources/EDOServiceRequest.h; sourceTree = "<group>"; };
C5A2EFFD2134D43400421D72 /* EDOServiceRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOServiceRequest.m; path = Service/Sources/EDOServiceRequest.m; sourceTree = "<group>"; };
C5A2EFFE2134D43400421D72 /* EDOProtocolObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOProtocolObject.h; path = Service/Sources/EDOProtocolObject.h; sourceTree = "<group>"; };
C5A2EFFF2134D43400421D72 /* EDOClassMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOClassMessage.h; path = Service/Sources/EDOClassMessage.h; sourceTree = "<group>"; };
C5A2F0002134D43400421D72 /* EDOClientService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOClientService.m; path = Service/Sources/EDOClientService.m; sourceTree = "<group>"; };
C5A2F0012134D43400421D72 /* NSProxy+EDOParameter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSProxy+EDOParameter.m"; path = "Service/Sources/NSProxy+EDOParameter.m"; sourceTree = "<group>"; };
C5A2F0022134D43400421D72 /* EDOValueObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOValueObject.h; path = Service/Sources/EDOValueObject.h; sourceTree = "<group>"; };
C5A2F0032134D43400421D72 /* EDOObjectMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOObjectMessage.h; path = Service/Sources/EDOObjectMessage.h; sourceTree = "<group>"; };
C5A2F0042134D43400421D72 /* EDOParameter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOParameter.m; path = Service/Sources/EDOParameter.m; sourceTree = "<group>"; };
C5A2F0052134D43400421D72 /* NSObject+EDOValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSObject+EDOValue.h"; path = "Service/Sources/NSObject+EDOValue.h"; sourceTree = "<group>"; };
C5A2F0062134D43500421D72 /* EDOObjectReleaseMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOObjectReleaseMessage.h; path = Service/Sources/EDOObjectReleaseMessage.h; sourceTree = "<group>"; };
C5A2F0072134D43500421D72 /* NSObject+EDOValueObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSObject+EDOValueObject.h"; path = "Service/Sources/NSObject+EDOValueObject.h"; sourceTree = "<group>"; };
C5A2F02F2134D4CB00421D72 /* EDOMessageTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOMessageTest.m; path = Service/Tests/UnitTests/EDOMessageTest.m; sourceTree = "<group>"; };
C5A2F0302134D4CB00421D72 /* EDOServiceTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOServiceTest.m; path = Service/Tests/UnitTests/EDOServiceTest.m; sourceTree = "<group>"; };
C5A2F0312134D4CB00421D72 /* EDOExecutorTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOExecutorTest.m; path = Service/Tests/UnitTests/EDOExecutorTest.m; sourceTree = "<group>"; };
C5A2F0362134D50500421D72 /* EDOTestProtocolInTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOTestProtocolInTest.h; path = Service/Tests/TestsBundle/EDOTestProtocolInTest.h; sourceTree = "<group>"; };
C5A2F0372134D50600421D72 /* EDOTestProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOTestProtocol.h; path = Service/Tests/TestsBundle/EDOTestProtocol.h; sourceTree = "<group>"; };
C5A2F0382134D50600421D72 /* EDOTestDummy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOTestDummy.m; path = Service/Tests/TestsBundle/EDOTestDummy.m; sourceTree = "<group>"; };
C5A2F0392134D50600421D72 /* EDOTestProtocolInApp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOTestProtocolInApp.h; path = Service/Tests/TestsBundle/EDOTestProtocolInApp.h; sourceTree = "<group>"; };
C5A2F03A2134D50600421D72 /* EDOTestClassDummy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOTestClassDummy.h; path = Service/Tests/TestsBundle/EDOTestClassDummy.h; sourceTree = "<group>"; };
C5A2F03B2134D50600421D72 /* EDOTestClassDummy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOTestClassDummy.m; path = Service/Tests/TestsBundle/EDOTestClassDummy.m; sourceTree = "<group>"; };
C5A2F03C2134D50600421D72 /* EDOTestBridgingHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOTestBridgingHeader.h; path = Service/Tests/TestsBundle/EDOTestBridgingHeader.h; sourceTree = "<group>"; };
C5A2F03D2134D50600421D72 /* EDOTestDummy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOTestDummy.h; path = Service/Tests/TestsBundle/EDOTestDummy.h; sourceTree = "<group>"; };
C5A2F03E2134D50600421D72 /* EDOTestProtocol.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOTestProtocol.m; path = Service/Tests/TestsBundle/EDOTestProtocol.m; sourceTree = "<group>"; };
C5A2F03F2134D50600421D72 /* EDOTestSwiftClass.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = EDOTestSwiftClass.swift; path = Service/Tests/TestsBundle/EDOTestSwiftClass.swift; sourceTree = "<group>"; };
C5A2F0402134D50600421D72 /* EDOTestSwiftProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = EDOTestSwiftProtocol.swift; path = Service/Tests/TestsBundle/EDOTestSwiftProtocol.swift; sourceTree = "<group>"; };
C5A2F0462134D52500421D72 /* EDOServicePerfTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOServicePerfTest.m; path = Service/Tests/PerfTests/EDOServicePerfTest.m; sourceTree = "<group>"; };
C5A2F0482134D54200421D72 /* EDOUITestBridgingHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOUITestBridgingHeader.h; path = Service/Tests/FunctionalTests/EDOUITestBridgingHeader.h; sourceTree = "<group>"; };
C5A2F0492134D54200421D72 /* EDOServiceUITest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOServiceUITest.m; path = Service/Tests/FunctionalTests/EDOServiceUITest.m; sourceTree = "<group>"; };
C5A2F04A2134D54200421D72 /* EDOSwiftUITest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = EDOSwiftUITest.swift; path = Service/Tests/FunctionalTests/EDOSwiftUITest.swift; sourceTree = "<group>"; };
C5A2F04B2134D54200421D72 /* EDOTestDummyInTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOTestDummyInTest.m; path = Service/Tests/FunctionalTests/EDOTestDummyInTest.m; sourceTree = "<group>"; };
C5A2F04C2134D54200421D72 /* EDOTestClassDummyStub.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOTestClassDummyStub.m; path = Service/Tests/FunctionalTests/EDOTestClassDummyStub.m; sourceTree = "<group>"; };
C5A2F04D2134D54200421D72 /* EDOTestDummyInTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOTestDummyInTest.h; path = Service/Tests/FunctionalTests/EDOTestDummyInTest.h; sourceTree = "<group>"; };
C5A2F0542134D5BD00421D72 /* ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ViewController.m; path = Service/Tests/TestsHost/Sources/ViewController.m; sourceTree = "<group>"; };
C5A2F0552134D5BD00421D72 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Service/Tests/TestsHost/Sources/AppDelegate.m; sourceTree = "<group>"; };
C5A2F0562134D5BD00421D72 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Service/Tests/TestsHost/Sources/main.m; sourceTree = "<group>"; };
C5A2F0572134D5BD00421D72 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Service/Tests/TestsHost/Sources/AppDelegate.h; sourceTree = "<group>"; };
C5A2F0582134D5BE00421D72 /* Dummy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Dummy.swift; path = Service/Tests/TestsHost/Sources/Dummy.swift; sourceTree = "<group>"; };
C5A2F0592134D5BE00421D72 /* ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ViewController.h; path = Service/Tests/TestsHost/Sources/ViewController.h; sourceTree = "<group>"; };
C5A2F05E2134D5D900421D72 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Service/Tests/TestsHost/Resources/Info.plist; sourceTree = "<group>"; };
C5A2F05F2134D5D900421D72 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = Service/Tests/TestsHost/Resources/LaunchScreen.storyboard; sourceTree = "<group>"; };
C5A2F0602134D5D900421D72 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Service/Tests/TestsHost/Resources/Main.storyboard; sourceTree = "<group>"; };
C5D03FDD21D77144003DC06A /* EDOChannelUtilTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOChannelUtilTest.m; sourceTree = "<group>"; };
C5D03FDF21D77160003DC06A /* EDOChannelUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOChannelUtil.h; sourceTree = "<group>"; };
C5D03FE021D77161003DC06A /* EDOChannelUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOChannelUtil.m; sourceTree = "<group>"; };
C5DA825222E06EF700E7535F /* EDOChannelErrors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOChannelErrors.h; sourceTree = "<group>"; };
C5DA825322E06EF800E7535F /* EDOChannelErrors.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOChannelErrors.m; sourceTree = "<group>"; };
C8298A0321599CD2003E3C2C /* EDOServiceUIBaseTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOServiceUIBaseTest.h; path = Service/Tests/FunctionalTests/EDOServiceUIBaseTest.h; sourceTree = "<group>"; };
C8298A0421599CD2003E3C2C /* EDOServiceUIMemoryTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOServiceUIMemoryTest.m; path = Service/Tests/FunctionalTests/EDOServiceUIMemoryTest.m; sourceTree = "<group>"; };
C8298A0521599CD2003E3C2C /* EDOServiceUIBaseTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOServiceUIBaseTest.m; path = Service/Tests/FunctionalTests/EDOServiceUIBaseTest.m; sourceTree = "<group>"; };
C8298A0621599CD3003E3C2C /* EDOServiceUIBlockTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOServiceUIBlockTest.m; path = Service/Tests/FunctionalTests/EDOServiceUIBlockTest.m; sourceTree = "<group>"; };
C833238A215C57B30071DB0C /* NSKeyedUnarchiver+EDOAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSKeyedUnarchiver+EDOAdditions.m"; path = "Service/Sources/NSKeyedUnarchiver+EDOAdditions.m"; sourceTree = "<group>"; };
C833238B215C57B30071DB0C /* NSKeyedUnarchiver+EDOAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSKeyedUnarchiver+EDOAdditions.h"; path = "Service/Sources/NSKeyedUnarchiver+EDOAdditions.h"; sourceTree = "<group>"; };
C833238C215C57B40071DB0C /* NSKeyedArchiver+EDOAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSKeyedArchiver+EDOAdditions.m"; path = "Service/Sources/NSKeyedArchiver+EDOAdditions.m"; sourceTree = "<group>"; };
C833238D215C57B40071DB0C /* NSKeyedArchiver+EDOAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSKeyedArchiver+EDOAdditions.h"; path = "Service/Sources/NSKeyedArchiver+EDOAdditions.h"; sourceTree = "<group>"; };
C845026520DD9D2E00D7350F /* libChannelLib.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libChannelLib.a; sourceTree = BUILT_PRODUCTS_DIR; };
C845027720DD9D5D00D7350F /* libeDistantObject.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libeDistantObject.a; sourceTree = BUILT_PRODUCTS_DIR; };
C845027B20DD9D8800D7350F /* EDOSocketChannelTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOSocketChannelTest.m; sourceTree = "<group>"; };
C845027E20DD9D8800D7350F /* EDOSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOSocket.m; sourceTree = "<group>"; };
C845027F20DD9D8800D7350F /* EDOListenSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOListenSocket.h; sourceTree = "<group>"; };
C845028020DD9D8800D7350F /* EDOSocketChannel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOSocketChannel.h; sourceTree = "<group>"; };
C845028120DD9D8800D7350F /* EDOSocketPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOSocketPort.h; sourceTree = "<group>"; };
C845028220DD9D8800D7350F /* EDOSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOSocket.h; sourceTree = "<group>"; };
C845028420DD9D8800D7350F /* EDOChannel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOChannel.h; sourceTree = "<group>"; };
C845028520DD9D8800D7350F /* EDOListenSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOListenSocket.m; sourceTree = "<group>"; };
C845028620DD9D8800D7350F /* EDOSocketChannel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOSocketChannel.m; sourceTree = "<group>"; };
C845028720DD9D8800D7350F /* EDOSocketPort.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOSocketPort.m; sourceTree = "<group>"; };
C845033420DDA11D00D7350F /* ChannelTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ChannelTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
C845034520DDA1E800D7350F /* TestsHost.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestsHost.app; sourceTree = BUILT_PRODUCTS_DIR; };
C845037820DDA40A00D7350F /* ServiceUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ServiceUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
C84503A220DDAEF500D7350F /* ServiceTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ServiceTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
C84503B620DDB03E00D7350F /* ServicePerfTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ServicePerfTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
C84503C620DDB07A00D7350F /* libTestsBundle.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libTestsBundle.a; sourceTree = BUILT_PRODUCTS_DIR; };
C849824021BF212D008F0D6F /* EDOClientServiceStatsCollector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOClientServiceStatsCollector.m; path = Service/Sources/EDOClientServiceStatsCollector.m; sourceTree = "<group>"; };
C849824121BF212E008F0D6F /* EDOClientServiceStatsCollector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOClientServiceStatsCollector.h; path = Service/Sources/EDOClientServiceStatsCollector.h; sourceTree = "<group>"; };
C862C6DF2253D70C00EABE99 /* EDOServiceException.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOServiceException.m; path = Service/Sources/EDOServiceException.m; sourceTree = "<group>"; };
C862C6E02253D70C00EABE99 /* EDOServiceError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOServiceError.h; path = Service/Sources/EDOServiceError.h; sourceTree = "<group>"; };
C862C6E12253D70C00EABE99 /* EDOServiceException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOServiceException.h; path = Service/Sources/EDOServiceException.h; sourceTree = "<group>"; };
C862C6E22253D70D00EABE99 /* EDOServiceError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOServiceError.m; path = Service/Sources/EDOServiceError.m; sourceTree = "<group>"; };
C87E726F22DD323A0081EFBF /* EDOBlockingQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOBlockingQueue.m; sourceTree = "<group>"; };
C87E727022DD323B0081EFBF /* EDOBlockingQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOBlockingQueue.h; sourceTree = "<group>"; };
C87E727222DD32450081EFBF /* EDOBlockingQueueTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOBlockingQueueTest.m; sourceTree = "<group>"; };
C88B8A5E21ADD38500DDE607 /* EDONumericMeasure.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EDONumericMeasure.h; sourceTree = "<group>"; };
C88B8A5F21ADD38500DDE607 /* EDONumericMeasure.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EDONumericMeasure.m; sourceTree = "<group>"; };
C88B8A6121ADD38500DDE607 /* EDONumericMeasureTest.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EDONumericMeasureTest.m; sourceTree = "<group>"; };
C88B8A7B21ADD3BE00DDE607 /* libMeasureLib.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libMeasureLib.a; sourceTree = BUILT_PRODUCTS_DIR; };
C88B8A8921ADD3FD00DDE607 /* MeasureTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MeasureTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
C88D3E4C22F4F44A00BECABF /* EDOChannelForwarderTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOChannelForwarderTest.m; sourceTree = "<group>"; };
C88D3E4D22F4F44A00BECABF /* EDOChannelMultiplexerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOChannelMultiplexerTest.m; sourceTree = "<group>"; };
C88D3E5022F4F46400BECABF /* EDOChannelForwarder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOChannelForwarder.m; sourceTree = "<group>"; };
C88D3E5122F4F46500BECABF /* EDOChannelForwarder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOChannelForwarder.h; sourceTree = "<group>"; };
C88D3E5222F4F46500BECABF /* EDOChannelMultiplexer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EDOChannelMultiplexer.h; sourceTree = "<group>"; };
C88D3E5322F4F46600BECABF /* EDOChannelMultiplexer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOChannelMultiplexer.m; sourceTree = "<group>"; };
C896A5D9217A601B00CA5610 /* EDOExecutorMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOExecutorMessage.m; path = Service/Sources/EDOExecutorMessage.m; sourceTree = "<group>"; };
C896A5DA217A601B00CA5610 /* EDOExecutorMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOExecutorMessage.h; path = Service/Sources/EDOExecutorMessage.h; sourceTree = "<group>"; };
C8A5E00321390E3B00D28052 /* EDOBlockObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOBlockObject.m; path = Service/Sources/EDOBlockObject.m; sourceTree = "<group>"; };
C8A5E00421390E3B00D28052 /* EDOBlockObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOBlockObject.h; path = Service/Sources/EDOBlockObject.h; sourceTree = "<group>"; };
C8A5E006213F896000D28052 /* NSBlock+EDOInvocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSBlock+EDOInvocation.m"; path = "Service/Sources/NSBlock+EDOInvocation.m"; sourceTree = "<group>"; };
C8A772D022D5215D00A75B22 /* EDOSocketPortTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EDOSocketPortTest.m; sourceTree = "<group>"; };
C8ED2AE221B7504E00118999 /* EDOTimingFunctions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOTimingFunctions.m; path = Service/Sources/EDOTimingFunctions.m; sourceTree = "<group>"; };
C8ED2AE321B7504F00118999 /* EDOTimingFunctions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOTimingFunctions.h; path = Service/Sources/EDOTimingFunctions.h; sourceTree = "<group>"; };
DC84AEFD22D572BD00D43E26 /* EDOWeakObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDOWeakObject.h; path = Service/Sources/EDOWeakObject.h; sourceTree = "<group>"; };
DC84AEFE22D572BD00D43E26 /* EDODeallocationTracker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDODeallocationTracker.m; path = Service/Sources/EDODeallocationTracker.m; sourceTree = "<group>"; };
DC84AEFF22D572BE00D43E26 /* EDOWeakObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOWeakObject.m; path = Service/Sources/EDOWeakObject.m; sourceTree = "<group>"; };
DC84AF0022D572BF00D43E26 /* EDODeallocationTracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EDODeallocationTracker.h; path = Service/Sources/EDODeallocationTracker.h; sourceTree = "<group>"; };
DC84AF0622D8064100D43E26 /* EDOWeakReferenceTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EDOWeakReferenceTest.m; path = Service/Tests/UnitTests/EDOWeakReferenceTest.m; sourceTree = "<group>"; };
DC9BF6C022DFC8AD00E135B8 /* NSObject+EDOWeakObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSObject+EDOWeakObject.h"; path = "Service/Sources/NSObject+EDOWeakObject.h"; sourceTree = "<group>"; };
DC9BF6C122DFC8AE00E135B8 /* NSObject+EDOWeakObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSObject+EDOWeakObject.m"; path = "Service/Sources/NSObject+EDOWeakObject.m"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
76140D99262795EE007CA5AC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C52D858F2220C44300E86E60 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C55B85F02241AEAC00B568FA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C55B85F82241AEE600B568FA /* libDeviceLib.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C845026220DD9D2E00D7350F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C52D859D2220C4F800E86E60 /* libDeviceLib.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C845027120DD9D5D00D7350F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C8943DF321C1A6E300347547 /* libMeasureLib.a in Frameworks */,
C845032F20DDA0B200D7350F /* libChannelLib.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C845033120DDA11D00D7350F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C845033920DDA11D00D7350F /* libChannelLib.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C845034220DDA1E800D7350F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C532ABFA2136142300162011 /* libTestsBundle.a in Frameworks */,
C845036220DDA33A00D7350F /* libeDistantObject.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C845037520DDA40A00D7350F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
76140DF326279721007CA5AC /* libSwiftUtil.a in Frameworks */,
C845038220DDA46400D7350F /* libeDistantObject.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C845039F20DDAEF500D7350F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
76140DF1262796F0007CA5AC /* libSwiftUtil.a in Frameworks */,
C84503A720DDAEF500D7350F /* libeDistantObject.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C84503B320DDB03E00D7350F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C532ABF32136054B00162011 /* libeDistantObject.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C84503C320DDB07A00D7350F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
76140DF226279719007CA5AC /* libSwiftUtil.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C88B8A7621ADD3BE00DDE607 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C88B8A8321ADD3FD00DDE607 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C88B8A8C21ADD43400DDE607 /* libMeasureLib.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
C52D85752220AD9D00E86E60 /* Device */ = {
isa = PBXGroup;
children = (
C55B85D322419C9900B568FA /* Tests */,
C52D85762220ADA800E86E60 /* Sources */,
);
name = Device;
sourceTree = "<group>";
};
C52D85762220ADA800E86E60 /* Sources */ = {
isa = PBXGroup;
children = (
C52D857B2220ADBD00E86E60 /* EDODeviceChannel.h */,
C52D857A2220ADBD00E86E60 /* EDODeviceChannel.m */,
C52D857C2220ADBE00E86E60 /* EDODeviceConnector.h */,
C52D857D2220ADBE00E86E60 /* EDODeviceConnector.m */,
C52D85772220ADBB00E86E60 /* EDODeviceDetector.h */,
C52D85782220ADBC00E86E60 /* EDODeviceDetector.m */,
C52D857E2220ADBF00E86E60 /* EDOUSBMuxUtil.h */,
C52D85792220ADBC00E86E60 /* EDOUSBMuxUtil.m */,
);
name = Sources;
sourceTree = "<group>";
};
C55B85D322419C9900B568FA /* Tests */ = {
isa = PBXGroup;
children = (
C55B85D422419CB000B568FA /* EDODeviceConnectorTest.m */,
);
name = Tests;
sourceTree = "<group>";
};
C55B85E422419D7C00B568FA /* Frameworks */ = {
isa = PBXGroup;
children = (
);
name = Frameworks;
sourceTree = "<group>";
};
C5A2EFD02134D3D500421D72 /* Service */ = {
isa = PBXGroup;
children = (
C5A2EFD22134D41E00421D72 /* Tests */,
C5A2EFD12134D40E00421D72 /* Sources */,
);
name = Service;
sourceTree = "<group>";
};
C5A2EFD12134D40E00421D72 /* Sources */ = {
isa = PBXGroup;
children = (
76EAF4D1262F588C0025F32C /* CodableVariable.swift */,
C8A5E00421390E3B00D28052 /* EDOBlockObject.h */,
C8A5E00321390E3B00D28052 /* EDOBlockObject.m */,
C5A2EFFF2134D43400421D72 /* EDOClassMessage.h */,
C5A2EFDE2134D43100421D72 /* EDOClassMessage.m */,
C5A2EFF52134D43300421D72 /* EDOClientService.h */,
C5A2F0002134D43400421D72 /* EDOClientService.m */,
C5A2EFF22134D43300421D72 /* EDOClientService+Private.h */,
C849824121BF212E008F0D6F /* EDOClientServiceStatsCollector.h */,
C849824021BF212D008F0D6F /* EDOClientServiceStatsCollector.m */,
DC84AF0022D572BF00D43E26 /* EDODeallocationTracker.h */,
DC84AEFE22D572BD00D43E26 /* EDODeallocationTracker.m */,
C5A2EFF82134D43300421D72 /* EDOExecutor.h */,
C5A2EFD82134D43100421D72 /* EDOExecutor.m */,
C896A5DA217A601B00CA5610 /* EDOExecutorMessage.h */,
C896A5D9217A601B00CA5610 /* EDOExecutorMessage.m */,
C535B59721D3077100BAE558 /* EDOHostNamingService.h */,
C535B59921D3077200BAE558 /* EDOHostNamingService.m */,
C535B59821D3077100BAE558 /* EDOHostNamingService+Private.h */,
C5A2EFDA2134D43100421D72 /* EDOHostService.h */,
C5A2EFD62134D43100421D72 /* EDOHostService.m */,
C5A2EFE12134D43100421D72 /* EDOHostService+Handlers.h */,
C5A2EFE82134D43200421D72 /* EDOHostService+Handlers.m */,
C5A2EFF92134D43300421D72 /* EDOHostService+Private.h */,
C5A2EFF32134D43300421D72 /* EDOInvocationMessage.h */,
C5A2EFF02134D43200421D72 /* EDOInvocationMessage.m */,
C5A2EFEB2134D43200421D72 /* EDOMessage.h */,
C5A2EFD52134D43100421D72 /* EDOMessage.m */,
C5A2EFF42134D43300421D72 /* EDOMethodSignatureMessage.h */,
C5A2EFFB2134D43300421D72 /* EDOMethodSignatureMessage.m */,
C5A2EFDD2134D43100421D72 /* EDOObject.h */,
C5A2EFF12134D43300421D72 /* EDOObject.m */,
C5A2EFDC2134D43100421D72 /* EDOObject+EDOParameter.m */,
C5A2EFFA2134D43300421D72 /* EDOObject+Invocation.m */,
C5A2EFE92134D43200421D72 /* EDOObject+Private.h */,
C5A2EFE42134D43200421D72 /* EDOObjectAliveMessage.h */,
C5A2EFD42134D43100421D72 /* EDOObjectAliveMessage.m */,
C5A2F0032134D43400421D72 /* EDOObjectMessage.h */,
C5A2EFEE2134D43200421D72 /* EDOObjectMessage.m */,
C5A2F0062134D43500421D72 /* EDOObjectReleaseMessage.h */,
C5A2EFEC2134D43200421D72 /* EDOObjectReleaseMessage.m */,
C5A2EFE22134D43100421D72 /* EDOParameter.h */,
C5A2F0042134D43400421D72 /* EDOParameter.m */,
C5A2EFFE2134D43400421D72 /* EDOProtocolObject.h */,
C5A2EFDB2134D43100421D72 /* EDOProtocolObject.m */,
7685673223A1C10100EDBDB4 /* EDORemoteException.h */,
7685673123A1C10100EDBDB4 /* EDORemoteException.m */,
C5A2EFD92134D43100421D72 /* EDORemoteVariable.h */,
C5A2EFEA2134D43200421D72 /* EDORemoteVariable.m */,
7669CFA0258BFA3100280980 /* EDORuntimeUtils.h */,
7669CFA1258BFA3100280980 /* EDORuntimeUtils.m */,
C862C6E02253D70C00EABE99 /* EDOServiceError.h */,
C862C6E22253D70D00EABE99 /* EDOServiceError.m */,
C862C6E12253D70C00EABE99 /* EDOServiceException.h */,
C862C6DF2253D70C00EABE99 /* EDOServiceException.m */,
C5A2EFD72134D43100421D72 /* EDOServicePort.h */,
C5A2EFE72134D43200421D72 /* EDOServicePort.m */,
C5A2EFFC2134D43400421D72 /* EDOServiceRequest.h */,
C5A2EFFD2134D43400421D72 /* EDOServiceRequest.m */,
C8ED2AE321B7504F00118999 /* EDOTimingFunctions.h */,
C8ED2AE221B7504E00118999 /* EDOTimingFunctions.m */,
C5A2F0022134D43400421D72 /* EDOValueObject.h */,
C5A2EFF72134D43300421D72 /* EDOValueObject.m */,
C5A2EFEF2134D43200421D72 /* EDOValueObject+EDOParameter.m */,
C5A2EFE52134D43200421D72 /* EDOValueType.m */,
DC84AEFD22D572BD00D43E26 /* EDOWeakObject.h */,
DC84AEFF22D572BE00D43E26 /* EDOWeakObject.m */,
C8A5E006213F896000D28052 /* NSBlock+EDOInvocation.m */,
C833238D215C57B40071DB0C /* NSKeyedArchiver+EDOAdditions.h */,
C833238C215C57B40071DB0C /* NSKeyedArchiver+EDOAdditions.m */,
C833238B215C57B30071DB0C /* NSKeyedUnarchiver+EDOAdditions.h */,
C833238A215C57B30071DB0C /* NSKeyedUnarchiver+EDOAdditions.m */,
7657C22024F9BEA70056F5A6 /* NSObject+EDOBlockedType.h */,
7657C22124F9BEA70056F5A6 /* NSObject+EDOBlockedType.m */,
C5A2EFE62134D43200421D72 /* NSObject+EDOParameter.h */,
C5A2EFDF2134D43100421D72 /* NSObject+EDOParameter.m */,
C5A2F0052134D43400421D72 /* NSObject+EDOValue.h */,
C5A2EFED2134D43200421D72 /* NSObject+EDOValue.m */,
C5A2F0072134D43500421D72 /* NSObject+EDOValueObject.h */,
C5A2EFF62134D43300421D72 /* NSObject+EDOValueObject.m */,
DC9BF6C022DFC8AD00E135B8 /* NSObject+EDOWeakObject.h */,
DC9BF6C122DFC8AE00E135B8 /* NSObject+EDOWeakObject.m */,
C5A2EFD32134D43100421D72 /* NSProxy+EDOParameter.h */,
C5A2F0012134D43400421D72 /* NSProxy+EDOParameter.m */,
);
name = Sources;
sourceTree = "<group>";
};
C5A2EFD22134D41E00421D72 /* Tests */ = {
isa = PBXGroup;
children = (
C5A2F02D2134D4B800421D72 /* UnitTests */,
C5A2F02C2134D4B000421D72 /* TestsHost */,
C5A2F02B2134D4A900421D72 /* TestsBundle */,
C5A2F02A2134D4A000421D72 /* PerfTests */,
C5A2F0282134D46B00421D72 /* FunctionalTests */,
);
name = Tests;
sourceTree = "<group>";
};
C5A2F0282134D46B00421D72 /* FunctionalTests */ = {
isa = PBXGroup;
children = (
C8298A0321599CD2003E3C2C /* EDOServiceUIBaseTest.h */,
C8298A0521599CD2003E3C2C /* EDOServiceUIBaseTest.m */,
C8298A0621599CD3003E3C2C /* EDOServiceUIBlockTest.m */,
C8298A0421599CD2003E3C2C /* EDOServiceUIMemoryTest.m */,
C5A2F0492134D54200421D72 /* EDOServiceUITest.m */,
C5A2F04A2134D54200421D72 /* EDOSwiftUITest.swift */,
C5A2F04C2134D54200421D72 /* EDOTestClassDummyStub.m */,
C5A2F04D2134D54200421D72 /* EDOTestDummyInTest.h */,
C5A2F04B2134D54200421D72 /* EDOTestDummyInTest.m */,
C5A2F0482134D54200421D72 /* EDOUITestBridgingHeader.h */,
);
name = FunctionalTests;
sourceTree = "<group>";
};
C5A2F02A2134D4A000421D72 /* PerfTests */ = {
isa = PBXGroup;
children = (
C5A2F0462134D52500421D72 /* EDOServicePerfTest.m */,
);
name = PerfTests;
sourceTree = "<group>";
};
C5A2F02B2134D4A900421D72 /* TestsBundle */ = {
isa = PBXGroup;
children = (
C55F8B422183AC2100E8E75A /* EDOTestNonNSCodingType.h */,
C55F8B442183AC2200E8E75A /* EDOTestNonNSCodingType.m */,
C55F8B412183AC2000E8E75A /* EDOTestValueType.h */,
C55F8B432183AC2100E8E75A /* EDOTestValueType.m */,
C5A2F03C2134D50600421D72 /* EDOTestBridgingHeader.h */,
C5A2F03A2134D50600421D72 /* EDOTestClassDummy.h */,
C5A2F03B2134D50600421D72 /* EDOTestClassDummy.m */,
C5A2F03D2134D50600421D72 /* EDOTestDummy.h */,
C5A2F0382134D50600421D72 /* EDOTestDummy.m */,
C5A2F0372134D50600421D72 /* EDOTestProtocol.h */,
C5A2F03E2134D50600421D72 /* EDOTestProtocol.m */,
C5A2F0392134D50600421D72 /* EDOTestProtocolInApp.h */,
C5A2F0362134D50500421D72 /* EDOTestProtocolInTest.h */,
C5A2F03F2134D50600421D72 /* EDOTestSwiftClass.swift */,
C5A2F0402134D50600421D72 /* EDOTestSwiftProtocol.swift */,
);
name = TestsBundle;
sourceTree = "<group>";
};
C5A2F02C2134D4B000421D72 /* TestsHost */ = {
isa = PBXGroup;
children = (
C5A2F0532134D59B00421D72 /* Sources */,
C5A2F0522134D58300421D72 /* Resources */,
);
name = TestsHost;
sourceTree = "<group>";
};
C5A2F02D2134D4B800421D72 /* UnitTests */ = {
isa = PBXGroup;
children = (
76EAF505262F58C20025F32C /* CodableVariableTests.swift */,
7674100D237E01FB00D43A15 /* EDOExecutorMessageTest.m */,
C5A2F0312134D4CB00421D72 /* EDOExecutorTest.m */,
C535B59C21D307FF00BAE558 /* EDOHostNamingServiceTest.m */,
C5A2F02F2134D4CB00421D72 /* EDOMessageTest.m */,
7685673423A1C11F00EDBDB4 /* EDORemoteExceptionTest.m */,
C5A2F0302134D4CB00421D72 /* EDOServiceTest.m */,
DC84AF0622D8064100D43E26 /* EDOWeakReferenceTest.m */,
);
name = UnitTests;
sourceTree = "<group>";
};
C5A2F0522134D58300421D72 /* Resources */ = {
isa = PBXGroup;
children = (
C5A2F05E2134D5D900421D72 /* Info.plist */,
C5A2F05F2134D5D900421D72 /* LaunchScreen.storyboard */,
C5A2F0602134D5D900421D72 /* Main.storyboard */,
);
name = Resources;
sourceTree = "<group>";
};
C5A2F0532134D59B00421D72 /* Sources */ = {
isa = PBXGroup;
children = (
C5A2F0572134D5BD00421D72 /* AppDelegate.h */,
C5A2F0552134D5BD00421D72 /* AppDelegate.m */,
C5A2F0582134D5BE00421D72 /* Dummy.swift */,
C5A2F0562134D5BD00421D72 /* main.m */,
C5A2F0592134D5BE00421D72 /* ViewController.h */,
C5A2F0542134D5BD00421D72 /* ViewController.m */,
);
name = Sources;
sourceTree = "<group>";
};
C845024C20DD9CB900D7350F = {
isa = PBXGroup;
children = (
C52D85752220AD9D00E86E60 /* Device */,
C88B8A5B21ADD38400DDE607 /* Measure */,
C5A2EFD02134D3D500421D72 /* Service */,
C845027820DD9D8800D7350F /* Channel */,
C845025620DD9CB900D7350F /* Products */,
C55B85E422419D7C00B568FA /* Frameworks */,
);
sourceTree = "<group>";
};
C845025620DD9CB900D7350F /* Products */ = {
isa = PBXGroup;
children = (
C845026520DD9D2E00D7350F /* libChannelLib.a */,
C845027720DD9D5D00D7350F /* libeDistantObject.a */,
C845033420DDA11D00D7350F /* ChannelTests.xctest */,
C845034520DDA1E800D7350F /* TestsHost.app */,
C845037820DDA40A00D7350F /* ServiceUITests.xctest */,
C84503A220DDAEF500D7350F /* ServiceTests.xctest */,
C84503B620DDB03E00D7350F /* ServicePerfTests.xctest */,
C84503C620DDB07A00D7350F /* libTestsBundle.a */,
C88B8A7B21ADD3BE00DDE607 /* libMeasureLib.a */,
C88B8A8921ADD3FD00DDE607 /* MeasureTests.xctest */,
C52D85942220C44300E86E60 /* libDeviceLib.a */,
C55B85F62241AEAC00B568FA /* DeviceUnitTests.xctest */,
76140D9C262795EE007CA5AC /* libSwiftUtil.a */,
);
name = Products;
sourceTree = "<group>";
};
C845027820DD9D8800D7350F /* Channel */ = {
isa = PBXGroup;
children = (
C845027920DD9D8800D7350F /* Tests */,
C845027C20DD9D8800D7350F /* Sources */,
);
path = Channel;
sourceTree = "<group>";
};
C845027920DD9D8800D7350F /* Tests */ = {
isa = PBXGroup;
children = (
C87E727222DD32450081EFBF /* EDOBlockingQueueTest.m */,
C88D3E4C22F4F44A00BECABF /* EDOChannelForwarderTest.m */,
C88D3E4D22F4F44A00BECABF /* EDOChannelMultiplexerTest.m */,
C5791DA921B61081003EBC59 /* EDOChannelPoolTest.m */,
C5D03FDD21D77144003DC06A /* EDOChannelUtilTest.m */,
C5791D8021AF79FC003EBC59 /* EDOHostPortTest.m */,
C845027B20DD9D8800D7350F /* EDOSocketChannelTest.m */,
C8A772D022D5215D00A75B22 /* EDOSocketPortTest.m */,
);
path = Tests;
sourceTree = "<group>";
};
C845027C20DD9D8800D7350F /* Sources */ = {
isa = PBXGroup;
children = (
C87E727022DD323B0081EFBF /* EDOBlockingQueue.h */,
C87E726F22DD323A0081EFBF /* EDOBlockingQueue.m */,
C845028420DD9D8800D7350F /* EDOChannel.h */,
C5DA825222E06EF700E7535F /* EDOChannelErrors.h */,
C5DA825322E06EF800E7535F /* EDOChannelErrors.m */,
C88D3E5122F4F46500BECABF /* EDOChannelForwarder.h */,
C88D3E5022F4F46400BECABF /* EDOChannelForwarder.m */,
C88D3E5222F4F46500BECABF /* EDOChannelMultiplexer.h */,
C88D3E5322F4F46600BECABF /* EDOChannelMultiplexer.m */,
C5791DAC21B61099003EBC59 /* EDOChannelPool.h */,
C5791DAB21B61099003EBC59 /* EDOChannelPool.m */,
C5D03FDF21D77160003DC06A /* EDOChannelUtil.h */,
C5D03FE021D77161003DC06A /* EDOChannelUtil.m */,
C5791D8221AF7A66003EBC59 /* EDOHostPort.h */,
C5791D8321AF7A67003EBC59 /* EDOHostPort.m */,
C845027F20DD9D8800D7350F /* EDOListenSocket.h */,
C845028520DD9D8800D7350F /* EDOListenSocket.m */,
C845028220DD9D8800D7350F /* EDOSocket.h */,
C845027E20DD9D8800D7350F /* EDOSocket.m */,
C845028020DD9D8800D7350F /* EDOSocketChannel.h */,
C845028620DD9D8800D7350F /* EDOSocketChannel.m */,
C845028120DD9D8800D7350F /* EDOSocketPort.h */,
C845028720DD9D8800D7350F /* EDOSocketPort.m */,
);
path = Sources;
sourceTree = "<group>";
};
C88B8A5B21ADD38400DDE607 /* Measure */ = {
isa = PBXGroup;
children = (
C88B8A5D21ADD38500DDE607 /* Sources */,
C88B8A6021ADD38500DDE607 /* Tests */,
);
path = Measure;
sourceTree = "<group>";
};
C88B8A5D21ADD38500DDE607 /* Sources */ = {
isa = PBXGroup;
children = (
C88B8A5E21ADD38500DDE607 /* EDONumericMeasure.h */,
C88B8A5F21ADD38500DDE607 /* EDONumericMeasure.m */,
);
path = Sources;
sourceTree = "<group>";
};
C88B8A6021ADD38500DDE607 /* Tests */ = {
isa = PBXGroup;
children = (
C88B8A6121ADD38500DDE607 /* EDONumericMeasureTest.m */,
);
path = Tests;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
76140D9B262795EE007CA5AC /* SwiftUtil */ = {
isa = PBXNativeTarget;
buildConfigurationList = 76140DA2262795EE007CA5AC /* Build configuration list for PBXNativeTarget "SwiftUtil" */;
buildPhases = (
76140D98262795EE007CA5AC /* Sources */,
76140D99262795EE007CA5AC /* Frameworks */,
76140D9A262795EE007CA5AC /* CopyFiles */,
);
buildRules = (
);
dependencies = (
);
name = SwiftUtil;
productName = SwiftUtil;
productReference = 76140D9C262795EE007CA5AC /* libSwiftUtil.a */;
productType = "com.apple.product-type.library.static";
};
C52D858C2220C44300E86E60 /* DeviceLib */ = {
isa = PBXNativeTarget;
buildConfigurationList = C52D85912220C44300E86E60 /* Build configuration list for PBXNativeTarget "DeviceLib" */;
buildPhases = (
C52D858D2220C44300E86E60 /* Sources */,
C52D858F2220C44300E86E60 /* Frameworks */,
C52D85902220C44300E86E60 /* CopyFiles */,
);
buildRules = (
);
dependencies = (
);
name = DeviceLib;
productName = Channel;
productReference = C52D85942220C44300E86E60 /* libDeviceLib.a */;
productType = "com.apple.product-type.library.static";
};
C55B85E82241AEAC00B568FA /* DeviceUnitTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = C55B85F32241AEAC00B568FA /* Build configuration list for PBXNativeTarget "DeviceUnitTests" */;
buildPhases = (
C55B85EB2241AEAC00B568FA /* Sources */,
C55B85F02241AEAC00B568FA /* Frameworks */,
C55B85F22241AEAC00B568FA /* Resources */,
);
buildRules = (
);
dependencies = (
C55B85FA2241AEEF00B568FA /* PBXTargetDependency */,
);
name = DeviceUnitTests;
productName = ChannelTests;
productReference = C55B85F62241AEAC00B568FA /* DeviceUnitTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
C845026420DD9D2E00D7350F /* ChannelLib */ = {
isa = PBXNativeTarget;
buildConfigurationList = C845026B20DD9D2E00D7350F /* Build configuration list for PBXNativeTarget "ChannelLib" */;
buildPhases = (
C845026120DD9D2E00D7350F /* Sources */,
C845026220DD9D2E00D7350F /* Frameworks */,
C845026320DD9D2E00D7350F /* CopyFiles */,
);
buildRules = (
);
dependencies = (
);
name = ChannelLib;
productName = Channel;
productReference = C845026520DD9D2E00D7350F /* libChannelLib.a */;
productType = "com.apple.product-type.library.static";
};
C845026E20DD9D5D00D7350F /* eDistantObject */ = {
isa = PBXNativeTarget;
buildConfigurationList = C845027420DD9D5D00D7350F /* Build configuration list for PBXNativeTarget "eDistantObject" */;
buildPhases = (
C845026F20DD9D5D00D7350F /* Sources */,
C845027120DD9D5D00D7350F /* Frameworks */,
C845027220DD9D5D00D7350F /* CopyFiles */,
);
buildRules = (
);
dependencies = (
);
name = eDistantObject;
productName = Channel;
productReference = C845027720DD9D5D00D7350F /* libeDistantObject.a */;
productType = "com.apple.product-type.library.static";
};
C845033320DDA11D00D7350F /* ChannelTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = C845033C20DDA11D00D7350F /* Build configuration list for PBXNativeTarget "ChannelTests" */;
buildPhases = (
C845033020DDA11D00D7350F /* Sources */,
C845033120DDA11D00D7350F /* Frameworks */,
C845033220DDA11D00D7350F /* Resources */,
);
buildRules = (
);
dependencies = (
C845033B20DDA11D00D7350F /* PBXTargetDependency */,
);