-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathshiba-vendor.mk
2271 lines (2264 loc) · 364 KB
/
shiba-vendor.mk
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
#
# Automatically generated file. DO NOT MODIFY
#
PRODUCT_SOONG_NAMESPACES += \
vendor/google/shiba
PRODUCT_COPY_FILES += \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/1and1_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/1and1_de.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/2degrees_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/2degrees_nz.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/321communications_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/321communications_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/48_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/48_ie.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/4ka_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/4ka_sk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/a1_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/a1_bg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_bg.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/a1_hr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_hr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/a1_mk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_mk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/a1_si.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_si.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/ahamo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ahamo_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/airbus_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/airbus_de.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/airbus_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/airbus_fr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/airtel_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/airtel_in.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/ais_th.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ais_th.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/altice_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/altice_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/alticeroaming_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/alticeroaming_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/andorratelecom_ad.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/andorratelecom_ad.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/antel_uy.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/antel_uy.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/appalachian_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/appalachian_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/apt_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/apt_tw.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/asda_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/asda_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/assurance_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/assurance_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/astca_as.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/astca_as.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/astoundbroadband_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/astoundbroadband_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/att5g_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att5g_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/att5gsa_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att5gsa_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/att_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att_mx.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/att_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/attbootstrap_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/attbootstrap_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/attmvnos_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/attmvnos_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/axis_id.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/axis_id.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/base_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/base_be.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/batelco_bh.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/batelco_bh.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/bell_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bell_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/bite_lt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bite_lt.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/bite_lv.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bite_lv.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/bluegrass_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bluegrass_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/bob_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bob_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/boost_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/boost_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/boosttmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/boosttmo_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/bouygues_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bouygues_fr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/bsnl_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bsnl_in.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/btb_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/btb_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/btc_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/btc_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cablemovil_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cablemovil_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/carolinawest_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/carolinawest_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/carrier_list.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/carrier_list.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/celcom_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/celcom_my.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cellcom_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcom_il.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cellcom_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcom_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cellcommno_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcommno_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/celluarone_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/celluarone_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/chatr_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/chatr_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/chinamobile_hk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/chinamobile_hk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cht_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cht_tw.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cityfone_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cityfone_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/claro_br.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/claro_br.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/claro_pr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/claro_pr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/congstar_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/congstar_de.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/consumercellularatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/consumercellularatt_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/consumercellulartmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/consumercellulartmo_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/coopvoce_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/coopvoce_it.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/coppervalley_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/coppervalley_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/coriolis_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/coriolis_fr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cox_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cox_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cricket5g_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cricket5g_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cricket_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cricket_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cspire_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cspire_nl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/cspire_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cspire_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/default.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/default.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/digi_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digi_hu.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/digi_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digi_my.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/digi_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digi_ro.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/digimobil_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digimobil_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/dish5gsa_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dish5gsa_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/dishatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dishatt_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/dito_ph.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dito_ph.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/dna_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dna_fi.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/docomo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomo_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/docomomvno_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomomvno_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/docomopacific_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomopacific_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/dtac_th.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dtac_th.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/du_ae.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/du_ae.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/eastlink_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eastlink_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/ee_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ee_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/eeyoumobility_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eeyoumobility_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/eir_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eir_ie.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/elisa1_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/elisa1_fi.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/elisa2_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/elisa2_fi.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/elisa_ee.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/elisa_ee.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/enreach_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/enreach_nl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/eplus_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eplus_de.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/erate_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/erate_no.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/esn_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/esn_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/etisalat_ae.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/etisalat_ae.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/euskaltel_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/euskaltel_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/evolve_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/evolve_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/fastweb_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fastweb_it.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/fet_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fet_tw.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/fi_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fi_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/fi_tmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fi_tmo_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/fido_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fido_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/finetwork_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/finetwork_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/firstnet_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnet_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/firstnetpacific2_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnetpacific2_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/firstnetpacific_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnetpacific_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/fizz_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fizz_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/fl1_li.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fl1_li.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/free_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_fr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/free_gp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_gp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/free_mq.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_mq.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/free_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_re.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/freedommobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/freedommobile_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/gamma_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/gamma_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/gci_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/gci_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/gibtel_gi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/gibtel_gi.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/giffgaff_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/giffgaff_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/giga_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/giga_sg.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/globe_ph.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/globe_ph.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/guuk_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/guuk_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/h3_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/h3_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/h3_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_ie.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/h3_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_se.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/h3g27202_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3g27202_ie.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/halebop_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/halebop_se.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/helium_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/helium_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/help_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/help_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/homobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/homobile_it.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/hotmobile_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/hotmobile_il.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/ice_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ice_no.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/idea_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/idea_in.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/idmobile_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/idmobile_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/iliad_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/iliad_it.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/inland_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/inland_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/iwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/iwireless_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/jazztel_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/jazztel_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/jcommobile_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/jcommobile_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/kddi5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddi5gsa_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/kddi_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddi_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/kddimvno5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddimvno5gsa_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/kddimvno_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddimvno_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/kena_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kena_it.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/koodo_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/koodo_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/kpn_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kpn_nl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lebara_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lebara_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_fr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lebara_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lebara_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_nl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/liberty_pr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/liberty_pr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lifecell_ua.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lifecell_ua.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/linemo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/linemo_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/llamaya_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/llamaya_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lmt_lv.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lmt_lv.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lowi_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lowi_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/luckymobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/luckymobile_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lum_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lum_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lyca_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lyca_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lyca_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lyca_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lycamobile_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lycamobile_pt.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/lycamobile_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lycamobile_se.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/m1_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/m1_sg.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/manxcontract_im.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/manxcontract_im.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/manxprepaid_im.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/manxprepaid_im.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/masmovil_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/masmovil_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/maxis_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/maxis_my.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/mediacom_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mediacom_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/melita_mt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/melita_mt.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/meo_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/meo_pt.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/metropcs_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/metropcs_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/mobifone_vn.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mobifone_vn.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/mobily_sa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mobily_sa.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/monacotelecom_mc.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/monacotelecom_mc.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/movistar_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/movistar_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/movistar_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/movistar_mx.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/mucho_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mucho_ch.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/mvnoconnect_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mvnoconnect_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/netcomgroup_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/netcomgroup_fr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/nexphone_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nexphone_ch.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/nextech_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nextech_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/no_sim.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/no_sim.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/nos_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nos_pt.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/nova_gr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nova_gr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/nova_is.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nova_is.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/o2_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2_cz.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/o2_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2_de.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/o2_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2_sk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/o2postpaid_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2postpaid_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/o2prepaid_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2prepaid_de.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/o2prepaid_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2prepaid_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/omantel_om.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/omantel_om.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/one_me.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/one_me.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/onecall_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/onecall_no.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/ooredoo_kw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ooredoo_kw.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/ooredoo_qa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ooredoo_qa.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/optimera_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/optimera_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/optus_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/optus_au.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/orange_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_be.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/orange_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/orange_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_fr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/orange_gp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_gp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/orange_lu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_lu.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/orange_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_pl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/orange_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_re.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/orange_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_ro.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/orange_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_sk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/others.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/others.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/paradisemobile_bm.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/paradisemobile_bm.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/partner_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/partner_il.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/pcmobilebell_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pcmobilebell_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/pelephone_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pelephone_il.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/pepephone_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pepephone_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/play_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/play_pl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/plintron_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/plintron_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/plus_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/plus_pl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/post_lu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/post_lu.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/postemobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/postemobile_it.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/povo5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/povo5gsa_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/povo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/povo_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/proximus_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/proximus_be.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/publicmobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/publicmobile_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/pwg_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pwg_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/qlink_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/qlink_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/r_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/r_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/racc_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/racc_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/rakuten_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rakuten_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/reachmobileatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/reachmobileatt_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/redpocketatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/redpocketatt_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/redpockettmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/redpockettmo_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/republicwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/republicwireless_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/rjio_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rjio_in.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/rogers5g_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogers5g_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/rogers_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogers_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/rogerswpn_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogerswpn_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/salt_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/salt_ch.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/salt_li.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/salt_li.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/sasktel_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sasktel_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/sfr_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sfr_fr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/shaw_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/shaw_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/simba_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/simba_sg.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/siminn_is.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/siminn_is.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/simple_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/simple_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/simyo_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/simyo_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/singtel_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/singtel_sg.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/skinny_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/skinny_nz.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/skt_kr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/skt_kr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/sky_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sky_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/skylo_zz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/skylo_zz.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/smart_ph.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smart_ph.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/smartfren_id.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smartfren_id.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/smartone_hk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smartone_hk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/smarty_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smarty_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/softbank_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/softbank_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/solomobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/solomobile_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/spark_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spark_nz.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/spectrum_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spectrum_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/spectrummso_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spectrummso_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/spectrummsotest_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spectrummsotest_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/spmtelecom_pm.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spmtelecom_pm.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/sprint_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprint_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/sprintprepaid_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprintprepaid_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/sprintwholesale_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprintwholesale_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/spusu_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spusu_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/ssimobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ssimobile_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/starhub_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/starhub_sg.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/stc_bh.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/stc_bh.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/stc_kw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/stc_kw.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/stc_sa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/stc_sa.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/strata_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/strata_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/sunrise_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sunrise_ch.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/superdrug_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/superdrug_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/sweno_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sweno_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/swisscom_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/swisscom_ch.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/swisscom_li.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/swisscom_li.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/talkmobile_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/talkmobile_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tango_lu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tango_lu.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tango_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tango_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tbaytel_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tbaytel_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tchibo_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tchibo_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tchibo_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tchibo_de.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tdc_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tdc_dk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telavox_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telavox_se.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telcel_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telcel_mx.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telco_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telco_re.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tele2_ee.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_ee.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tele2_lt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_lt.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tele2_lv.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_lv.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tele2_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_se.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telecable2_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telecable2_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telekom_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_de.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telekom_gr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_gr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telekom_hr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_hr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telekom_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_hu.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telekom_me.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_me.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telekom_mk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_mk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telekom_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_pl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telekom_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_ro.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telekom_si.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_si.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telekom_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_sk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telemach_hr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telemach_hr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telemach_si.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telemach_si.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telenet_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenet_be.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telenor_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_dk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telenor_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_no.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telenor_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_se.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telia_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_dk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telia_ee.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_ee.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telia_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_fi.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telia_lt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_lt.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telia_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_no.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telia_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_se.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telkomsel_id.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telkomsel_id.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tello_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tello_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telstra_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telstra_au.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/telus_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telus_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tesco_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tesco_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/test001_zz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/test001_zz.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/three_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/three_dk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tim_br.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tim_br.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tim_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tim_it.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tmobile_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tmobile_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_cz.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tmobile_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_nl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tmobile_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tmomvno_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmomvno_nl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tmomvno_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmomvno_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tracfoneatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfoneatt_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tracfonetmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfonetmo_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tracfoneverizon_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfoneverizon_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/truemove_th.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/truemove_th.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/truphone_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/truphone_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/truphone_zz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/truphone_zz.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/tstar_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tstar_tw.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/turkcell_tr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/turkcell_tr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/turktelekom_tr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/turktelekom_tr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/twm_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/twm_tw.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/u264a_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264a_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/u264a_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264a_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/u264ab_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264ab_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/u264ao_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264ao_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/u264ap_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264ap_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/ultra_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ultra_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/umobile_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/umobile_my.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/unifi_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/unifi_my.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/unionwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/unionwireless_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/unitedwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/unitedwireless_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/uqmobile5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/uqmobile5gsa_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/uqmobile_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/uqmobile_jp.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/uscc_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/uscc_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/verizon_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/verizon_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/verymobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/verymobile_it.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/viaero_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/viaero_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/videotron_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/videotron_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/viettel_vn.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/viettel_vn.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vimla_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vimla_se.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vinaphone_vn.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vinaphone_vn.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/virgin_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_ca.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/virgin_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/virgin_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/virgintelco_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgintelco_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/visible_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/visible_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/visiblev_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/visiblev_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/viti_pf.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/viti_pf.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vivacom_bg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vivacom_bg.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vivo_br.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vivo_br.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_au.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_cz.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_de.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_gb.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_gr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_gr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_hu.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_ie.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_in.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_it.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_nl.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_nz.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_om.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_om.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_pt.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_qa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_qa.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_ro.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/vodafone_tr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_tr.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/walmart_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/walmart_mx.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/webbing_hk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/webbing_hk.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/windtre_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/windtre_it.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/xfinity2_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/xfinity2_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/xfinity_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/xfinity_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/xfinitymso_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/xfinitymso_us.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/yes_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yes_my.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/yesss_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yesss_at.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/yettel_bg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yettel_bg.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/yettel_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yettel_hu.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/yoigo_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yoigo_es.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/zain_bh.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zain_bh.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/zain_kw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zain_kw.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/zain_sa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zain_sa.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/zeop_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zeop_re.pb \
vendor/google/shiba/proprietary/product/etc/CarrierSettings/ztar_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ztar_us.pb
PRODUCT_COPY_FILES += \
vendor/google/shiba/proprietary/product/etc/ambient/matcher_tah.leveldb:$(TARGET_COPY_OUT_PRODUCT)/etc/ambient/matcher_tah.leveldb \
vendor/google/shiba/proprietary/product/etc/felica/common.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/common.cfg \
vendor/google/shiba/proprietary/product/etc/felica/mfm.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/mfm.cfg \
vendor/google/shiba/proprietary/product/etc/felica/mfs.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/mfs.cfg \
vendor/google/shiba/proprietary/product/etc/firmware/music_detector.descriptor:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.descriptor \
vendor/google/shiba/proprietary/product/etc/firmware/music_detector.sound_model:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.sound_model \
vendor/google/shiba/proprietary/product/etc/firmware/music_detector.sound_model_2:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.sound_model_2 \
vendor/google/shiba/proprietary/product/etc/firmware/music_detector.sound_model_tflite:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.sound_model_tflite \
vendor/google/shiba/proprietary/product/etc/permissions/androidx.camera.extensions.impl.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/androidx.camera.extensions.impl.xml \
vendor/google/shiba/proprietary/product/etc/permissions/com.android.omadm.service.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.omadm.service.xml \
vendor/google/shiba/proprietary/product/etc/permissions/com.android.sdm.plugins.connmo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.connmo.xml \
vendor/google/shiba/proprietary/product/etc/permissions/com.android.sdm.plugins.dcmo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.dcmo.xml \
vendor/google/shiba/proprietary/product/etc/permissions/com.android.sdm.plugins.diagmon.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.diagmon.xml \
vendor/google/shiba/proprietary/product/etc/permissions/com.google.android.hardwareinfo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.google.android.hardwareinfo.xml \
vendor/google/shiba/proprietary/product/etc/permissions/com.google.omadm.trigger.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.google.omadm.trigger.xml \
vendor/google/shiba/proprietary/product/etc/permissions/com.verizon.apn.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.verizon.apn.xml \
vendor/google/shiba/proprietary/product/etc/permissions/com.verizon.services.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.verizon.services.xml \
vendor/google/shiba/proprietary/product/etc/permissions/features-verizon.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/features-verizon.xml \
vendor/google/shiba/proprietary/product/etc/permissions/privapp-permissions-google-p-lineage.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/privapp-permissions-google-p-lineage.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/GoogleCamera_6gb_or_more_ram.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/GoogleCamera_6gb_or_more_ram.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/allowlist_com.android.omadm.service.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/allowlist_com.android.omadm.service.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/allowlist_com.shannon.imsservice.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/allowlist_com.shannon.imsservice.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/google-hiddenapi-package-whitelist.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/google-hiddenapi-package-whitelist.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/nexus.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/nexus.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2017.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2017.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2018.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2018.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2019.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2019.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2019_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2019_midyear.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2020.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2020.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2020_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2020_midyear.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2021.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2021.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2021_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2021_midyear.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2022.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2022.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2022_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2022_midyear.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2023.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2023.xml \
vendor/google/shiba/proprietary/product/etc/sysconfig/pixel_experience_2023_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2023_midyear.xml \
vendor/google/shiba/proprietary/system_ext/etc/default-permissions/default-permissions-euiccpixel.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/default-permissions/default-permissions-euiccpixel.xml \
vendor/google/shiba/proprietary/system_ext/etc/init/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/init/[email protected] \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.android.hotwordenrollment.common.util.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.hotwordenrollment.common.util.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.android.omadm.radioconfig.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.omadm.radioconfig.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.android.qns.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.qns.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.google.android.camera.extensions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.android.camera.extensions.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.google.android.camerax.extensions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.android.camerax.extensions.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.google.android.rilextension.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.android.rilextension.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.google.euiccpixel.permissions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.euiccpixel.permissions.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.google.euiccpixel.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.euiccpixel.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.samsung.slsi.telephony.oemril.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.samsung.slsi.telephony.oemril.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.shannon.imsservice.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.shannon.imsservice.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/com.shannon.rcsservice.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.shannon.rcsservice.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/google-ril.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/google-ril.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/oemrilhook.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/oemrilhook.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/privapp-permissions-google-se-lineage.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/privapp-permissions-google-se-lineage.xml \
vendor/google/shiba/proprietary/system_ext/etc/permissions/vzw_mvs_permissions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/vzw_mvs_permissions.xml \
vendor/google/shiba/proprietary/system_ext/etc/public.libraries-google.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/public.libraries-google.txt \
vendor/google/shiba/proprietary/system_ext/priv-app/EuiccSupportPixel-P23/esim-full-v1-m40.img:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel-P23/esim-full-v1-m40.img \
vendor/google/shiba/proprietary/system_ext/priv-app/EuiccSupportPixel-P23/esim-full-v1-m41.img:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel-P23/esim-full-v1-m41.img \
vendor/google/shiba/proprietary/system_ext/priv-app/EuiccSupportPixel-P23/esim-full-v1.img:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel-P23/esim-full-v1.img
PRODUCT_PACKAGES += \
libdmengine \
libdmjavaplugin \
com.google.edgetpu_app_service-V4-ndk \
com.google.edgetpu_vendor_service-V2-ndk \
libedgetpu_dba.google \
libmediaadaptor \
libpixeldisplaymanager_jni \
libpixelimsmedia \
vendor.google.whitechapel.audio.extension-V3-ndk \
VZWAPNLib \
AICorePrebuilt \
AppDirectedSMSService \
CarrierSettings_signed_49.0.645958608 \
CarrierWifi \
ConnMO \
DCMO \
DMService \
DeviceIntelligenceNetworkPrebuilt-U.32_V.7_playstore_astrea_20240725.00_RC01 \
DevicePersonalizationPrebuiltPixel2023-U.32_V.7_playstore_aiai_20240725.00_RC08 \
DiagMon \
EuiccGoogle \
HardwareInfo \
HotwordEnrollmentOKGoogleFUSIONPro \
HotwordEnrollmentXGoogleFUSIONPro \
OemDmTrigger \
PixelCameraServices \
TetheringEntitlement \
WfcActivation \
OemRilHookService \
CarrierSetup \
ConnectivityThermalPowerManager \
EuiccGoogleOverlay \
EuiccSupportPixel-P23 \
EuiccSupportPixelPermissions \
MyVerizonServices \
OemRilService \
PixelDisplayService \
PixelImsMediaService \
PixelQualifiedNetworksService \
RilConfigService \
ShannonIms \
ShannonRcs \
grilservice \
ril-extension \
libhwinfo \
RadioConfigLib \
com.android.hotwordenrollment.common.util \
com.google.android.camera.extensions \
com.google.android.camerax.extensions \
google-ril \
oemrilhook \
oem-iptables-init \
PRODUCT_PACKAGES += \
product_priv-app_DMService_lib_arm64_libdmengine_so \
product_priv-app_DMService_lib_arm64_libdmjavaplugin_so \
system_ext_priv-app_PixelDisplayService_lib_arm64_libpixeldisplaymanager_jni_so
PRODUCT_COPY_FILES += \
vendor/google/shiba/proprietary/vendor/etc/Khronos/OpenCL/vendors/ARM.icd:$(TARGET_COPY_OUT_VENDOR)/etc/Khronos/OpenCL/vendors/ARM.icd \
vendor/google/shiba/proprietary/vendor/etc/atc_profile.json:$(TARGET_COPY_OUT_VENDOR)/etc/atc_profile.json \
vendor/google/shiba/proprietary/vendor/etc/bluetooth/bt_vendor.conf:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth/bt_vendor.conf \
vendor/google/shiba/proprietary/vendor/etc/chre/activity.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/activity.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/activity.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/activity.so \
vendor/google/shiba/proprietary/vendor/etc/chre/aidb_recorder.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/aidb_recorder.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/aidb_recorder.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/aidb_recorder.so \
vendor/google/shiba/proprietary/vendor/etc/chre/ambient_volume.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ambient_volume.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/ambient_volume.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ambient_volume.so \
vendor/google/shiba/proprietary/vendor/etc/chre/ar_bridge.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ar_bridge.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/ar_bridge.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ar_bridge.so \
vendor/google/shiba/proprietary/vendor/etc/chre/blue.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/blue.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/blue.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/blue.so \
vendor/google/shiba/proprietary/vendor/etc/chre/capo.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/capo.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/capo.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/capo.so \
vendor/google/shiba/proprietary/vendor/etc/chre/cc.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/cc.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/cc.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/cc.so \
vendor/google/shiba/proprietary/vendor/etc/chre/columbus.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/columbus.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus.so \
vendor/google/shiba/proprietary/vendor/etc/chre/columbus_lite.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus_lite.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/columbus_lite.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus_lite.so \
vendor/google/shiba/proprietary/vendor/etc/chre/drop.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/drop.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/drop.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/drop.so \
vendor/google/shiba/proprietary/vendor/etc/chre/gating.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/gating.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/gating.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/gating.so \
vendor/google/shiba/proprietary/vendor/etc/chre/geofence.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/geofence.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/geofence.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/geofence.so \
vendor/google/shiba/proprietary/vendor/etc/chre/gesture.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/gesture.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/gesture.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/gesture.so \
vendor/google/shiba/proprietary/vendor/etc/chre/health.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/health.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/health.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/health.so \
vendor/google/shiba/proprietary/vendor/etc/chre/imu_cal.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/imu_cal.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/imu_cal.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/imu_cal.so \
vendor/google/shiba/proprietary/vendor/etc/chre/ip_health.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ip_health.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/ip_health.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ip_health.so \
vendor/google/shiba/proprietary/vendor/etc/chre/libchre_log_database.bin:$(TARGET_COPY_OUT_VENDOR)/etc/chre/libchre_log_database.bin \
vendor/google/shiba/proprietary/vendor/etc/chre/motiondetector.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/motiondetector.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/motiondetector.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/motiondetector.so \
vendor/google/shiba/proprietary/vendor/etc/chre/nearby.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/nearby.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/nearby.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/nearby.so \
vendor/google/shiba/proprietary/vendor/etc/chre/sd.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sd.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/sd.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sd.so \
vendor/google/shiba/proprietary/vendor/etc/chre/sensorcollector.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sensorcollector.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/sensorcollector.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sensorcollector.so \
vendor/google/shiba/proprietary/vendor/etc/chre/smartbatching.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/smartbatching.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/smartbatching.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/smartbatching.so \
vendor/google/shiba/proprietary/vendor/etc/chre/system_signal_hub.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/system_signal_hub.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/system_signal_hub.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/system_signal_hub.so \
vendor/google/shiba/proprietary/vendor/etc/chre/uv_exposure.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/uv_exposure.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/uv_exposure.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/uv_exposure.so \
vendor/google/shiba/proprietary/vendor/etc/chre/vice.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/vice.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/vice.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/vice.so \
vendor/google/shiba/proprietary/vendor/etc/chre/wallaby.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/wallaby.napp_header \
vendor/google/shiba/proprietary/vendor/etc/chre/wallaby.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/wallaby.so \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_202.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_202.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_204.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_204.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_206.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_206.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_208.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_208.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_214.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_214.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_216.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_216.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_218.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_218.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_219.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_219.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_222.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_222.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_226.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_226.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_228.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_228.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_230.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_230.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_231.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_231.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_232.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_232.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_234.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_234.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_235.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_235.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_242.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_242.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_250.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_250.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_255.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_255.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_260.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_260.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_262.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_262.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_268.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_268.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_272.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_272.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_276.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_276.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_293.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_293.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_297.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_297.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_330.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_330.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_334.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_334.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_338.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_338.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_340.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_340.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_370.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_370.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_372.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_372.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_374.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_374.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_404.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_404.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_405.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_405.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_425.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_425.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_440.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_440.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_441.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_441.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_450.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_450.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_452.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_452.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_460.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_460.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_466.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_466.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_505.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_505.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_525.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_525.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_647.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_647.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_704.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_704.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_706.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_706.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_708.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_708.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_710.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_710.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_712.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_712.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_714.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_714.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_716.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_716.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_722.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_722.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_724.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_724.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_730.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_730.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_732.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_732.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_734.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_734.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_736.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_736.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_738.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_738.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_740.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_740.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_744.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_744.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_746.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_746.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_748.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_748.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_750.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_750.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_DEFAULT.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_DEFAULT.xml \
vendor/google/shiba/proprietary/vendor/etc/database/DbEcc_ICCID.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_ICCID.xml \
vendor/google/shiba/proprietary/vendor/etc/database/ecc_version:$(TARGET_COPY_OUT_VENDOR)/etc/database/ecc_version \
vendor/google/shiba/proprietary/vendor/etc/displayconfig/display_id_4619827677245947648.xml:$(TARGET_COPY_OUT_VENDOR)/etc/displayconfig/display_id_4619827677245947648.xml \
vendor/google/shiba/proprietary/vendor/etc/displayconfig/display_id_4619827756650623232.xml:$(TARGET_COPY_OUT_VENDOR)/etc/displayconfig/display_id_4619827756650623232.xml \
vendor/google/shiba/proprietary/vendor/etc/displayconfig/display_id_4619827812140078592.xml:$(TARGET_COPY_OUT_VENDOR)/etc/displayconfig/display_id_4619827812140078592.xml \
vendor/google/shiba/proprietary/vendor/etc/displayconfig/display_id_4619827870458411520.xml:$(TARGET_COPY_OUT_VENDOR)/etc/displayconfig/display_id_4619827870458411520.xml \
vendor/google/shiba/proprietary/vendor/etc/displayconfig/display_port_0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/displayconfig/display_port_0.xml \
vendor/google/shiba/proprietary/vendor/etc/earcheek_classifier.tflite:$(TARGET_COPY_OUT_VENDOR)/etc/earcheek_classifier.tflite \
vendor/google/shiba/proprietary/vendor/etc/init/Exynos_C2.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/Exynos_C2.rc \
vendor/google/shiba/proprietary/vendor/etc/init/android.hardware.authsecret-service.citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.authsecret-service.citadel.rc \
vendor/google/shiba/proprietary/vendor/etc/init/android.hardware.bluetooth-service.bcmbtlinux.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.bluetooth-service.bcmbtlinux.rc \
vendor/google/shiba/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/shiba/proprietary/vendor/etc/init/android.hardware.contexthub-service.generic.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.contexthub-service.generic.rc \
vendor/google/shiba/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/shiba/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/shiba/proprietary/vendor/etc/init/android.hardware.input.processor-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.input.processor-service.rc \
vendor/google/shiba/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/shiba/proprietary/vendor/etc/init/android.hardware.oemlock-service.citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.oemlock-service.citadel.rc \
vendor/google/shiba/proprietary/vendor/etc/init/android.hardware.secure_element-service.uicc.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.secure_element-service.uicc.rc \
vendor/google/shiba/proprietary/vendor/etc/init/android.hardware.security.keymint-service.citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.security.keymint-service.citadel.rc \
vendor/google/shiba/proprietary/vendor/etc/init/android.hardware.weaver-service.citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.weaver-service.citadel.rc \
vendor/google/shiba/proprietary/vendor/etc/init/aocd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/aocd.rc \
vendor/google/shiba/proprietary/vendor/etc/init/aocxd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/aocxd.rc \
vendor/google/shiba/proprietary/vendor/etc/init/bipchmgr.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/bipchmgr.rc \
vendor/google/shiba/proprietary/vendor/etc/init/cbd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/cbd.rc \
vendor/google/shiba/proprietary/vendor/etc/init/citadeld.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/citadeld.rc \
vendor/google/shiba/proprietary/vendor/etc/init/com.google.edgetpu.dba-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/com.google.edgetpu.dba-service.rc \
vendor/google/shiba/proprietary/vendor/etc/init/com.google.edgetpu.tachyon-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/com.google.edgetpu.tachyon-service.rc \
vendor/google/shiba/proprietary/vendor/etc/init/dmd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/dmd.rc \
vendor/google/shiba/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/shiba/proprietary/vendor/etc/init/init.camera.set-interrupts-ownership.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.camera.set-interrupts-ownership.rc \
vendor/google/shiba/proprietary/vendor/etc/init/init.gps.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.gps.rc \
vendor/google/shiba/proprietary/vendor/etc/init/init.liboemservice_proxy.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.liboemservice_proxy.rc \
vendor/google/shiba/proprietary/vendor/etc/init/init.modem_logging_control.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.modem_logging_control.rc \
vendor/google/shiba/proprietary/vendor/etc/init/init.sscoredump.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.sscoredump.rc \
vendor/google/shiba/proprietary/vendor/etc/init/init.usf.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.usf.rc \
vendor/google/shiba/proprietary/vendor/etc/init/init.vendor_telephony.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.vendor_telephony.rc \
vendor/google/shiba/proprietary/vendor/etc/init/init_dauntless.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init_dauntless.rc \
vendor/google/shiba/proprietary/vendor/etc/init/libg3a_gabc.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/libg3a_gabc.rc \
vendor/google/shiba/proprietary/vendor/etc/init/libg3a_gaf.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/libg3a_gaf.rc \
vendor/google/shiba/proprietary/vendor/etc/init/libg3a_ghawb.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/libg3a_ghawb.rc \
vendor/google/shiba/proprietary/vendor/etc/init/pktrouter.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/pktrouter.rc \
vendor/google/shiba/proprietary/vendor/etc/init/rfsd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/rfsd.rc \
vendor/google/shiba/proprietary/vendor/etc/init/rild_exynos.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/rild_exynos.rc \
vendor/google/shiba/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/shiba/proprietary/vendor/etc/init/trusty_metricsd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/trusty_metricsd.rc \
vendor/google/shiba/proprietary/vendor/etc/init/twoshay.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/twoshay.rc \
vendor/google/shiba/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/shiba/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/shiba/proprietary/vendor/etc/init/vendor.google.battery_mitigation-default.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.battery_mitigation-default.rc \
vendor/google/shiba/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/shiba/proprietary/vendor/etc/init/vendor.google.google_battery-default.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.google_battery-default.rc \
vendor/google/shiba/proprietary/vendor/etc/init/vendor.google.modem_ml_svc_sit.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.modem_ml_svc_sit.rc \
vendor/google/shiba/proprietary/vendor/etc/init/vendor.google.modem_svc_sit.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.modem_svc_sit.rc \
vendor/google/shiba/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/shiba/proprietary/vendor/etc/init/vendor.google.wireless_charger-default.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.wireless_charger-default.rc \
vendor/google/shiba/proprietary/vendor/etc/init/vendor.google.wireless_charger.service-default.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.wireless_charger.service-default.rc \
vendor/google/shiba/proprietary/vendor/etc/input_classifier_model.pb:$(TARGET_COPY_OUT_VENDOR)/etc/input_classifier_model.pb \
vendor/google/shiba/proprietary/vendor/etc/libg3a_standalone_gabc_rc:$(TARGET_COPY_OUT_VENDOR)/etc/libg3a_standalone_gabc_rc \
vendor/google/shiba/proprietary/vendor/etc/libg3a_standalone_gaf_rc:$(TARGET_COPY_OUT_VENDOR)/etc/libg3a_standalone_gaf_rc \
vendor/google/shiba/proprietary/vendor/etc/libg3a_standalone_ghawb_rc:$(TARGET_COPY_OUT_VENDOR)/etc/libg3a_standalone_ghawb_rc \
vendor/google/shiba/proprietary/vendor/etc/media_codecs_aosp_c2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_aosp_c2.xml \
vendor/google/shiba/proprietary/vendor/etc/media_codecs_dolby_c2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_dolby_c2.xml \
vendor/google/shiba/proprietary/vendor/etc/media_profiles_V1_0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_profiles_V1_0.xml \
vendor/google/shiba/proprietary/vendor/etc/modem_stat.conf:$(TARGET_COPY_OUT_VENDOR)/etc/modem_stat.conf \
vendor/google/shiba/proprietary/vendor/etc/open_carrier_info.dat:$(TARGET_COPY_OUT_VENDOR)/etc/open_carrier_info.dat \
vendor/google/shiba/proprietary/vendor/etc/permissions/android.hardware.strongbox_keystore.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.strongbox_keystore.xml \
vendor/google/shiba/proprietary/vendor/etc/permissions/android.hardware.telephony.gsm.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.gsm.xml \
vendor/google/shiba/proprietary/vendor/etc/permissions/android.hardware.telephony.ims.singlereg.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.ims.singlereg.xml \
vendor/google/shiba/proprietary/vendor/etc/permissions/android.hardware.telephony.ims.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.ims.xml \
vendor/google/shiba/proprietary/vendor/etc/permissions/com.google.android.camera.experimental2023.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.google.android.camera.experimental2023.xml \
vendor/google/shiba/proprietary/vendor/etc/public.libraries.txt:$(TARGET_COPY_OUT_VENDOR)/etc/public.libraries.txt \
vendor/google/shiba/proprietary/vendor/etc/seccomp_policy/codec2.vendor.base.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/codec2.vendor.base.policy \
vendor/google/shiba/proprietary/vendor/etc/seccomp_policy/codec2.vendor.ext.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/codec2.vendor.ext.policy \
vendor/google/shiba/proprietary/vendor/etc/sensors/device_cal_info:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/device_cal_info \
vendor/google/shiba/proprietary/vendor/etc/sensors/hals.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/hals.conf \
vendor/google/shiba/proprietary/vendor/etc/sensors/registry/append/motion_state.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/append/motion_state.reg \
vendor/google/shiba/proprietary/vendor/etc/sensors/registry/append/power.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/append/power.reg \
vendor/google/shiba/proprietary/vendor/etc/sensors/registry/shiba_common.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/shiba_common.reg \
vendor/google/shiba/proprietary/vendor/etc/sensors/registry/shiba_dvt.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/shiba_dvt.reg \
vendor/google/shiba/proprietary/vendor/etc/sensors/registry/shiba_evt.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/shiba_evt.reg \
vendor/google/shiba/proprietary/vendor/etc/sensors/registry/shiba_evt_win.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/shiba_evt_win.reg \
vendor/google/shiba/proprietary/vendor/etc/sensors/registry/shiba_proto_1_0.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/shiba_proto_1_0.reg \
vendor/google/shiba/proprietary/vendor/etc/sensors/registry/shiba_proto_1_1.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/shiba_proto_1_1.reg \
vendor/google/shiba/proprietary/vendor/etc/touchflow.pb:$(TARGET_COPY_OUT_VENDOR)/etc/touchflow.pb \
vendor/google/shiba/proprietary/vendor/etc/twoshay_config.json:$(TARGET_COPY_OUT_VENDOR)/etc/twoshay_config.json \
vendor/google/shiba/proprietary/vendor/firmware/KIOXIATHGJFJT1E45BATPC0100.img:$(TARGET_COPY_OUT_VENDOR)/firmware/KIOXIATHGJFJT1E45BATPC0100.img \
vendor/google/shiba/proprietary/vendor/firmware/KIOXIATHGJFJT2T85BAT0C0100.img:$(TARGET_COPY_OUT_VENDOR)/firmware/KIOXIATHGJFJT2T85BAT0C0100.img \
vendor/google/shiba/proprietary/vendor/firmware/MICRONMT128GBCAV2U310103.img:$(TARGET_COPY_OUT_VENDOR)/firmware/MICRONMT128GBCAV2U310103.img \
vendor/google/shiba/proprietary/vendor/firmware/MICRONMT128GBCAV2U310104.img:$(TARGET_COPY_OUT_VENDOR)/firmware/MICRONMT128GBCAV2U310104.img \
vendor/google/shiba/proprietary/vendor/firmware/SAMSUNGKLUDG4UHGC-B0E13103.img:$(TARGET_COPY_OUT_VENDOR)/firmware/SAMSUNGKLUDG4UHGC-B0E13103.img \
vendor/google/shiba/proprietary/vendor/firmware/SensorHub.patch:$(TARGET_COPY_OUT_VENDOR)/firmware/SensorHub.patch \
vendor/google/shiba/proprietary/vendor/firmware/aoc.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/aoc.bin \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_4398_b0:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_4398_b0 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_4398_c0:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_4398_c0 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_JP:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_JP \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_MMW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_MMW \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_NA:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_NA \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_ROW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_ROW \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_USI_G5SN_9950_V10:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_USI_G5SN_9950_V10 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_USI_G5SN_9951_V11:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_USI_G5SN_9951_V11 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_USI_G5SN_9953_V13:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_USI_G5SN_9953_V13 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_USI_G5SN_9955_V15:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_USI_G5SN_9955_V15 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd.cal_USI_G5SN_9957_V17:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_USI_G5SN_9957_V17 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd_clm.blob_4398_b0:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_4398_b0 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd_clm.blob_4398_c0:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_4398_c0 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd_clm.blob_4398_d0:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_4398_d0 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd_clm.blob_JP:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_JP \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd_clm.blob_MMW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_MMW \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd_clm.blob_NA:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_NA \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd_clm.blob_ROW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_ROW \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd_txcap.blob_4398_c0:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_txcap.blob_4398_c0 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd_txcap.blob_4398_d0:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_txcap.blob_4398_d0 \
vendor/google/shiba/proprietary/vendor/firmware/bcmdhd_txcap.blob_MMW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_txcap.blob_MMW \
vendor/google/shiba/proprietary/vendor/firmware/brcm/BCM.hcd:$(TARGET_COPY_OUT_VENDOR)/firmware/brcm/BCM.hcd \
vendor/google/shiba/proprietary/vendor/firmware/brcm/BCM_174.hcd:$(TARGET_COPY_OUT_VENDOR)/firmware/brcm/BCM_174.hcd \
vendor/google/shiba/proprietary/vendor/firmware/brcm/BCM_181.hcd:$(TARGET_COPY_OUT_VENDOR)/firmware/brcm/BCM_181.hcd \
vendor/google/shiba/proprietary/vendor/firmware/brcm/BTFW_B.hcd:$(TARGET_COPY_OUT_VENDOR)/firmware/brcm/BTFW_B.hcd \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/build.info:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/build.info \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/cfg.db:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/cfg.db \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/cfg.sha2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/cfg.sha2 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0059fc46dfd0d7f4d0a0231276a0d83c54de4864:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0059fc46dfd0d7f4d0a0231276a0d83c54de4864 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/00dbc9280e88e8ca87110228440bfb40f14016de:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/00dbc9280e88e8ca87110228440bfb40f14016de \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/00ffac5bf78c25404e2bbfd4b4bf82990f63010a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/00ffac5bf78c25404e2bbfd4b4bf82990f63010a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/018046ac7f4d6b9249efdb11aa46e9ce85faaffe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/018046ac7f4d6b9249efdb11aa46e9ce85faaffe \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/01a086b6e56138258cdfb88f092cb9e4cfd1890d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/01a086b6e56138258cdfb88f092cb9e4cfd1890d \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/01a541615da9bb6331ec811372d112325ed8281a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/01a541615da9bb6331ec811372d112325ed8281a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/01c0f02a4b9f503b070829cb0a40f5e0ac19183e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/01c0f02a4b9f503b070829cb0a40f5e0ac19183e \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/026fe381212d553d82ad53288774e73f814ecd82:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/026fe381212d553d82ad53288774e73f814ecd82 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/02996f7f0d72a3a2f02b1d2074e62cfedb8b9864:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/02996f7f0d72a3a2f02b1d2074e62cfedb8b9864 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0481f214569895209e6fe4967dd0c6944dc98d92:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0481f214569895209e6fe4967dd0c6944dc98d92 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/049f9e339423d7ab8f17f9eab53325da1384ff48:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/049f9e339423d7ab8f17f9eab53325da1384ff48 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/04bae239b62c058084297f112e04aa1f07209fb9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/04bae239b62c058084297f112e04aa1f07209fb9 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0503cffdc2392f7de203cb89c764393fc1097b8d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0503cffdc2392f7de203cb89c764393fc1097b8d \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/05320fa43df348629743271fa454fde7aa4e3752:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/05320fa43df348629743271fa454fde7aa4e3752 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/054db4f2e3f9db05819af873c4fd7d0dca9b91c5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/054db4f2e3f9db05819af873c4fd7d0dca9b91c5 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/054f677273c1bd96aafd5a5e8d5a199b804ba2f0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/054f677273c1bd96aafd5a5e8d5a199b804ba2f0 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0556544c2f4adff70a4b6d538fd05dc6afc01f15:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0556544c2f4adff70a4b6d538fd05dc6afc01f15 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0581e1cbc0051b13b8b1da89dda6a85b62fd5581:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0581e1cbc0051b13b8b1da89dda6a85b62fd5581 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/05bbd25db23ffc8a76da52ff834f8f080fcbcfba:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/05bbd25db23ffc8a76da52ff834f8f080fcbcfba \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/06504c2a012d4bbfbe49b3af988e8ecdb637615b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/06504c2a012d4bbfbe49b3af988e8ecdb637615b \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/065ab34ee4038d442967dc652b481842c4c20975:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/065ab34ee4038d442967dc652b481842c4c20975 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/06760940b735d71a10bec0ab1a95ee5d94cae0ae:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/06760940b735d71a10bec0ab1a95ee5d94cae0ae \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/06df7c72af5524756d7e55a915984efe65690bf7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/06df7c72af5524756d7e55a915984efe65690bf7 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/06f5a8a6418f9daf88663fd076d2319660e6393c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/06f5a8a6418f9daf88663fd076d2319660e6393c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/07150c1b70628099eff9274988179f87870f3b87:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/07150c1b70628099eff9274988179f87870f3b87 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0774d97a50597fdfb55e0f1318f22a160217c555:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0774d97a50597fdfb55e0f1318f22a160217c555 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/07c0d3baea35cb68668b0c1841632a194745c461:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/07c0d3baea35cb68668b0c1841632a194745c461 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0836a1336553bb345ad503be64bca926fa92effe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0836a1336553bb345ad503be64bca926fa92effe \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/087157d1cfbb20f5b07b1a5f30df938886356128:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/087157d1cfbb20f5b07b1a5f30df938886356128 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/08a0066b208892aa43386a8aa5e2f9d8d4bf6507:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/08a0066b208892aa43386a8aa5e2f9d8d4bf6507 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/08d367470046d31604c80566f308dfb9a93f69da:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/08d367470046d31604c80566f308dfb9a93f69da \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/08e1a1db49322a7bcad18e9dd2ed55e139662ef8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/08e1a1db49322a7bcad18e9dd2ed55e139662ef8 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0984a4b49a42322a83cc1941290e52b052e9caeb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0984a4b49a42322a83cc1941290e52b052e9caeb \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/09cbc3ef39be88a97a785a096b3ff9e161b1a1cd:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/09cbc3ef39be88a97a785a096b3ff9e161b1a1cd \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0a2c5b8c260ec21771682e448b78191da7a37b04:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0a2c5b8c260ec21771682e448b78191da7a37b04 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0a984436c956c8216798ce17d4fa0777fe693c03:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0a984436c956c8216798ce17d4fa0777fe693c03 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0ac6dd7059bd68ab2a4b902935f7c83b565d425b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0ac6dd7059bd68ab2a4b902935f7c83b565d425b \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0b0cb4025098ba6ef12f19da5c43e3ea11ae4b55:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0b0cb4025098ba6ef12f19da5c43e3ea11ae4b55 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0b4e6f0b6e544dbd7a19e8f8b7e0b89b1d1d336b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0b4e6f0b6e544dbd7a19e8f8b7e0b89b1d1d336b \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0be6e209acdd1797b8c9e0a6a2fe24a768fc3c80:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0be6e209acdd1797b8c9e0a6a2fe24a768fc3c80 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0c049730c9ac30dc65d21809f84fa7a834d73221:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0c049730c9ac30dc65d21809f84fa7a834d73221 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0d12c459a1d0e0a23cce2e4ce75598617b84fbfb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0d12c459a1d0e0a23cce2e4ce75598617b84fbfb \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0d42e82a9f512ba1ebcb981f1b1e962a7b2187b1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0d42e82a9f512ba1ebcb981f1b1e962a7b2187b1 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0d59eef9289248a328f010a6ac9237a9837b996b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0d59eef9289248a328f010a6ac9237a9837b996b \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0d5c647996a6b1ff1205d12f5701eff4e362c15b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0d5c647996a6b1ff1205d12f5701eff4e362c15b \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0de6672fc3be86878405dce49c09bd0023933fb4:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0de6672fc3be86878405dce49c09bd0023933fb4 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0e11f182f4f5c8135545f88fe2d2f6bc13aa857c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e11f182f4f5c8135545f88fe2d2f6bc13aa857c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0e3dab6c14130b8e15f42c30bd554c189aafe176:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e3dab6c14130b8e15f42c30bd554c189aafe176 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0e506b6cde42b9cc47164cbf1813e666ada2f0e0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e506b6cde42b9cc47164cbf1813e666ada2f0e0 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0ecf1868de5165c6b9778ee2682ae0140f2ea3c6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0ecf1868de5165c6b9778ee2682ae0140f2ea3c6 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0f040c32f77c42b1d5c7b494bf603a5405ddca21:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0f040c32f77c42b1d5c7b494bf603a5405ddca21 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0f290329e337e68f8bed4a0a9020fe42bdd2ce39:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0f290329e337e68f8bed4a0a9020fe42bdd2ce39 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/0fd79ff72e248372a268c0ca0ed66edd1ffb8443:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0fd79ff72e248372a268c0ca0ed66edd1ffb8443 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/10054a79788773a66f99911bfc9177b2be9cb0bf:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/10054a79788773a66f99911bfc9177b2be9cb0bf \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/10f194969f879263879de4d6410f93efb568135f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/10f194969f879263879de4d6410f93efb568135f \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1112cade42103b89a8f5189bd7e78da8b0450138:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1112cade42103b89a8f5189bd7e78da8b0450138 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/11b3a7e774ac4580edcdc2516a1c8ae95c1b7958:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/11b3a7e774ac4580edcdc2516a1c8ae95c1b7958 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/11d5ecd79e6155ec6db8a67b5806c4a9325d158e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/11d5ecd79e6155ec6db8a67b5806c4a9325d158e \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/123b524448ce186477e8444aec555168e8995164:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/123b524448ce186477e8444aec555168e8995164 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/12722b5c5d94448e25277a8e92c9ed56b81a8d91:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/12722b5c5d94448e25277a8e92c9ed56b81a8d91 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1279203468e3a451f10c8039422140ccc7acb37c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1279203468e3a451f10c8039422140ccc7acb37c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/13082fdc702f100645395426145730445897b59e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/13082fdc702f100645395426145730445897b59e \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/13c07372c8228330755b859bfff8edb0eafef977:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/13c07372c8228330755b859bfff8edb0eafef977 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/145d44be6f59312950b88afbca3bc38dfbeb4ee2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/145d44be6f59312950b88afbca3bc38dfbeb4ee2 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/14a97f150993fc30bc30f63992d5bd48b50729f5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/14a97f150993fc30bc30f63992d5bd48b50729f5 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/15180866ad0cce591deb5b0fd2a2947d2d81662e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/15180866ad0cce591deb5b0fd2a2947d2d81662e \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1518d5db78798c937a1fa460508a897f18fc538d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1518d5db78798c937a1fa460508a897f18fc538d \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/16054789a3ee852a00601b0908b180d643730c47:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/16054789a3ee852a00601b0908b180d643730c47 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/16b0da248a9bea62e1f2a41ba2095979abaf7fd8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/16b0da248a9bea62e1f2a41ba2095979abaf7fd8 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/16d79500cb3f808c6de79109c4b1a8e25c65d14f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/16d79500cb3f808c6de79109c4b1a8e25c65d14f \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/170ade63f1f603faf14c573ebef71d9b5bc18abe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/170ade63f1f603faf14c573ebef71d9b5bc18abe \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/18240eceb879382b6e96097114486e0c3cdc4d54:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/18240eceb879382b6e96097114486e0c3cdc4d54 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/18b7e718be625c62969bcf8aba0202debf64e77c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/18b7e718be625c62969bcf8aba0202debf64e77c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/18b855b8317ccb3cf59b6541229a50395f665b92:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/18b855b8317ccb3cf59b6541229a50395f665b92 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/18d5a8035b5a6b359ad0146f0ad3aba0227cf1be:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/18d5a8035b5a6b359ad0146f0ad3aba0227cf1be \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/195f1cc3a40f27b6795ac69c8288725b501ef0a2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/195f1cc3a40f27b6795ac69c8288725b501ef0a2 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/19c517734822a34f2d0aee3859f1d5cb58deb517:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/19c517734822a34f2d0aee3859f1d5cb58deb517 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/19fdcc320e0dcd854545f3c7257155f94468629a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/19fdcc320e0dcd854545f3c7257155f94468629a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1a19f9977f70c5dea136141d3f80635cbc478e25:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1a19f9977f70c5dea136141d3f80635cbc478e25 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1a2fbe86fc7cb58388e50095859ed7634db38780:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1a2fbe86fc7cb58388e50095859ed7634db38780 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1a33cd725a757ced45d88ddc641ec2ef2acbfe59:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1a33cd725a757ced45d88ddc641ec2ef2acbfe59 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1a4dcefdc6eb8d3e3d204aff1c90439a5d4cae17:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1a4dcefdc6eb8d3e3d204aff1c90439a5d4cae17 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1c194c935825da793ba9f29840290b52b800355f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1c194c935825da793ba9f29840290b52b800355f \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1c1da477e9c71f4794668a0a82f14d5bcd6ab0f9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1c1da477e9c71f4794668a0a82f14d5bcd6ab0f9 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1c755041019f63049d6606db743de448b5a4cb06:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1c755041019f63049d6606db743de448b5a4cb06 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1c779c92895d33b52e103bf238a690566a891a4e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1c779c92895d33b52e103bf238a690566a891a4e \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1cc9ddea8355441287e6305084e7c97fd43fbb0b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1cc9ddea8355441287e6305084e7c97fd43fbb0b \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1cebf8e2ef0afe349a66a2c1e1e84832c6f72967:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1cebf8e2ef0afe349a66a2c1e1e84832c6f72967 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1d1d410da91b213186c987ffea6633cc4271727e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1d1d410da91b213186c987ffea6633cc4271727e \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1d3ca84b75c28945ba61a448bcdd3a067ea19205:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1d3ca84b75c28945ba61a448bcdd3a067ea19205 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1e703b31732676e1b708d1d7068e58f901746dd5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1e703b31732676e1b708d1d7068e58f901746dd5 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1e92e9ad4ffddc56da5386f32092151adbc94a0c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1e92e9ad4ffddc56da5386f32092151adbc94a0c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1ed03c5cd3f6aae12731cee614f3a08f8cede0c6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1ed03c5cd3f6aae12731cee614f3a08f8cede0c6 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/1f1cdc5ffbc2dbadf0e1ac67b46edd7bdd0aba48:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1f1cdc5ffbc2dbadf0e1ac67b46edd7bdd0aba48 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2022e543c7aaea1a0d9a97d2226b4f2e8fa87b8c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2022e543c7aaea1a0d9a97d2226b4f2e8fa87b8c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/21f9744415ccd13217aae6ef787e3260948638ca:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/21f9744415ccd13217aae6ef787e3260948638ca \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/22b870b82d1ba871a6d5c9963295bad3ed04037a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/22b870b82d1ba871a6d5c9963295bad3ed04037a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/22d7b301ecf3337916a8a559b018f53dfb43a809:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/22d7b301ecf3337916a8a559b018f53dfb43a809 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/237c0470314794e445ed430d980b63aa88b7d5ec:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/237c0470314794e445ed430d980b63aa88b7d5ec \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/246850181d8bfb89ea9c720fd991ed01231db537:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/246850181d8bfb89ea9c720fd991ed01231db537 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/25209f34e171f974355dbda06656dc6c0e7af9fe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25209f34e171f974355dbda06656dc6c0e7af9fe \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/25613dfe4c1b66be6e2d45424f6181931d04ffac:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25613dfe4c1b66be6e2d45424f6181931d04ffac \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/25bc1fcf128d95a2959a02ba18418f3d6eae510f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25bc1fcf128d95a2959a02ba18418f3d6eae510f \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2704f7db05660b61e47ace5ca2b98f5a52e7cb17:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2704f7db05660b61e47ace5ca2b98f5a52e7cb17 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/27b3bc2569ef0a9c395e49669106ecbd160a7d0c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/27b3bc2569ef0a9c395e49669106ecbd160a7d0c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/281262177d2f2f51e01448256919049cc52b4e74:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/281262177d2f2f51e01448256919049cc52b4e74 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/287fc0e63131d538286712bdc703a359346d393e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/287fc0e63131d538286712bdc703a359346d393e \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/28a1f1528d71a2e9e23db079a553de1d39c682e3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/28a1f1528d71a2e9e23db079a553de1d39c682e3 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/28ae3c9cb89fa290f48b76c3f1afcb8a6895d1fc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/28ae3c9cb89fa290f48b76c3f1afcb8a6895d1fc \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2924302b6f14988bf364a8027eab5cf973eadb4a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2924302b6f14988bf364a8027eab5cf973eadb4a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2926c5e77679364165138f08e2c58d9fa493458a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2926c5e77679364165138f08e2c58d9fa493458a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2947a341181566102b892ef74e76d788da78dfd8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2947a341181566102b892ef74e76d788da78dfd8 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2a349407e4a8f6b29e090908e4c2c18b8ec7c8b7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2a349407e4a8f6b29e090908e4c2c18b8ec7c8b7 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2ab7bd0a0d4f2795c1b90d29d0dfe824ceceaa23:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ab7bd0a0d4f2795c1b90d29d0dfe824ceceaa23 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2af03405877f4521d5d1bf9978c3ec8a0cd90e60:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2af03405877f4521d5d1bf9978c3ec8a0cd90e60 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2b1832861cc87b44ca765967d38bf3a7d261530f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2b1832861cc87b44ca765967d38bf3a7d261530f \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2bef48bb12f2b6b3949fb9d5e3aaf6863517ea88:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2bef48bb12f2b6b3949fb9d5e3aaf6863517ea88 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2c452e74c265fcd5001ecbf3f4b58c5d5603df31:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2c452e74c265fcd5001ecbf3f4b58c5d5603df31 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2c50bc03c66a29e0da8ec7b1d403c96cdedc08c0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2c50bc03c66a29e0da8ec7b1d403c96cdedc08c0 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2c54a580c43014fefbc252e5b81ef89104aec61b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2c54a580c43014fefbc252e5b81ef89104aec61b \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2d7c0ba17ac8f4193ce8cdd7672d6e7bb7ad3377:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2d7c0ba17ac8f4193ce8cdd7672d6e7bb7ad3377 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2dbf125de3670952d7c351657d7ac3592cafd658:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2dbf125de3670952d7c351657d7ac3592cafd658 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2dd3a5707d75f8ebaf645527d2b0e3da35ea55ca:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2dd3a5707d75f8ebaf645527d2b0e3da35ea55ca \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2e053916f0cd7d6bd57d80b7879e4eddee75836d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2e053916f0cd7d6bd57d80b7879e4eddee75836d \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2e604dac0b465165b40959df6cbd6c27d1d66abd:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2e604dac0b465165b40959df6cbd6c27d1d66abd \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2e9d8bb08f80ddbb7985a9678b9f0d9929295879:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2e9d8bb08f80ddbb7985a9678b9f0d9929295879 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2ec6fd69c8af18f6b3431ce31a6c9ec52d0b4355:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ec6fd69c8af18f6b3431ce31a6c9ec52d0b4355 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2ec7b925954d6c14842de2119ec26496e5c03105:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ec7b925954d6c14842de2119ec26496e5c03105 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2ed708e42ee6e4f2e79cdea10fcbe0b030c60902:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ed708e42ee6e4f2e79cdea10fcbe0b030c60902 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2ee6bae8d2136b75d738cb1dfe57134345333098:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ee6bae8d2136b75d738cb1dfe57134345333098 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2f07987c4d6644fd938cf80f22f54100077db832:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2f07987c4d6644fd938cf80f22f54100077db832 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2f6e83370ee2c0228c2e65c6595dc7798e85b15e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2f6e83370ee2c0228c2e65c6595dc7798e85b15e \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/2fb9ea9441126b4168970ea5fc3c47ab5ae1a2cb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2fb9ea9441126b4168970ea5fc3c47ab5ae1a2cb \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3075226fab428570db9fba7eca593170558a1be5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3075226fab428570db9fba7eca593170558a1be5 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/308bb9bda34bb58c36074a107b1dce9cb33beb5c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/308bb9bda34bb58c36074a107b1dce9cb33beb5c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/309658a08488124d5f28c7b4f60b94ec15b9c148:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/309658a08488124d5f28c7b4f60b94ec15b9c148 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/310ce3ae67a8f0c2363d68b2f8d84fdd13aaaec9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/310ce3ae67a8f0c2363d68b2f8d84fdd13aaaec9 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/313da688adf649a7b939a3f099c85cc57e56c60f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/313da688adf649a7b939a3f099c85cc57e56c60f \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/31499ae58f25952f6b626407479aa9cefeb8e7bd:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31499ae58f25952f6b626407479aa9cefeb8e7bd \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/315a4c120733022a631bf1313c02be9c6909ab44:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/315a4c120733022a631bf1313c02be9c6909ab44 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3190e8c9172dad2a1aa7de626658d896663ed4a6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3190e8c9172dad2a1aa7de626658d896663ed4a6 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/31ac304c5b26f08ba768c099d3f001bd560827bb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31ac304c5b26f08ba768c099d3f001bd560827bb \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/31d4d72986b5dbf1fdcd57d1383b76530bc6b6be:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31d4d72986b5dbf1fdcd57d1383b76530bc6b6be \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/31dece239864d3520f52a8b2ae1b4ee045f06bc8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31dece239864d3520f52a8b2ae1b4ee045f06bc8 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/31f71c049f1ae5dd6cbf27feef3849443c658d31:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31f71c049f1ae5dd6cbf27feef3849443c658d31 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/32365a0236efccde2c744bb66aa8526930c012e4:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/32365a0236efccde2c744bb66aa8526930c012e4 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/32374d85eff3363d527a595027288e50cbbf7dd1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/32374d85eff3363d527a595027288e50cbbf7dd1 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/324385edc8d807c17c6dff408fa0fdb8ee3b13dc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/324385edc8d807c17c6dff408fa0fdb8ee3b13dc \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/325ada9526b1f24184ae3af63105290b1fa91176:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/325ada9526b1f24184ae3af63105290b1fa91176 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/325b0b67f1269b1bfa5d844cbab33cd53a36835b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/325b0b67f1269b1bfa5d844cbab33cd53a36835b \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3264015333c4e9502ebf16c6726b01adf26d732b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3264015333c4e9502ebf16c6726b01adf26d732b \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/32866c16e12dcb7da8df49dfec272c4ef2b183ae:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/32866c16e12dcb7da8df49dfec272c4ef2b183ae \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/32a24a2e18f317e6f4af5c25a5084dd7b17a88e8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/32a24a2e18f317e6f4af5c25a5084dd7b17a88e8 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/32ee434713ea2ce1c7189b9ffdc0b145f8161a6a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/32ee434713ea2ce1c7189b9ffdc0b145f8161a6a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3307acb34496acdc07971118589ccd7c7183b19a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3307acb34496acdc07971118589ccd7c7183b19a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3358462a04e13f07def7c7ad9b02f538d5e0d8eb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3358462a04e13f07def7c7ad9b02f538d5e0d8eb \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/34711ec7593657e614362cd91812cc095f50d51c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/34711ec7593657e614362cd91812cc095f50d51c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3497586c3769544731dfbfc0e1acb4ff45371ab5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3497586c3769544731dfbfc0e1acb4ff45371ab5 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/35049d6a09eb704925b4749c27aca1882bbda188:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/35049d6a09eb704925b4749c27aca1882bbda188 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3543e984ec122f1e675be4b1741f7807b27be945:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3543e984ec122f1e675be4b1741f7807b27be945 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/354c4f909f19ec55142d3e11850dc1322c3a57ba:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/354c4f909f19ec55142d3e11850dc1322c3a57ba \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3567610f1b9dd065cbf8839505b7b302a43b9fa7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3567610f1b9dd065cbf8839505b7b302a43b9fa7 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/35ce938520a7e2667dd730780daba3ccc791909f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/35ce938520a7e2667dd730780daba3ccc791909f \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/363a043b6feff5d0dcb9765d162f9403cbe0dddb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/363a043b6feff5d0dcb9765d162f9403cbe0dddb \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/36bcdd585c945cd6257a705cb90f19cb9f827b6f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/36bcdd585c945cd6257a705cb90f19cb9f827b6f \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/36ecdafeec12187c78824a65f0f1062355557b80:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/36ecdafeec12187c78824a65f0f1062355557b80 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/36f18ff46c1cfe5d0fafa2704fb72c4cc490c1e5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/36f18ff46c1cfe5d0fafa2704fb72c4cc490c1e5 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/37c7129c4b832a1c3f6ae4e97a273f87d8b50112:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/37c7129c4b832a1c3f6ae4e97a273f87d8b50112 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/37f120bfca1b162831ddbad2850d58db3204218d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/37f120bfca1b162831ddbad2850d58db3204218d \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/37f603d7fa7b06c2ffb79621cbb0e4466ef0b964:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/37f603d7fa7b06c2ffb79621cbb0e4466ef0b964 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3897cdebb6a02bb41109f114ab54b3c21a677975:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3897cdebb6a02bb41109f114ab54b3c21a677975 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/39691ee2e77baec0584bc18611b510d93ce6dc92:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/39691ee2e77baec0584bc18611b510d93ce6dc92 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/39ad3110b8f84821ca22cfbd995914f2149521d2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/39ad3110b8f84821ca22cfbd995914f2149521d2 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/39c04f660d17402f516923277fe706e1b655493a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/39c04f660d17402f516923277fe706e1b655493a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/39ee312de09151b586d8dc14568abc6634120816:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/39ee312de09151b586d8dc14568abc6634120816 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3a1d5359d8a212512cddbdf9df52f050ba884603:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3a1d5359d8a212512cddbdf9df52f050ba884603 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3a32f54a5183f124104420faae402ae4dc9da4fb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3a32f54a5183f124104420faae402ae4dc9da4fb \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3a9f088daecd6380ce1cb5607a00e182af8eafe4:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3a9f088daecd6380ce1cb5607a00e182af8eafe4 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3aa617ec4f6d727ddc123b6e7ca38c0b1e2f67b9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3aa617ec4f6d727ddc123b6e7ca38c0b1e2f67b9 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3b46c8aa2f1aef3f32b22624bece5f72273410dc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3b46c8aa2f1aef3f32b22624bece5f72273410dc \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3b478495053420d5ddbf568c21c5c4375f04b504:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3b478495053420d5ddbf568c21c5c4375f04b504 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3bd6ce34a06cd16c78f2f31c4b0a540478bbf5e2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3bd6ce34a06cd16c78f2f31c4b0a540478bbf5e2 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3c001eb823acea5349b6178cb963d99c7101348c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c001eb823acea5349b6178cb963d99c7101348c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3c0515da1690712f3f44151b79ea9d895ec5a42c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c0515da1690712f3f44151b79ea9d895ec5a42c \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3c4fe0e8fffe4143cca3c3b84495af53ad329be2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c4fe0e8fffe4143cca3c3b84495af53ad329be2 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3c51cb81d84cb0e20a5ef55776c6745000a44d25:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c51cb81d84cb0e20a5ef55776c6745000a44d25 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3c795399a7bfe6ca5e59d7cbb5e508bd03688898:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c795399a7bfe6ca5e59d7cbb5e508bd03688898 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3cc0028efaf3807a265970117d419d94bbc2ec41:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3cc0028efaf3807a265970117d419d94bbc2ec41 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3d59fb1a1e8f00a52bbd569219016115aca21d43:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d59fb1a1e8f00a52bbd569219016115aca21d43 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3d7989049702ce35be3cb1b12e64751d81893b13:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d7989049702ce35be3cb1b12e64751d81893b13 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3d83851048f1b416f6f88994389c1ccb3fb628ff:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d83851048f1b416f6f88994389c1ccb3fb628ff \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3d8853ea57cfae25840075514ea2c1a020afe193:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d8853ea57cfae25840075514ea2c1a020afe193 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/3f42f70b8867153575bbd7994d4e0401517e0b29:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3f42f70b8867153575bbd7994d4e0401517e0b29 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/402745e4e31a2cbe5cf0780e2f8ca35ce76464a2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/402745e4e31a2cbe5cf0780e2f8ca35ce76464a2 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/405126a2845b9a2ceb9bf3f4bc35333ba1bdbac9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/405126a2845b9a2ceb9bf3f4bc35333ba1bdbac9 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/40804c3e57f042fbfaa7ca60a7cd706a7b1c7503:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/40804c3e57f042fbfaa7ca60a7cd706a7b1c7503 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/4080f764379102a441a5f03b1b68150173ec81a3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4080f764379102a441a5f03b1b68150173ec81a3 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/40c69dba8af6b22bc608a899cb3b7de215f7d06d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/40c69dba8af6b22bc608a899cb3b7de215f7d06d \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/410833aee3a4a7e9d22f5961dfb9164317e8e207:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/410833aee3a4a7e9d22f5961dfb9164317e8e207 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/411f2706e7f5080f2ac5a1d92e9dd4f8acbcaa89:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/411f2706e7f5080f2ac5a1d92e9dd4f8acbcaa89 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/41532dcaa7d3ee4df14532e19787c228c3ba2249:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/41532dcaa7d3ee4df14532e19787c228c3ba2249 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/4199887c66509f418d295bc96e2d54a362e82618:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4199887c66509f418d295bc96e2d54a362e82618 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/41aa38e5f293933d730424cd35722cd6ed7e5bd6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/41aa38e5f293933d730424cd35722cd6ed7e5bd6 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/41ca80073d759c9c7d9656b7dcf10390376d7410:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/41ca80073d759c9c7d9656b7dcf10390376d7410 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/422c2789b32e5aeca9b6e672410bdf6f24b140eb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/422c2789b32e5aeca9b6e672410bdf6f24b140eb \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/425ab134531a49736f370161fa8a5aa5b7f51eb1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/425ab134531a49736f370161fa8a5aa5b7f51eb1 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/428857390cf4e208ee7e9a5a2499da287ad3ca8a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/428857390cf4e208ee7e9a5a2499da287ad3ca8a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/42aa6e3a76d5ce1ff6c6f6fdeeeddde1f56b8007:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42aa6e3a76d5ce1ff6c6f6fdeeeddde1f56b8007 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/42bffe53493fbac11875650f4c26742099006cc8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42bffe53493fbac11875650f4c26742099006cc8 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/42c0a3afc249f0076e68166f59a26f264821de64:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42c0a3afc249f0076e68166f59a26f264821de64 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/42ca275b0edc706cb417a881f5a8b89c04817183:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42ca275b0edc706cb417a881f5a8b89c04817183 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/42e69c694e72af57606514a5da1436dd7f5c483a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42e69c694e72af57606514a5da1436dd7f5c483a \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/42ffdd88f967782c15eed37ecf026ad0fc6353d3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42ffdd88f967782c15eed37ecf026ad0fc6353d3 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/4308afa9d922bbfebab020badd569f1470f18bae:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4308afa9d922bbfebab020badd569f1470f18bae \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/434217c6ff1570578c2b8a7699e6dc9ab3cecd9e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/434217c6ff1570578c2b8a7699e6dc9ab3cecd9e \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/43661d30c335a3268cb29e92e29cd307ee1b4fbe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/43661d30c335a3268cb29e92e29cd307ee1b4fbe \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/436f4a74cf93256a012855345bf2040b6be70c07:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/436f4a74cf93256a012855345bf2040b6be70c07 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/43b7aa5c20bb1eeadf4c71ca2b8d22ae9986db73:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/43b7aa5c20bb1eeadf4c71ca2b8d22ae9986db73 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/441a915ae1ea2da1e8b96ad63ce0e1092847b979:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/441a915ae1ea2da1e8b96ad63ce0e1092847b979 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/4445e73e00a5a716ac543037189542c4cde677d7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4445e73e00a5a716ac543037189542c4cde677d7 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/445829d9021d27b4aaa71cdd71da271d6b31e1aa:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/445829d9021d27b4aaa71cdd71da271d6b31e1aa \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/445cd210c476b67c29e5506af9be08095616ca67:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/445cd210c476b67c29e5506af9be08095616ca67 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/453b5a5dad2b3c93cb3c148f14feffa85ad129a4:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/453b5a5dad2b3c93cb3c148f14feffa85ad129a4 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/45c7b9e559a84a1330667a6ccb53c0700e9fcae9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/45c7b9e559a84a1330667a6ccb53c0700e9fcae9 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/461748b3f483fc2dcfe52cefadd5f59dc5f0449f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/461748b3f483fc2dcfe52cefadd5f59dc5f0449f \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/462cbf4028a8937796055b85442b4bc47619003e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/462cbf4028a8937796055b85442b4bc47619003e \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/473c8696fb93a6de72b85fa9573d853528476ff6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/473c8696fb93a6de72b85fa9573d853528476ff6 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/47df3a2ca3bcd365c165ddc69dfeb31bf38b255b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47df3a2ca3bcd365c165ddc69dfeb31bf38b255b \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/47ead5db13243577c688250364cc7be579dc3253:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47ead5db13243577c688250364cc7be579dc3253 \
vendor/google/shiba/proprietary/vendor/firmware/carrierconfig/confseqs/47fa06e9059928c7b33e9a5be5a66ba30d1ae0f2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47fa06e9059928c7b33e9a5be5a66ba30d1ae0f2 \