-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpanther-vendor.mk
2214 lines (2207 loc) · 361 KB
/
panther-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/panther
PRODUCT_COPY_FILES += \
vendor/google/panther/proprietary/product/etc/CarrierSettings/1and1_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/1and1_de.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/2degrees_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/2degrees_nz.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/321communications_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/321communications_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/48_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/48_ie.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/4ka_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/4ka_sk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/a1_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/a1_bg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_bg.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/a1_hr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_hr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/a1_mk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_mk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/a1_si.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_si.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/ahamo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ahamo_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/airbus_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/airbus_de.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/airbus_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/airbus_fr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/airtel_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/airtel_in.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/ais_th.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ais_th.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/altice_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/altice_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/alticeroaming_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/alticeroaming_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/andorratelecom_ad.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/andorratelecom_ad.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/antel_uy.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/antel_uy.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/appalachian_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/appalachian_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/apt_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/apt_tw.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/asda_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/asda_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/assurance_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/assurance_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/astca_as.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/astca_as.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/astoundbroadband_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/astoundbroadband_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/att5g_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att5g_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/att5gsa_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att5gsa_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/att_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att_mx.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/att_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/attbootstrap_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/attbootstrap_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/attmvnos_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/attmvnos_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/axis_id.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/axis_id.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/base_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/base_be.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/batelco_bh.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/batelco_bh.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/bell_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bell_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/bite_lt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bite_lt.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/bite_lv.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bite_lv.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/bluegrass_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bluegrass_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/bob_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bob_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/boost_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/boost_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/boosttmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/boosttmo_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/bouygues_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bouygues_fr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/bsnl_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bsnl_in.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/btb_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/btb_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/btc_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/btc_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cablemovil_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cablemovil_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/carolinawest_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/carolinawest_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/carrier_list.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/carrier_list.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/celcom_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/celcom_my.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cellcom_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcom_il.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cellcom_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcom_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cellcommno_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcommno_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/celluarone_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/celluarone_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/chatr_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/chatr_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/chinamobile_hk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/chinamobile_hk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cht_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cht_tw.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cityfone_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cityfone_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/claro_br.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/claro_br.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/claro_pr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/claro_pr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/congstar_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/congstar_de.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/consumercellularatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/consumercellularatt_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/consumercellulartmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/consumercellulartmo_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/coopvoce_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/coopvoce_it.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/coppervalley_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/coppervalley_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/coriolis_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/coriolis_fr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cox_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cox_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cricket5g_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cricket5g_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cricket_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cricket_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cspire_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cspire_nl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/cspire_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cspire_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/default.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/default.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/digi_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digi_hu.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/digi_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digi_my.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/digi_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digi_ro.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/digimobil_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digimobil_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/dish5gsa_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dish5gsa_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/dishatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dishatt_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/dito_ph.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dito_ph.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/dna_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dna_fi.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/docomo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomo_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/docomomvno_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomomvno_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/docomopacific_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomopacific_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/dtac_th.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dtac_th.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/du_ae.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/du_ae.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/eastlink_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eastlink_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/ee_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ee_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/eeyoumobility_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eeyoumobility_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/eir_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eir_ie.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/elisa1_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/elisa1_fi.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/elisa2_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/elisa2_fi.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/elisa_ee.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/elisa_ee.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/enreach_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/enreach_nl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/eplus_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eplus_de.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/erate_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/erate_no.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/esn_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/esn_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/etisalat_ae.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/etisalat_ae.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/euskaltel_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/euskaltel_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/evolve_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/evolve_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/fastweb_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fastweb_it.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/fet_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fet_tw.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/fi_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fi_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/fi_tmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fi_tmo_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/fido_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fido_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/finetwork_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/finetwork_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/firstnet_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnet_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/firstnetpacific2_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnetpacific2_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/firstnetpacific_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnetpacific_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/fizz_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fizz_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/fl1_li.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fl1_li.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/free_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_fr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/free_gp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_gp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/free_mq.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_mq.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/free_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_re.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/freedommobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/freedommobile_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/gamma_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/gamma_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/gci_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/gci_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/gibtel_gi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/gibtel_gi.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/giffgaff_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/giffgaff_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/giga_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/giga_sg.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/globe_ph.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/globe_ph.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/guuk_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/guuk_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/h3_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/h3_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/h3_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_ie.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/h3_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_se.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/h3g27202_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3g27202_ie.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/halebop_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/halebop_se.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/helium_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/helium_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/help_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/help_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/homobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/homobile_it.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/hotmobile_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/hotmobile_il.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/ice_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ice_no.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/idea_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/idea_in.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/idmobile_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/idmobile_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/iliad_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/iliad_it.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/inland_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/inland_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/iwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/iwireless_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/jazztel_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/jazztel_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/jcommobile_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/jcommobile_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/kddi5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddi5gsa_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/kddi_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddi_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/kddimvno5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddimvno5gsa_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/kddimvno_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddimvno_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/kena_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kena_it.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/koodo_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/koodo_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/kpn_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kpn_nl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lebara_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lebara_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_fr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lebara_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lebara_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_nl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/liberty_pr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/liberty_pr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lifecell_ua.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lifecell_ua.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/linemo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/linemo_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/llamaya_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/llamaya_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lmt_lv.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lmt_lv.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lowi_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lowi_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/luckymobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/luckymobile_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lum_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lum_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lyca_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lyca_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lyca_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lyca_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lycamobile_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lycamobile_pt.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/lycamobile_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lycamobile_se.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/m1_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/m1_sg.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/manxcontract_im.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/manxcontract_im.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/manxprepaid_im.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/manxprepaid_im.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/masmovil_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/masmovil_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/maxis_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/maxis_my.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/mediacom_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mediacom_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/melita_mt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/melita_mt.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/meo_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/meo_pt.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/metropcs_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/metropcs_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/mobifone_vn.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mobifone_vn.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/mobily_sa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mobily_sa.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/monacotelecom_mc.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/monacotelecom_mc.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/movistar_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/movistar_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/movistar_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/movistar_mx.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/mucho_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mucho_ch.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/mvnoconnect_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mvnoconnect_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/netcomgroup_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/netcomgroup_fr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/nexphone_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nexphone_ch.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/nextech_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nextech_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/no_sim.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/no_sim.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/nos_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nos_pt.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/nova_gr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nova_gr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/nova_is.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nova_is.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/o2_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2_cz.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/o2_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2_de.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/o2_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2_sk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/o2postpaid_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2postpaid_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/o2prepaid_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2prepaid_de.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/o2prepaid_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2prepaid_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/omantel_om.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/omantel_om.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/one_me.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/one_me.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/onecall_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/onecall_no.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/ooredoo_kw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ooredoo_kw.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/ooredoo_qa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ooredoo_qa.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/optimera_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/optimera_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/optus_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/optus_au.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/orange_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_be.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/orange_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/orange_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_fr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/orange_gp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_gp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/orange_lu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_lu.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/orange_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_pl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/orange_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_re.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/orange_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_ro.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/orange_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_sk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/others.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/others.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/paradisemobile_bm.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/paradisemobile_bm.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/partner_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/partner_il.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/pcmobilebell_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pcmobilebell_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/pelephone_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pelephone_il.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/pepephone_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pepephone_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/play_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/play_pl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/plintron_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/plintron_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/plus_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/plus_pl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/post_lu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/post_lu.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/postemobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/postemobile_it.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/povo5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/povo5gsa_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/povo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/povo_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/proximus_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/proximus_be.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/publicmobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/publicmobile_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/pwg_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pwg_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/qlink_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/qlink_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/r_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/r_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/racc_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/racc_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/rakuten_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rakuten_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/reachmobileatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/reachmobileatt_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/redpocketatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/redpocketatt_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/redpockettmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/redpockettmo_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/republicwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/republicwireless_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/rjio_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rjio_in.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/rogers5g_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogers5g_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/rogers_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogers_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/rogerswpn_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogerswpn_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/salt_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/salt_ch.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/salt_li.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/salt_li.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/sasktel_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sasktel_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/sfr_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sfr_fr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/shaw_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/shaw_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/simba_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/simba_sg.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/siminn_is.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/siminn_is.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/simple_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/simple_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/simyo_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/simyo_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/singtel_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/singtel_sg.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/skinny_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/skinny_nz.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/skt_kr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/skt_kr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/sky_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sky_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/skylo_zz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/skylo_zz.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/smart_ph.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smart_ph.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/smartfren_id.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smartfren_id.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/smartone_hk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smartone_hk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/smarty_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smarty_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/softbank_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/softbank_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/solomobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/solomobile_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/spark_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spark_nz.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/spectrum_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spectrum_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/spectrummso_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spectrummso_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/spectrummsotest_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spectrummsotest_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/spmtelecom_pm.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spmtelecom_pm.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/sprint_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprint_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/sprintprepaid_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprintprepaid_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/sprintwholesale_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprintwholesale_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/spusu_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spusu_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/ssimobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ssimobile_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/starhub_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/starhub_sg.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/stc_bh.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/stc_bh.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/stc_kw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/stc_kw.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/stc_sa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/stc_sa.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/strata_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/strata_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/sunrise_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sunrise_ch.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/superdrug_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/superdrug_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/sweno_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sweno_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/swisscom_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/swisscom_ch.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/swisscom_li.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/swisscom_li.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/talkmobile_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/talkmobile_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tango_lu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tango_lu.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tango_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tango_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tbaytel_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tbaytel_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tchibo_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tchibo_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tchibo_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tchibo_de.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tdc_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tdc_dk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telavox_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telavox_se.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telcel_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telcel_mx.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telco_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telco_re.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tele2_ee.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_ee.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tele2_lt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_lt.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tele2_lv.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_lv.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tele2_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_se.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telecable2_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telecable2_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telekom_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_de.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telekom_gr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_gr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telekom_hr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_hr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telekom_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_hu.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telekom_me.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_me.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telekom_mk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_mk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telekom_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_pl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telekom_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_ro.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telekom_si.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_si.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telekom_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_sk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telemach_hr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telemach_hr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telemach_si.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telemach_si.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telenet_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenet_be.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telenor_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_dk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telenor_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_no.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telenor_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_se.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telia_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_dk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telia_ee.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_ee.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telia_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_fi.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telia_lt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_lt.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telia_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_no.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telia_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_se.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telkomsel_id.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telkomsel_id.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tello_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tello_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telstra_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telstra_au.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/telus_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telus_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tesco_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tesco_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/test001_zz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/test001_zz.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/three_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/three_dk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tim_br.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tim_br.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tim_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tim_it.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tmobile_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tmobile_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_cz.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tmobile_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_nl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tmobile_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tmomvno_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmomvno_nl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tmomvno_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmomvno_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tracfoneatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfoneatt_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tracfonetmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfonetmo_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tracfoneverizon_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfoneverizon_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/truemove_th.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/truemove_th.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/truphone_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/truphone_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/truphone_zz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/truphone_zz.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/tstar_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tstar_tw.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/turkcell_tr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/turkcell_tr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/turktelekom_tr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/turktelekom_tr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/twm_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/twm_tw.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/u264a_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264a_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/u264a_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264a_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/u264ab_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264ab_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/u264ao_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264ao_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/u264ap_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264ap_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/ultra_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ultra_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/umobile_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/umobile_my.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/unifi_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/unifi_my.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/unionwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/unionwireless_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/unitedwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/unitedwireless_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/uqmobile5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/uqmobile5gsa_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/uqmobile_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/uqmobile_jp.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/uscc_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/uscc_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/verizon_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/verizon_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/verymobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/verymobile_it.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/viaero_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/viaero_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/videotron_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/videotron_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/viettel_vn.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/viettel_vn.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vimla_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vimla_se.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vinaphone_vn.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vinaphone_vn.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/virgin_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_ca.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/virgin_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/virgin_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/virgintelco_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgintelco_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/visible_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/visible_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/visiblev_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/visiblev_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/viti_pf.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/viti_pf.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vivacom_bg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vivacom_bg.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vivo_br.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vivo_br.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_au.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_cz.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_de.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_gb.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_gr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_gr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_hu.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_ie.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_in.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_it.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_nl.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_nz.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_om.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_om.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_pt.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_qa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_qa.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_ro.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/vodafone_tr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_tr.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/walmart_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/walmart_mx.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/webbing_hk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/webbing_hk.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/windtre_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/windtre_it.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/xfinity2_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/xfinity2_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/xfinity_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/xfinity_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/xfinitymso_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/xfinitymso_us.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/yes_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yes_my.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/yesss_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yesss_at.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/yettel_bg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yettel_bg.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/yettel_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yettel_hu.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/yoigo_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yoigo_es.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/zain_bh.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zain_bh.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/zain_kw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zain_kw.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/zain_sa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zain_sa.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/zeop_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zeop_re.pb \
vendor/google/panther/proprietary/product/etc/CarrierSettings/ztar_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ztar_us.pb
PRODUCT_COPY_FILES += \
vendor/google/panther/proprietary/product/etc/ambient/matcher_tah.leveldb:$(TARGET_COPY_OUT_PRODUCT)/etc/ambient/matcher_tah.leveldb \
vendor/google/panther/proprietary/product/etc/felica/common.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/common.cfg \
vendor/google/panther/proprietary/product/etc/felica/mfm.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/mfm.cfg \
vendor/google/panther/proprietary/product/etc/felica/mfs.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/mfs.cfg \
vendor/google/panther/proprietary/product/etc/firmware/music_detector.descriptor:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.descriptor \
vendor/google/panther/proprietary/product/etc/firmware/music_detector.sound_model:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.sound_model \
vendor/google/panther/proprietary/product/etc/firmware/music_detector.sound_model_2:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.sound_model_2 \
vendor/google/panther/proprietary/product/etc/firmware/music_detector.sound_model_tflite:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.sound_model_tflite \
vendor/google/panther/proprietary/product/etc/permissions/androidx.camera.extensions.impl.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/androidx.camera.extensions.impl.xml \
vendor/google/panther/proprietary/product/etc/permissions/com.android.omadm.service.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.omadm.service.xml \
vendor/google/panther/proprietary/product/etc/permissions/com.android.sdm.plugins.connmo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.connmo.xml \
vendor/google/panther/proprietary/product/etc/permissions/com.android.sdm.plugins.dcmo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.dcmo.xml \
vendor/google/panther/proprietary/product/etc/permissions/com.android.sdm.plugins.diagmon.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.diagmon.xml \
vendor/google/panther/proprietary/product/etc/permissions/com.google.android.hardwareinfo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.google.android.hardwareinfo.xml \
vendor/google/panther/proprietary/product/etc/permissions/com.google.omadm.trigger.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.google.omadm.trigger.xml \
vendor/google/panther/proprietary/product/etc/permissions/com.verizon.apn.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.verizon.apn.xml \
vendor/google/panther/proprietary/product/etc/permissions/com.verizon.services.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.verizon.services.xml \
vendor/google/panther/proprietary/product/etc/permissions/features-verizon.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/features-verizon.xml \
vendor/google/panther/proprietary/product/etc/permissions/privapp-permissions-google-p-lineage.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/privapp-permissions-google-p-lineage.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/GoogleCamera_6gb_or_more_ram.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/GoogleCamera_6gb_or_more_ram.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/allowlist_com.android.omadm.service.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/allowlist_com.android.omadm.service.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/allowlist_com.shannon.imsservice.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/allowlist_com.shannon.imsservice.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/google-hiddenapi-package-whitelist.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/google-hiddenapi-package-whitelist.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/nexus.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/nexus.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/pixel_experience_2017.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2017.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/pixel_experience_2018.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2018.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/pixel_experience_2019.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2019.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/pixel_experience_2019_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2019_midyear.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/pixel_experience_2020.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2020.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/pixel_experience_2020_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2020_midyear.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/pixel_experience_2021.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2021.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/pixel_experience_2021_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2021_midyear.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/pixel_experience_2022.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2022.xml \
vendor/google/panther/proprietary/product/etc/sysconfig/pixel_experience_2022_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2022_midyear.xml \
vendor/google/panther/proprietary/system_ext/etc/default-permissions/default-permissions-euiccpixel.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/default-permissions/default-permissions-euiccpixel.xml \
vendor/google/panther/proprietary/system_ext/etc/init/vendor.google.edgetpu_app_service@1.0-service.rc:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/init/vendor.google.edgetpu_app_service@1.0-service.rc \
vendor/google/panther/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/panther/proprietary/system_ext/etc/permissions/com.android.omadm.radioconfig.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.omadm.radioconfig.xml \
vendor/google/panther/proprietary/system_ext/etc/permissions/com.android.qns.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.qns.xml \
vendor/google/panther/proprietary/system_ext/etc/permissions/com.google.android.camera.experimental2022_system.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.android.camera.experimental2022_system.xml \
vendor/google/panther/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/panther/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/panther/proprietary/system_ext/etc/permissions/com.google.euiccpixel.permissions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.euiccpixel.permissions.xml \
vendor/google/panther/proprietary/system_ext/etc/permissions/com.google.euiccpixel.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.euiccpixel.xml \
vendor/google/panther/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/panther/proprietary/system_ext/etc/permissions/com.shannon.imsservice.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.shannon.imsservice.xml \
vendor/google/panther/proprietary/system_ext/etc/permissions/com.shannon.rcsservice.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.shannon.rcsservice.xml \
vendor/google/panther/proprietary/system_ext/etc/permissions/google-ril.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/google-ril.xml \
vendor/google/panther/proprietary/system_ext/etc/permissions/oemrilhook.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/oemrilhook.xml \
vendor/google/panther/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/panther/proprietary/system_ext/etc/permissions/vzw_mvs_permissions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/vzw_mvs_permissions.xml \
vendor/google/panther/proprietary/system_ext/etc/public.libraries-google.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/public.libraries-google.txt \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/DKA_RC7_DVT.in:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/DKA_RC7_DVT.in \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/DKA_RC7_DVT.up:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/DKA_RC7_DVT.up \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/DKA_RC7_EVT.up:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/DKA_RC7_EVT.up \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/DKA_RC7_P22_DVT.in:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/DKA_RC7_P22_DVT.in \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/DKA_RC7_P22_DVT.up:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/DKA_RC7_P22_DVT.up \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/DKA_RC7_P22_EVT.in:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/DKA_RC7_P22_EVT.in \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/DKA_RC7_P22_EVT.up:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/DKA_RC7_P22_EVT.up \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/esim-full-ofl-v1.img:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/esim-full-ofl-v1.img \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/esim-full-v0-security.img:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/esim-full-v0-security.img \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/esim-full-v0.img:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/esim-full-v0.img \
vendor/google/panther/proprietary/system_ext/priv-app/EuiccSupportPixel/esim-full-v1.img:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/esim-full-v1.img
PRODUCT_PACKAGES += \
libdmengine \
libdmjavaplugin \
libedgetpu_dba.google \
libmediaadaptor \
com.google.edgetpu_app_service-V3-ndk \
com.google.edgetpu_vendor_service-V2-ndk \
libhbmsvmanager_jni \
VZWAPNLib \
AppDirectedSMSService \
CarrierSettings_signed_49.0.645958608 \
CarrierWifi \
ConnMO \
DCMO \
DMService \
DeviceIntelligenceNetworkPrebuilt-U.32_V.7_playstore_astrea_20240725.00_RC01 \
DevicePersonalizationPrebuiltPixel2022-U.32_V.7_playstore_aiai_20240725.00_RC08 \
DiagMon \
EuiccGoogle \
HardwareInfo \
HotwordEnrollmentOKGoogleFUSIONPro \
HotwordEnrollmentXGoogleFUSIONPro \
OemDmTrigger \
PixelCameraServices \
TetheringEntitlement \
WfcActivation \
OemRilHookService \
CarrierSetup \
ConnectivityThermalPowerManager \
EuiccGoogleOverlay \
EuiccSupportPixel \
EuiccSupportPixelPermissions \
HbmSVManager \
MyVerizonServices \
OemRilService \
PixelQualifiedNetworksService \
RilConfigService \
ShannonIms \
ShannonRcs \
grilservice \
libhwinfo \
RadioConfigLib \
com.android.hotwordenrollment.common.util \
com.google.android.camera.experimental2022_system \
com.google.android.camera.extensions \
com.google.android.camerax.extensions \
google-ril \
oemrilhook \
vendor.google.edgetpu_app_service@1.0-service.xml \
oem-iptables-init \
vendor.google.edgetpu_app_service@1.0-service
PRODUCT_PACKAGES += \
product_priv-app_DMService_lib_arm_libdmengine_so \
product_priv-app_DMService_lib_arm_libdmjavaplugin_so \
product_priv-app_DMService_lib_arm64_libdmengine_so \
product_priv-app_DMService_lib_arm64_libdmjavaplugin_so \
system_ext_priv-app_HbmSVManager_lib_arm64_libhbmsvmanager_jni_so
PRODUCT_COPY_FILES += \
vendor/google/panther/proprietary/vendor/etc/Khronos/OpenCL/vendors/ARM.icd:$(TARGET_COPY_OUT_VENDOR)/etc/Khronos/OpenCL/vendors/ARM.icd \
vendor/google/panther/proprietary/vendor/etc/atc_profile.json:$(TARGET_COPY_OUT_VENDOR)/etc/atc_profile.json \
vendor/google/panther/proprietary/vendor/etc/bluetooth/bt_vendor.conf:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth/bt_vendor.conf \
vendor/google/panther/proprietary/vendor/etc/chre/activity.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/activity.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/activity.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/activity.so \
vendor/google/panther/proprietary/vendor/etc/chre/ambient_volume.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ambient_volume.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/ambient_volume.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ambient_volume.so \
vendor/google/panther/proprietary/vendor/etc/chre/ar_bridge.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ar_bridge.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/ar_bridge.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ar_bridge.so \
vendor/google/panther/proprietary/vendor/etc/chre/blue.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/blue.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/blue.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/blue.so \
vendor/google/panther/proprietary/vendor/etc/chre/capo.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/capo.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/capo.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/capo.so \
vendor/google/panther/proprietary/vendor/etc/chre/cc.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/cc.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/cc.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/cc.so \
vendor/google/panther/proprietary/vendor/etc/chre/columbus.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/columbus.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus.so \
vendor/google/panther/proprietary/vendor/etc/chre/columbus_lite.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus_lite.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/columbus_lite.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus_lite.so \
vendor/google/panther/proprietary/vendor/etc/chre/drop.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/drop.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/drop.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/drop.so \
vendor/google/panther/proprietary/vendor/etc/chre/gating.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/gating.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/gating.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/gating.so \
vendor/google/panther/proprietary/vendor/etc/chre/geofence.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/geofence.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/geofence.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/geofence.so \
vendor/google/panther/proprietary/vendor/etc/chre/gesture.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/gesture.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/gesture.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/gesture.so \
vendor/google/panther/proprietary/vendor/etc/chre/health.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/health.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/health.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/health.so \
vendor/google/panther/proprietary/vendor/etc/chre/imu_cal.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/imu_cal.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/imu_cal.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/imu_cal.so \
vendor/google/panther/proprietary/vendor/etc/chre/ip_health.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ip_health.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/ip_health.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ip_health.so \
vendor/google/panther/proprietary/vendor/etc/chre/libchre_log_database.bin:$(TARGET_COPY_OUT_VENDOR)/etc/chre/libchre_log_database.bin \
vendor/google/panther/proprietary/vendor/etc/chre/motiondetector.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/motiondetector.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/motiondetector.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/motiondetector.so \
vendor/google/panther/proprietary/vendor/etc/chre/nearby.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/nearby.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/nearby.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/nearby.so \
vendor/google/panther/proprietary/vendor/etc/chre/preloaded_nanoapps.json:$(TARGET_COPY_OUT_VENDOR)/etc/chre/preloaded_nanoapps.json \
vendor/google/panther/proprietary/vendor/etc/chre/sd.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sd.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/sd.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sd.so \
vendor/google/panther/proprietary/vendor/etc/chre/sensorcollector.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sensorcollector.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/sensorcollector.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sensorcollector.so \
vendor/google/panther/proprietary/vendor/etc/chre/smartbatching.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/smartbatching.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/smartbatching.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/smartbatching.so \
vendor/google/panther/proprietary/vendor/etc/chre/system_signal_hub.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/system_signal_hub.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/system_signal_hub.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/system_signal_hub.so \
vendor/google/panther/proprietary/vendor/etc/chre/uv_exposure.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/uv_exposure.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/uv_exposure.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/uv_exposure.so \
vendor/google/panther/proprietary/vendor/etc/chre/vice.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/vice.napp_header \
vendor/google/panther/proprietary/vendor/etc/chre/vice.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/vice.so \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_202.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_202.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_204.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_204.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_206.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_206.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_208.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_208.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_214.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_214.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_216.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_216.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_218.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_218.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_219.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_219.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_222.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_222.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_226.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_226.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_228.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_228.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_230.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_230.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_231.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_231.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_232.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_232.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_234.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_234.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_235.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_235.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_242.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_242.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_250.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_250.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_255.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_255.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_260.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_260.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_262.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_262.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_268.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_268.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_272.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_272.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_276.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_276.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_293.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_293.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_297.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_297.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_330.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_330.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_334.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_334.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_338.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_338.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_340.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_340.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_370.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_370.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_372.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_372.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_374.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_374.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_404.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_404.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_405.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_405.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_425.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_425.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_440.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_440.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_441.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_441.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_450.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_450.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_452.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_452.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_460.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_460.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_466.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_466.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_505.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_505.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_525.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_525.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_647.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_647.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_704.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_704.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_706.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_706.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_708.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_708.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_710.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_710.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_712.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_712.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_714.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_714.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_716.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_716.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_722.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_722.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_724.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_724.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_730.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_730.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_732.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_732.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_734.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_734.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_736.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_736.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_738.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_738.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_740.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_740.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_744.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_744.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_746.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_746.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_748.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_748.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_750.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_750.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_DEFAULT.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_DEFAULT.xml \
vendor/google/panther/proprietary/vendor/etc/database/DbEcc_ICCID.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_ICCID.xml \
vendor/google/panther/proprietary/vendor/etc/database/ecc_version:$(TARGET_COPY_OUT_VENDOR)/etc/database/ecc_version \
vendor/google/panther/proprietary/vendor/etc/displayconfig/display_id_4619827677550801152.xml:$(TARGET_COPY_OUT_VENDOR)/etc/displayconfig/display_id_4619827677550801152.xml \
vendor/google/panther/proprietary/vendor/etc/earcheek_classifier.tflite:$(TARGET_COPY_OUT_VENDOR)/etc/earcheek_classifier.tflite \
vendor/google/panther/proprietary/vendor/etc/init/Exynos_C2.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/Exynos_C2.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.authsecret-service.citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.authsecret-service.citadel.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.bluetooth-service.bcmbtlinux.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.bluetooth-service.bcmbtlinux.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.camera.provider@2.7-service-google-apex.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.camera.provider@2.7-service-google-apex.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.contexthub-service.generic.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.contexthub-service.generic.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.edgetpu.logging@service-edgetpu-logging.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.edgetpu.logging@service-edgetpu-logging.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.gxp.logging@service-gxp-logging.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.gxp.logging@service-gxp-logging.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.input.processor-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.input.processor-service.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.neuralnetworks@service-darwinn-aidl.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.neuralnetworks@service-darwinn-aidl.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.oemlock-service.citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.oemlock-service.citadel.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.rlsservice-service-google-apex.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.rlsservice-service-google-apex.rc \
vendor/google/panther/proprietary/vendor/etc/init/android.hardware.secure_element@1.2-uicc-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.secure_element@1.2-uicc-service.rc \
vendor/google/panther/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/panther/proprietary/vendor/etc/init/android.hardware.weaver-service.citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.weaver-service.citadel.rc \
vendor/google/panther/proprietary/vendor/etc/init/aocd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/aocd.rc \
vendor/google/panther/proprietary/vendor/etc/init/aocxd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/aocxd.rc \
vendor/google/panther/proprietary/vendor/etc/init/bipchmgr.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/bipchmgr.rc \
vendor/google/panther/proprietary/vendor/etc/init/cbd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/cbd.rc \
vendor/google/panther/proprietary/vendor/etc/init/citadeld.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/citadeld.rc \
vendor/google/panther/proprietary/vendor/etc/init/com.google.edgetpu.dba-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/com.google.edgetpu.dba-service.rc \
vendor/google/panther/proprietary/vendor/etc/init/com.google.edgetpu.tachyon-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/com.google.edgetpu.tachyon-service.rc \
vendor/google/panther/proprietary/vendor/etc/init/dmd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/dmd.rc \
vendor/google/panther/proprietary/vendor/etc/init/fingerprint-goodix.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/fingerprint-goodix.rc \
vendor/google/panther/proprietary/vendor/etc/init/google.hardware.media.c2@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/google.hardware.media.c2@1.0-service.rc \
vendor/google/panther/proprietary/vendor/etc/init/init.camera.set-interrupts-ownership.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.camera.set-interrupts-ownership.rc \
vendor/google/panther/proprietary/vendor/etc/init/init.gps.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.gps.rc \
vendor/google/panther/proprietary/vendor/etc/init/init.modem_logging_control.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.modem_logging_control.rc \
vendor/google/panther/proprietary/vendor/etc/init/init.sscoredump.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.sscoredump.rc \
vendor/google/panther/proprietary/vendor/etc/init/init.usf.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.usf.rc \
vendor/google/panther/proprietary/vendor/etc/init/init.vendor_telephony.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.vendor_telephony.rc \
vendor/google/panther/proprietary/vendor/etc/init/init_dauntless.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init_dauntless.rc \
vendor/google/panther/proprietary/vendor/etc/init/libg3a_gabc.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/libg3a_gabc.rc \
vendor/google/panther/proprietary/vendor/etc/init/libg3a_gaf.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/libg3a_gaf.rc \
vendor/google/panther/proprietary/vendor/etc/init/libg3a_ghawb.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/libg3a_ghawb.rc \
vendor/google/panther/proprietary/vendor/etc/init/pktrouter.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/pktrouter.rc \
vendor/google/panther/proprietary/vendor/etc/init/rfsd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/rfsd.rc \
vendor/google/panther/proprietary/vendor/etc/init/rild_exynos.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/rild_exynos.rc \
vendor/google/panther/proprietary/vendor/etc/init/samsung.hardware.media.c2@1.2-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/samsung.hardware.media.c2@1.2-service.rc \
vendor/google/panther/proprietary/vendor/etc/init/trusty_metricsd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/trusty_metricsd.rc \
vendor/google/panther/proprietary/vendor/etc/init/twoshay.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/twoshay.rc \
vendor/google/panther/proprietary/vendor/etc/init/vendor.dolby.media.c2@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.dolby.media.c2@1.0-service.rc \
vendor/google/panther/proprietary/vendor/etc/init/vendor.google.audiometricext@1.0-service-vendor.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.audiometricext@1.0-service-vendor.rc \
vendor/google/panther/proprietary/vendor/etc/init/vendor.google.battery_mitigation-default.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.battery_mitigation-default.rc \
vendor/google/panther/proprietary/vendor/etc/init/vendor.google.edgetpu_vendor_service@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.edgetpu_vendor_service@1.0-service.rc \
vendor/google/panther/proprietary/vendor/etc/init/vendor.google.google_battery-default.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.google_battery-default.rc \
vendor/google/panther/proprietary/vendor/etc/init/vendor.google.modem_svc_sit.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.modem_svc_sit.rc \
vendor/google/panther/proprietary/vendor/etc/init/vendor.google.radioext@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.radioext@1.0-service.rc \
vendor/google/panther/proprietary/vendor/etc/init/vendor.google.wireless_charger-default.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.wireless_charger-default.rc \
vendor/google/panther/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/panther/proprietary/vendor/etc/input_classifier_model.pb:$(TARGET_COPY_OUT_VENDOR)/etc/input_classifier_model.pb \
vendor/google/panther/proprietary/vendor/etc/libg3a_standalone_gabc_rc:$(TARGET_COPY_OUT_VENDOR)/etc/libg3a_standalone_gabc_rc \
vendor/google/panther/proprietary/vendor/etc/libg3a_standalone_gaf_rc:$(TARGET_COPY_OUT_VENDOR)/etc/libg3a_standalone_gaf_rc \
vendor/google/panther/proprietary/vendor/etc/libg3a_standalone_ghawb_rc:$(TARGET_COPY_OUT_VENDOR)/etc/libg3a_standalone_ghawb_rc \
vendor/google/panther/proprietary/vendor/etc/media_codecs_aosp_c2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_aosp_c2.xml \
vendor/google/panther/proprietary/vendor/etc/media_codecs_dolby_c2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_dolby_c2.xml \
vendor/google/panther/proprietary/vendor/etc/modem_stat.conf:$(TARGET_COPY_OUT_VENDOR)/etc/modem_stat.conf \
vendor/google/panther/proprietary/vendor/etc/open_carrier_info.dat:$(TARGET_COPY_OUT_VENDOR)/etc/open_carrier_info.dat \
vendor/google/panther/proprietary/vendor/etc/permissions/android.hardware.strongbox_keystore.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.strongbox_keystore.xml \
vendor/google/panther/proprietary/vendor/etc/permissions/android.hardware.telephony.gsm.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.gsm.xml \
vendor/google/panther/proprietary/vendor/etc/permissions/android.hardware.telephony.ims.singlereg.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.ims.singlereg.xml \
vendor/google/panther/proprietary/vendor/etc/permissions/android.hardware.telephony.ims.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.ims.xml \
vendor/google/panther/proprietary/vendor/etc/permissions/com.google.android.camera.experimental2022.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.google.android.camera.experimental2022.xml \
vendor/google/panther/proprietary/vendor/etc/public.libraries.txt:$(TARGET_COPY_OUT_VENDOR)/etc/public.libraries.txt \
vendor/google/panther/proprietary/vendor/etc/seccomp_policy/codec2.vendor.base.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/codec2.vendor.base.policy \
vendor/google/panther/proprietary/vendor/etc/seccomp_policy/codec2.vendor.ext.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/codec2.vendor.ext.policy \
vendor/google/panther/proprietary/vendor/etc/sensors/device_cal_info:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/device_cal_info \
vendor/google/panther/proprietary/vendor/etc/sensors/hals.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/hals.conf \
vendor/google/panther/proprietary/vendor/etc/sensors/registry/append/motion_state.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/append/motion_state.reg \
vendor/google/panther/proprietary/vendor/etc/sensors/registry/append/power.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/append/power.reg \
vendor/google/panther/proprietary/vendor/etc/sensors/registry/panther_evt.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/panther_evt.reg \
vendor/google/panther/proprietary/vendor/etc/sensors/registry/panther_evt_win.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/panther_evt_win.reg \
vendor/google/panther/proprietary/vendor/etc/sensors/registry/panther_proto.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/panther_proto.reg \
vendor/google/panther/proprietary/vendor/etc/touchflow.pb:$(TARGET_COPY_OUT_VENDOR)/etc/touchflow.pb \
vendor/google/panther/proprietary/vendor/etc/twoshay_config.json:$(TARGET_COPY_OUT_VENDOR)/etc/twoshay_config.json \
vendor/google/panther/proprietary/vendor/firmware/MICRONMT128GAXAT2U310104_MICRONMT256GAXAT4U310104.img:$(TARGET_COPY_OUT_VENDOR)/firmware/MICRONMT128GAXAT2U310104_MICRONMT256GAXAT4U310104.img \
vendor/google/panther/proprietary/vendor/firmware/SensorHub.patch:$(TARGET_COPY_OUT_VENDOR)/firmware/SensorHub.patch \
vendor/google/panther/proprietary/vendor/firmware/aoc.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/aoc.bin \
vendor/google/panther/proprietary/vendor/firmware/bcmdhd.cal:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal \
vendor/google/panther/proprietary/vendor/firmware/bcmdhd.cal_JPN:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_JPN \
vendor/google/panther/proprietary/vendor/firmware/bcmdhd.cal_MMW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_MMW \
vendor/google/panther/proprietary/vendor/firmware/bcmdhd.cal_PROTO1.0:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_PROTO1.0 \
vendor/google/panther/proprietary/vendor/firmware/bcmdhd.cal_PROTO1.1:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_PROTO1.1 \
vendor/google/panther/proprietary/vendor/firmware/bcmdhd.cal_ROW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_ROW \
vendor/google/panther/proprietary/vendor/firmware/bcmdhd_clm.blob:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob \
vendor/google/panther/proprietary/vendor/firmware/bcmdhd_clm.blob_JPN:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_JPN \
vendor/google/panther/proprietary/vendor/firmware/bcmdhd_clm.blob_MMW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_MMW \
vendor/google/panther/proprietary/vendor/firmware/bcmdhd_clm.blob_ROW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_ROW \
vendor/google/panther/proprietary/vendor/firmware/brcm/BCM.hcd:$(TARGET_COPY_OUT_VENDOR)/firmware/brcm/BCM.hcd \
vendor/google/panther/proprietary/vendor/firmware/brcm/BTFW_B.hcd:$(TARGET_COPY_OUT_VENDOR)/firmware/brcm/BTFW_B.hcd \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/build.info:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/build.info \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/cfg.db:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/cfg.db \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/cfg.sha2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/cfg.sha2 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/003b8cbe8ea1c1944f2c23e9a2c923ce444646bb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/003b8cbe8ea1c1944f2c23e9a2c923ce444646bb \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/00dbc9280e88e8ca87110228440bfb40f14016de:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/00dbc9280e88e8ca87110228440bfb40f14016de \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/01c0f02a4b9f503b070829cb0a40f5e0ac19183e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/01c0f02a4b9f503b070829cb0a40f5e0ac19183e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/026fe381212d553d82ad53288774e73f814ecd82:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/026fe381212d553d82ad53288774e73f814ecd82 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/02797e36b6bd687af00683989d9265b5f2d65ac6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/02797e36b6bd687af00683989d9265b5f2d65ac6 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/02834cb288d437a2c5a1bf7afb676da3ba6b2c44:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/02834cb288d437a2c5a1bf7afb676da3ba6b2c44 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/03db4ea0230155133eb16c4914e8a39ed586ddaa:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/03db4ea0230155133eb16c4914e8a39ed586ddaa \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0434db9927939496cd5995b7b5ef16103383c71b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0434db9927939496cd5995b7b5ef16103383c71b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/049f9e339423d7ab8f17f9eab53325da1384ff48:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/049f9e339423d7ab8f17f9eab53325da1384ff48 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/04bae239b62c058084297f112e04aa1f07209fb9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/04bae239b62c058084297f112e04aa1f07209fb9 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/054db4f2e3f9db05819af873c4fd7d0dca9b91c5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/054db4f2e3f9db05819af873c4fd7d0dca9b91c5 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0581e1cbc0051b13b8b1da89dda6a85b62fd5581:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0581e1cbc0051b13b8b1da89dda6a85b62fd5581 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0590d905f552b000b3f202e9f78cae0d6560c35c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0590d905f552b000b3f202e9f78cae0d6560c35c \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/05bbd25db23ffc8a76da52ff834f8f080fcbcfba:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/05bbd25db23ffc8a76da52ff834f8f080fcbcfba \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/05f1d61fecec4e7cf87b9c545d35a993b1ccce74:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/05f1d61fecec4e7cf87b9c545d35a993b1ccce74 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/05f7f592cc2689c7998a736bd22873b9878dbf75:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/05f7f592cc2689c7998a736bd22873b9878dbf75 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/063fabcd052c3aba863b4f6051a98fe884fc053a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/063fabcd052c3aba863b4f6051a98fe884fc053a \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/064d7c1c5af7c3fd772108beadba40bacb1c1056:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/064d7c1c5af7c3fd772108beadba40bacb1c1056 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/06504c2a012d4bbfbe49b3af988e8ecdb637615b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/06504c2a012d4bbfbe49b3af988e8ecdb637615b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/06760940b735d71a10bec0ab1a95ee5d94cae0ae:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/06760940b735d71a10bec0ab1a95ee5d94cae0ae \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0689fff61e5255f6ecc16a71bbaa8d1b30a8c839:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0689fff61e5255f6ecc16a71bbaa8d1b30a8c839 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/06f5a8a6418f9daf88663fd076d2319660e6393c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/06f5a8a6418f9daf88663fd076d2319660e6393c \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0714f45396647de5e4ddff60875f7a1ac2af408d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0714f45396647de5e4ddff60875f7a1ac2af408d \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/07295fed71b7a6fcaaa8ecc8f4f85f3915b2056b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/07295fed71b7a6fcaaa8ecc8f4f85f3915b2056b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/07fc1dc8dd96b09a18cd812efa7d8a47b66b2209:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/07fc1dc8dd96b09a18cd812efa7d8a47b66b2209 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0851e47341ca8dac82c42df001d1066e31dc5e1a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0851e47341ca8dac82c42df001d1066e31dc5e1a \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/08d367470046d31604c80566f308dfb9a93f69da:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/08d367470046d31604c80566f308dfb9a93f69da \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/08e1a1db49322a7bcad18e9dd2ed55e139662ef8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/08e1a1db49322a7bcad18e9dd2ed55e139662ef8 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0966945478aa549ec83fe7473b85e70dd1ee1f75:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0966945478aa549ec83fe7473b85e70dd1ee1f75 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/09c258b36fd9d5952d27d725200c4d1816bcfbd0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/09c258b36fd9d5952d27d725200c4d1816bcfbd0 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/09cbc3ef39be88a97a785a096b3ff9e161b1a1cd:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/09cbc3ef39be88a97a785a096b3ff9e161b1a1cd \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0a02079f30fdfa509a31894f166064024e524599:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0a02079f30fdfa509a31894f166064024e524599 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0a914a55a4cdd9b5e17763782ad5009eb86dcce7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0a914a55a4cdd9b5e17763782ad5009eb86dcce7 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0a984436c956c8216798ce17d4fa0777fe693c03:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0a984436c956c8216798ce17d4fa0777fe693c03 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0ac6dd7059bd68ab2a4b902935f7c83b565d425b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0ac6dd7059bd68ab2a4b902935f7c83b565d425b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0b59a555d46f4ad60b7aaa37c9fe0bd17f181dc3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0b59a555d46f4ad60b7aaa37c9fe0bd17f181dc3 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0c049730c9ac30dc65d21809f84fa7a834d73221:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0c049730c9ac30dc65d21809f84fa7a834d73221 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0c4bcd61a56ebfc216b003e2e66764bb7755ca78:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0c4bcd61a56ebfc216b003e2e66764bb7755ca78 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0ce437126654810a7fe222248c6e4bb0d9176b27:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0ce437126654810a7fe222248c6e4bb0d9176b27 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0d12c459a1d0e0a23cce2e4ce75598617b84fbfb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0d12c459a1d0e0a23cce2e4ce75598617b84fbfb \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0d5c647996a6b1ff1205d12f5701eff4e362c15b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0d5c647996a6b1ff1205d12f5701eff4e362c15b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0dfa34e76dc20e68af9cf74845a029a10f4550c9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0dfa34e76dc20e68af9cf74845a029a10f4550c9 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0e11f182f4f5c8135545f88fe2d2f6bc13aa857c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e11f182f4f5c8135545f88fe2d2f6bc13aa857c \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0e3dab6c14130b8e15f42c30bd554c189aafe176:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e3dab6c14130b8e15f42c30bd554c189aafe176 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0e4b8fc76c33f6e04176bebe492ad6243526955b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e4b8fc76c33f6e04176bebe492ad6243526955b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0e506b6cde42b9cc47164cbf1813e666ada2f0e0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e506b6cde42b9cc47164cbf1813e666ada2f0e0 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0e5222a2510b7294dde70c74f5976c6e1e492307:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e5222a2510b7294dde70c74f5976c6e1e492307 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0ec458cf5cac628b7f0f5afc6a92af189ab8f021:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0ec458cf5cac628b7f0f5afc6a92af189ab8f021 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0ecf1868de5165c6b9778ee2682ae0140f2ea3c6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0ecf1868de5165c6b9778ee2682ae0140f2ea3c6 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0f290329e337e68f8bed4a0a9020fe42bdd2ce39:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0f290329e337e68f8bed4a0a9020fe42bdd2ce39 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0fa7cdae9dbcade6a092ba6b97c2e549ccfe56e1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0fa7cdae9dbcade6a092ba6b97c2e549ccfe56e1 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/0fd79ff72e248372a268c0ca0ed66edd1ffb8443:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0fd79ff72e248372a268c0ca0ed66edd1ffb8443 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1027657ed804c622a5ffeab0d39fadad15bc9c59:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1027657ed804c622a5ffeab0d39fadad15bc9c59 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/103d3600621a6d22da103ace87f840a7887a6250:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/103d3600621a6d22da103ace87f840a7887a6250 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/105b6c5a3c863c0169af012914173ebc70b6018b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/105b6c5a3c863c0169af012914173ebc70b6018b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/11d5ecd79e6155ec6db8a67b5806c4a9325d158e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/11d5ecd79e6155ec6db8a67b5806c4a9325d158e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/123b524448ce186477e8444aec555168e8995164:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/123b524448ce186477e8444aec555168e8995164 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/12619ee43fc9571b9a70b3528d61b359aa71f410:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/12619ee43fc9571b9a70b3528d61b359aa71f410 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/12722b5c5d94448e25277a8e92c9ed56b81a8d91:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/12722b5c5d94448e25277a8e92c9ed56b81a8d91 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1279203468e3a451f10c8039422140ccc7acb37c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1279203468e3a451f10c8039422140ccc7acb37c \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/128685b05b281f4c97497b3b41c2b6c04ea0724b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/128685b05b281f4c97497b3b41c2b6c04ea0724b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/128816800761c19b24c9748fc315f56acd09db15:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/128816800761c19b24c9748fc315f56acd09db15 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/13101b165ca3e39da5635b73f240f63865a91622:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/13101b165ca3e39da5635b73f240f63865a91622 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/13c07372c8228330755b859bfff8edb0eafef977:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/13c07372c8228330755b859bfff8edb0eafef977 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/145d44be6f59312950b88afbca3bc38dfbeb4ee2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/145d44be6f59312950b88afbca3bc38dfbeb4ee2 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/14a97f150993fc30bc30f63992d5bd48b50729f5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/14a97f150993fc30bc30f63992d5bd48b50729f5 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/14e2bb42dd2ac906f60bebffbf0face25bc9dc29:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/14e2bb42dd2ac906f60bebffbf0face25bc9dc29 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/15180866ad0cce591deb5b0fd2a2947d2d81662e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/15180866ad0cce591deb5b0fd2a2947d2d81662e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1518d5db78798c937a1fa460508a897f18fc538d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1518d5db78798c937a1fa460508a897f18fc538d \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/154c4597bcc12907cf43047683366d3c219438bd:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/154c4597bcc12907cf43047683366d3c219438bd \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/16054789a3ee852a00601b0908b180d643730c47:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/16054789a3ee852a00601b0908b180d643730c47 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/16b0da248a9bea62e1f2a41ba2095979abaf7fd8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/16b0da248a9bea62e1f2a41ba2095979abaf7fd8 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/16d79500cb3f808c6de79109c4b1a8e25c65d14f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/16d79500cb3f808c6de79109c4b1a8e25c65d14f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/16e39d5c5fe504e29681888cad2cffb7025429e3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/16e39d5c5fe504e29681888cad2cffb7025429e3 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/170ade63f1f603faf14c573ebef71d9b5bc18abe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/170ade63f1f603faf14c573ebef71d9b5bc18abe \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/17cf83710a5244b2d5060f60801f388a6e92b209:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/17cf83710a5244b2d5060f60801f388a6e92b209 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/17e6778d78796d310f1cb78c612e6fa600a354cc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/17e6778d78796d310f1cb78c612e6fa600a354cc \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/18d5a8035b5a6b359ad0146f0ad3aba0227cf1be:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/18d5a8035b5a6b359ad0146f0ad3aba0227cf1be \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/195f1cc3a40f27b6795ac69c8288725b501ef0a2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/195f1cc3a40f27b6795ac69c8288725b501ef0a2 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/19c517734822a34f2d0aee3859f1d5cb58deb517:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/19c517734822a34f2d0aee3859f1d5cb58deb517 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/19fdcc320e0dcd854545f3c7257155f94468629a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/19fdcc320e0dcd854545f3c7257155f94468629a \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1a19f9977f70c5dea136141d3f80635cbc478e25:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1a19f9977f70c5dea136141d3f80635cbc478e25 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1a33cd725a757ced45d88ddc641ec2ef2acbfe59:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1a33cd725a757ced45d88ddc641ec2ef2acbfe59 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1a4dcefdc6eb8d3e3d204aff1c90439a5d4cae17:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1a4dcefdc6eb8d3e3d204aff1c90439a5d4cae17 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1b8124ac2981d4dd5447be80b8e58ac2dc4eccb0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1b8124ac2981d4dd5447be80b8e58ac2dc4eccb0 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1b956661c3e55ac633eefa08100a3392fafeab88:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1b956661c3e55ac633eefa08100a3392fafeab88 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1b95a463d12f389512376af27b0a88dbe9f924f6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1b95a463d12f389512376af27b0a88dbe9f924f6 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1c194c935825da793ba9f29840290b52b800355f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1c194c935825da793ba9f29840290b52b800355f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1c1da477e9c71f4794668a0a82f14d5bcd6ab0f9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1c1da477e9c71f4794668a0a82f14d5bcd6ab0f9 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1c1e0f639052d43d47a05ae474b82b949dc45258:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1c1e0f639052d43d47a05ae474b82b949dc45258 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1d5e2a0d952b8f23f05047ccf5b563b75bd08270:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1d5e2a0d952b8f23f05047ccf5b563b75bd08270 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1e40e5c3e924c230b384d793db4d24735f2ffd1e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1e40e5c3e924c230b384d793db4d24735f2ffd1e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1ec14d246030cbb1ff8fb0523e690e32052b9fb7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1ec14d246030cbb1ff8fb0523e690e32052b9fb7 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1ed03c5cd3f6aae12731cee614f3a08f8cede0c6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1ed03c5cd3f6aae12731cee614f3a08f8cede0c6 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/1f8de33c529bc050ba7733ff15c4608d516d82f1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1f8de33c529bc050ba7733ff15c4608d516d82f1 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/201d7a1b5e5bdb6f2307217f78811afc0710b91e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/201d7a1b5e5bdb6f2307217f78811afc0710b91e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/21c69bf9b600c6dd87ee38470be433f192b3635c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/21c69bf9b600c6dd87ee38470be433f192b3635c \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/21f9744415ccd13217aae6ef787e3260948638ca:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/21f9744415ccd13217aae6ef787e3260948638ca \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/228ab9bc936bcb2fff55cef3e85ccf51abc690cc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/228ab9bc936bcb2fff55cef3e85ccf51abc690cc \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/22b870b82d1ba871a6d5c9963295bad3ed04037a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/22b870b82d1ba871a6d5c9963295bad3ed04037a \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/237c0470314794e445ed430d980b63aa88b7d5ec:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/237c0470314794e445ed430d980b63aa88b7d5ec \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2395336c5bb94a88911b02e6ca1293d301b0c91f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2395336c5bb94a88911b02e6ca1293d301b0c91f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/246850181d8bfb89ea9c720fd991ed01231db537:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/246850181d8bfb89ea9c720fd991ed01231db537 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/250dcd055bc4020e8fc4e8d165604359f735a118:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/250dcd055bc4020e8fc4e8d165604359f735a118 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/25137751c2b1cc9c3284b530a7110b115e9fd442:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25137751c2b1cc9c3284b530a7110b115e9fd442 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/25613dfe4c1b66be6e2d45424f6181931d04ffac:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25613dfe4c1b66be6e2d45424f6181931d04ffac \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/25bc1fcf128d95a2959a02ba18418f3d6eae510f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25bc1fcf128d95a2959a02ba18418f3d6eae510f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/25bd905bd3fe7ccb2c1d2e9c984953e9101d1ed1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25bd905bd3fe7ccb2c1d2e9c984953e9101d1ed1 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/25ed5e973762e56bd3467163924bc03b32ad7c69:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25ed5e973762e56bd3467163924bc03b32ad7c69 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/25fb8fb445068d37ceb90489c305a01cd912624f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25fb8fb445068d37ceb90489c305a01cd912624f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2629c41fee95b14b47e59362231de113713c6642:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2629c41fee95b14b47e59362231de113713c6642 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/26eef8af1bd282af6fabfa8555003f053c0c3422:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/26eef8af1bd282af6fabfa8555003f053c0c3422 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2704f7db05660b61e47ace5ca2b98f5a52e7cb17:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2704f7db05660b61e47ace5ca2b98f5a52e7cb17 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2773acc7de9c04e3c4575fb8ad658942b9458274:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2773acc7de9c04e3c4575fb8ad658942b9458274 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/281262177d2f2f51e01448256919049cc52b4e74:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/281262177d2f2f51e01448256919049cc52b4e74 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/287fc0e63131d538286712bdc703a359346d393e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/287fc0e63131d538286712bdc703a359346d393e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/28ae3c9cb89fa290f48b76c3f1afcb8a6895d1fc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/28ae3c9cb89fa290f48b76c3f1afcb8a6895d1fc \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2947a341181566102b892ef74e76d788da78dfd8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2947a341181566102b892ef74e76d788da78dfd8 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/29e9584b700de48b6cae00c7ad8cfa869c104467:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/29e9584b700de48b6cae00c7ad8cfa869c104467 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2a349407e4a8f6b29e090908e4c2c18b8ec7c8b7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2a349407e4a8f6b29e090908e4c2c18b8ec7c8b7 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2ab7bd0a0d4f2795c1b90d29d0dfe824ceceaa23:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ab7bd0a0d4f2795c1b90d29d0dfe824ceceaa23 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2ad9c882fecbf5b6998bebf089aff3f43d5bddc8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ad9c882fecbf5b6998bebf089aff3f43d5bddc8 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2af03405877f4521d5d1bf9978c3ec8a0cd90e60:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2af03405877f4521d5d1bf9978c3ec8a0cd90e60 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2b1832861cc87b44ca765967d38bf3a7d261530f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2b1832861cc87b44ca765967d38bf3a7d261530f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2bef48bb12f2b6b3949fb9d5e3aaf6863517ea88:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2bef48bb12f2b6b3949fb9d5e3aaf6863517ea88 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2c452e74c265fcd5001ecbf3f4b58c5d5603df31:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2c452e74c265fcd5001ecbf3f4b58c5d5603df31 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2c50bc03c66a29e0da8ec7b1d403c96cdedc08c0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2c50bc03c66a29e0da8ec7b1d403c96cdedc08c0 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2c77e5a6baab2679667d4210a27b85a840d864ec:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2c77e5a6baab2679667d4210a27b85a840d864ec \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2d7c0ba17ac8f4193ce8cdd7672d6e7bb7ad3377:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2d7c0ba17ac8f4193ce8cdd7672d6e7bb7ad3377 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2d7dbb0c2a3d8c5974a79a700c9263a807a5d7fc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2d7dbb0c2a3d8c5974a79a700c9263a807a5d7fc \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2dc7bf71d46fbd0b1e9180c794a97282ca4a1f27:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2dc7bf71d46fbd0b1e9180c794a97282ca4a1f27 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2dd3a5707d75f8ebaf645527d2b0e3da35ea55ca:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2dd3a5707d75f8ebaf645527d2b0e3da35ea55ca \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2e053916f0cd7d6bd57d80b7879e4eddee75836d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2e053916f0cd7d6bd57d80b7879e4eddee75836d \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2e0beac640bf9b23b0fc0aacb32b9e1df22c4b1f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2e0beac640bf9b23b0fc0aacb32b9e1df22c4b1f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2e9d8bb08f80ddbb7985a9678b9f0d9929295879:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2e9d8bb08f80ddbb7985a9678b9f0d9929295879 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2ec6fd69c8af18f6b3431ce31a6c9ec52d0b4355:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ec6fd69c8af18f6b3431ce31a6c9ec52d0b4355 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2ed708e42ee6e4f2e79cdea10fcbe0b030c60902:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ed708e42ee6e4f2e79cdea10fcbe0b030c60902 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2ee6bae8d2136b75d738cb1dfe57134345333098:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ee6bae8d2136b75d738cb1dfe57134345333098 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2f6e83370ee2c0228c2e65c6595dc7798e85b15e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2f6e83370ee2c0228c2e65c6595dc7798e85b15e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/2f8e33747e7ba569e6166e7fec7d5267fe6a7379:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2f8e33747e7ba569e6166e7fec7d5267fe6a7379 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3075226fab428570db9fba7eca593170558a1be5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3075226fab428570db9fba7eca593170558a1be5 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/308bb9bda34bb58c36074a107b1dce9cb33beb5c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/308bb9bda34bb58c36074a107b1dce9cb33beb5c \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/309658a08488124d5f28c7b4f60b94ec15b9c148:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/309658a08488124d5f28c7b4f60b94ec15b9c148 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/31279159b6f65bd006a369ccda1953bec2c8f63f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31279159b6f65bd006a369ccda1953bec2c8f63f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/31ac304c5b26f08ba768c099d3f001bd560827bb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31ac304c5b26f08ba768c099d3f001bd560827bb \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/31d4d72986b5dbf1fdcd57d1383b76530bc6b6be:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31d4d72986b5dbf1fdcd57d1383b76530bc6b6be \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/31f71c049f1ae5dd6cbf27feef3849443c658d31:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31f71c049f1ae5dd6cbf27feef3849443c658d31 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/32365a0236efccde2c744bb66aa8526930c012e4:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/32365a0236efccde2c744bb66aa8526930c012e4 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/32374d85eff3363d527a595027288e50cbbf7dd1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/32374d85eff3363d527a595027288e50cbbf7dd1 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/324385edc8d807c17c6dff408fa0fdb8ee3b13dc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/324385edc8d807c17c6dff408fa0fdb8ee3b13dc \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/325ada9526b1f24184ae3af63105290b1fa91176:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/325ada9526b1f24184ae3af63105290b1fa91176 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/325b0b67f1269b1bfa5d844cbab33cd53a36835b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/325b0b67f1269b1bfa5d844cbab33cd53a36835b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/32866c16e12dcb7da8df49dfec272c4ef2b183ae:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/32866c16e12dcb7da8df49dfec272c4ef2b183ae \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/32a24a2e18f317e6f4af5c25a5084dd7b17a88e8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/32a24a2e18f317e6f4af5c25a5084dd7b17a88e8 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3358462a04e13f07def7c7ad9b02f538d5e0d8eb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3358462a04e13f07def7c7ad9b02f538d5e0d8eb \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/337e7572b12443f0a4a638c5e32841ea4bd58088:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/337e7572b12443f0a4a638c5e32841ea4bd58088 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/34711ec7593657e614362cd91812cc095f50d51c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/34711ec7593657e614362cd91812cc095f50d51c \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3497586c3769544731dfbfc0e1acb4ff45371ab5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3497586c3769544731dfbfc0e1acb4ff45371ab5 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/35049d6a09eb704925b4749c27aca1882bbda188:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/35049d6a09eb704925b4749c27aca1882bbda188 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/354c4f909f19ec55142d3e11850dc1322c3a57ba:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/354c4f909f19ec55142d3e11850dc1322c3a57ba \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/35ce938520a7e2667dd730780daba3ccc791909f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/35ce938520a7e2667dd730780daba3ccc791909f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/363a043b6feff5d0dcb9765d162f9403cbe0dddb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/363a043b6feff5d0dcb9765d162f9403cbe0dddb \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/365771d79e0414a3a19e7c4ab547671384ed13e7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/365771d79e0414a3a19e7c4ab547671384ed13e7 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/368280adfd35b2fc86c8eccdc50d137350d2d950:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/368280adfd35b2fc86c8eccdc50d137350d2d950 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/36bcdd585c945cd6257a705cb90f19cb9f827b6f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/36bcdd585c945cd6257a705cb90f19cb9f827b6f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/36ecdafeec12187c78824a65f0f1062355557b80:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/36ecdafeec12187c78824a65f0f1062355557b80 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/36f18ff46c1cfe5d0fafa2704fb72c4cc490c1e5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/36f18ff46c1cfe5d0fafa2704fb72c4cc490c1e5 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3741898c09f4bf964ffbff146da350a5f1cc567c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3741898c09f4bf964ffbff146da350a5f1cc567c \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3746ee82530b31adadef3c7c468d4680bd68be18:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3746ee82530b31adadef3c7c468d4680bd68be18 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/378f8c1fbe81be016b90813f81d8e86dd8172e4d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/378f8c1fbe81be016b90813f81d8e86dd8172e4d \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/37be751bd82f14815da68a5afec9ebca38595333:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/37be751bd82f14815da68a5afec9ebca38595333 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/37c7129c4b832a1c3f6ae4e97a273f87d8b50112:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/37c7129c4b832a1c3f6ae4e97a273f87d8b50112 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/37f603d7fa7b06c2ffb79621cbb0e4466ef0b964:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/37f603d7fa7b06c2ffb79621cbb0e4466ef0b964 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/382d30bc28b2fb5fa9547b2a6e26a78fc959357b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/382d30bc28b2fb5fa9547b2a6e26a78fc959357b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/388d5681e1d8690a228ac8add81718a3a84417d3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/388d5681e1d8690a228ac8add81718a3a84417d3 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3897cdebb6a02bb41109f114ab54b3c21a677975:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3897cdebb6a02bb41109f114ab54b3c21a677975 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/38e748dd6b5662e89a808cef51cf71be19fbf2ec:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/38e748dd6b5662e89a808cef51cf71be19fbf2ec \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3927213ffba7177512ead411d953343f1a9c99ac:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3927213ffba7177512ead411d953343f1a9c99ac \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3988dcddbc35a1cd7a235ec36197d8ebfc889163:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3988dcddbc35a1cd7a235ec36197d8ebfc889163 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/39ad3110b8f84821ca22cfbd995914f2149521d2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/39ad3110b8f84821ca22cfbd995914f2149521d2 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/39c04f660d17402f516923277fe706e1b655493a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/39c04f660d17402f516923277fe706e1b655493a \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3a1d5359d8a212512cddbdf9df52f050ba884603:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3a1d5359d8a212512cddbdf9df52f050ba884603 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3aa617ec4f6d727ddc123b6e7ca38c0b1e2f67b9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3aa617ec4f6d727ddc123b6e7ca38c0b1e2f67b9 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3baa1442de792aa3e2d9faa46506b061bf9d3a50:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3baa1442de792aa3e2d9faa46506b061bf9d3a50 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3bd6ce34a06cd16c78f2f31c4b0a540478bbf5e2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3bd6ce34a06cd16c78f2f31c4b0a540478bbf5e2 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3c0515da1690712f3f44151b79ea9d895ec5a42c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c0515da1690712f3f44151b79ea9d895ec5a42c \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3c11ffbc1d866c333f3531f6bf5a822a75d2020c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c11ffbc1d866c333f3531f6bf5a822a75d2020c \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3c4fe0e8fffe4143cca3c3b84495af53ad329be2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c4fe0e8fffe4143cca3c3b84495af53ad329be2 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3c51cb81d84cb0e20a5ef55776c6745000a44d25:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c51cb81d84cb0e20a5ef55776c6745000a44d25 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3c795399a7bfe6ca5e59d7cbb5e508bd03688898:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c795399a7bfe6ca5e59d7cbb5e508bd03688898 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3cc0028efaf3807a265970117d419d94bbc2ec41:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3cc0028efaf3807a265970117d419d94bbc2ec41 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3d59fb1a1e8f00a52bbd569219016115aca21d43:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d59fb1a1e8f00a52bbd569219016115aca21d43 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3d7989049702ce35be3cb1b12e64751d81893b13:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d7989049702ce35be3cb1b12e64751d81893b13 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3d83851048f1b416f6f88994389c1ccb3fb628ff:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d83851048f1b416f6f88994389c1ccb3fb628ff \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3d8853ea57cfae25840075514ea2c1a020afe193:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d8853ea57cfae25840075514ea2c1a020afe193 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3dbbfebb1478996579b4c36de2b9fff4893ad70b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3dbbfebb1478996579b4c36de2b9fff4893ad70b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3e59b61ff2c7275f33970b981f1892a18c1643fe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3e59b61ff2c7275f33970b981f1892a18c1643fe \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3ede8699c36871bb03d70e551f642e420323664e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3ede8699c36871bb03d70e551f642e420323664e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/3f42f70b8867153575bbd7994d4e0401517e0b29:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3f42f70b8867153575bbd7994d4e0401517e0b29 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/405126a2845b9a2ceb9bf3f4bc35333ba1bdbac9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/405126a2845b9a2ceb9bf3f4bc35333ba1bdbac9 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4080f764379102a441a5f03b1b68150173ec81a3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4080f764379102a441a5f03b1b68150173ec81a3 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/40d9f99914d255ea946cfd17d703eb3fe65559fe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/40d9f99914d255ea946cfd17d703eb3fe65559fe \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/410833aee3a4a7e9d22f5961dfb9164317e8e207:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/410833aee3a4a7e9d22f5961dfb9164317e8e207 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/41532dcaa7d3ee4df14532e19787c228c3ba2249:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/41532dcaa7d3ee4df14532e19787c228c3ba2249 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/41aa38e5f293933d730424cd35722cd6ed7e5bd6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/41aa38e5f293933d730424cd35722cd6ed7e5bd6 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/41b644e219a1ec624260d32d2ce19bdb47815b7d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/41b644e219a1ec624260d32d2ce19bdb47815b7d \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/422c2789b32e5aeca9b6e672410bdf6f24b140eb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/422c2789b32e5aeca9b6e672410bdf6f24b140eb \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/425ab134531a49736f370161fa8a5aa5b7f51eb1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/425ab134531a49736f370161fa8a5aa5b7f51eb1 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4279223a98c17ba036df2276d65176ff0b66b812:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4279223a98c17ba036df2276d65176ff0b66b812 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/42aa6e3a76d5ce1ff6c6f6fdeeeddde1f56b8007:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42aa6e3a76d5ce1ff6c6f6fdeeeddde1f56b8007 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/42c0a3afc249f0076e68166f59a26f264821de64:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42c0a3afc249f0076e68166f59a26f264821de64 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/42e69c694e72af57606514a5da1436dd7f5c483a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42e69c694e72af57606514a5da1436dd7f5c483a \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/42edd7babe19a181eaefcc2adb6c9c79be3cfb70:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42edd7babe19a181eaefcc2adb6c9c79be3cfb70 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/42ffdd88f967782c15eed37ecf026ad0fc6353d3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/42ffdd88f967782c15eed37ecf026ad0fc6353d3 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4308afa9d922bbfebab020badd569f1470f18bae:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4308afa9d922bbfebab020badd569f1470f18bae \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/43661d30c335a3268cb29e92e29cd307ee1b4fbe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/43661d30c335a3268cb29e92e29cd307ee1b4fbe \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/436f4a74cf93256a012855345bf2040b6be70c07:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/436f4a74cf93256a012855345bf2040b6be70c07 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/438ff6b6ea9de2bb7ebcd17211d6e4051e7f650e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/438ff6b6ea9de2bb7ebcd17211d6e4051e7f650e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/43b7aa5c20bb1eeadf4c71ca2b8d22ae9986db73:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/43b7aa5c20bb1eeadf4c71ca2b8d22ae9986db73 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/44116e9d8df150458e4ff57445b02fd512620d6b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/44116e9d8df150458e4ff57445b02fd512620d6b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/44196b72658cebf8eaf4e778b2887eacea0ec507:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/44196b72658cebf8eaf4e778b2887eacea0ec507 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/441a915ae1ea2da1e8b96ad63ce0e1092847b979:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/441a915ae1ea2da1e8b96ad63ce0e1092847b979 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4431c935ec5de4b861b6b1a19c759704fb9b117e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4431c935ec5de4b861b6b1a19c759704fb9b117e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4445e73e00a5a716ac543037189542c4cde677d7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4445e73e00a5a716ac543037189542c4cde677d7 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/445829d9021d27b4aaa71cdd71da271d6b31e1aa:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/445829d9021d27b4aaa71cdd71da271d6b31e1aa \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/44c1bf2f28c4071d35714bf114186d084fafbbcc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/44c1bf2f28c4071d35714bf114186d084fafbbcc \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/44f2fae86ab7c0ee09e3880953ecc40dcfab11c6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/44f2fae86ab7c0ee09e3880953ecc40dcfab11c6 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/44ffa38818d8f114df651558a9dcfbfd73e61363:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/44ffa38818d8f114df651558a9dcfbfd73e61363 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/452909d26200491c56b9164b7b816a7c5414b734:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/452909d26200491c56b9164b7b816a7c5414b734 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/462cbf4028a8937796055b85442b4bc47619003e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/462cbf4028a8937796055b85442b4bc47619003e \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/472a027e866e9bf045705ad835180274dc93c3bf:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/472a027e866e9bf045705ad835180274dc93c3bf \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/473c8696fb93a6de72b85fa9573d853528476ff6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/473c8696fb93a6de72b85fa9573d853528476ff6 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/47d3571b9835dd19dab14e39c5eb620cde8c27b0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47d3571b9835dd19dab14e39c5eb620cde8c27b0 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/47df3a2ca3bcd365c165ddc69dfeb31bf38b255b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47df3a2ca3bcd365c165ddc69dfeb31bf38b255b \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/47ead5db13243577c688250364cc7be579dc3253:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47ead5db13243577c688250364cc7be579dc3253 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/47fa06e9059928c7b33e9a5be5a66ba30d1ae0f2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47fa06e9059928c7b33e9a5be5a66ba30d1ae0f2 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/48151f7499d5548012e7480b4b46ee74dae0e275:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/48151f7499d5548012e7480b4b46ee74dae0e275 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/48c04c44c3df5f3ded3151376256af5d79638d27:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/48c04c44c3df5f3ded3151376256af5d79638d27 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/48f71ca05ae51a7c197be3df0dd87b374fba28d5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/48f71ca05ae51a7c197be3df0dd87b374fba28d5 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/48fd22c9b9360964697cb6a662c7713c64e9e6b9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/48fd22c9b9360964697cb6a662c7713c64e9e6b9 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4962a9d93a47f746f560e8188431dc6c62701279:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4962a9d93a47f746f560e8188431dc6c62701279 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/496942b30fccba84eefbcee654953392395c451f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/496942b30fccba84eefbcee654953392395c451f \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/498be8abfa0f19753e733b3a57d36a37603c2519:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/498be8abfa0f19753e733b3a57d36a37603c2519 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/49df48ffa72594deed6c7c027c08201334cbe9d7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/49df48ffa72594deed6c7c027c08201334cbe9d7 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/49e097925238f3914486694619ee5d872e8a6002:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/49e097925238f3914486694619ee5d872e8a6002 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4a27e27f786c1e8ff2672c2c6a3e6611e5b413b9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4a27e27f786c1e8ff2672c2c6a3e6611e5b413b9 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4a2d55f656a8617558ca6f7969cd076ef34e0abf:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4a2d55f656a8617558ca6f7969cd076ef34e0abf \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4aa05262142a398c35ea545c8b1434422073afdb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4aa05262142a398c35ea545c8b1434422073afdb \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4aa990cfdcc8e24f692b19833d8f1b99a5495349:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4aa990cfdcc8e24f692b19833d8f1b99a5495349 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4b13d5221dd6efd45ea863447c27ff742afb6364:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4b13d5221dd6efd45ea863447c27ff742afb6364 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4b2be254df02746b0a16c0dc238a1fea241c5094:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4b2be254df02746b0a16c0dc238a1fea241c5094 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4b6986c1dee4185f9d2b84f4a3d30f73817274ce:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4b6986c1dee4185f9d2b84f4a3d30f73817274ce \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4bb2add9e4d322dc90a5dcb0e42eeb7de130c095:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4bb2add9e4d322dc90a5dcb0e42eeb7de130c095 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4bb2f5a133ab9babd4f4a32bfcf3d462468740c0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4bb2f5a133ab9babd4f4a32bfcf3d462468740c0 \
vendor/google/panther/proprietary/vendor/firmware/carrierconfig/confseqs/4c46b9f9e36937264235365044ce58ded02e5b29:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4c46b9f9e36937264235365044ce58ded02e5b29 \