-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbluejay-vendor.mk
1800 lines (1793 loc) · 285 KB
/
bluejay-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/bluejay
PRODUCT_COPY_FILES += \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/1and1_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/1and1_de.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/2degrees_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/2degrees_nz.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/321communications_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/321communications_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/48_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/48_ie.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/4ka_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/4ka_sk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/a1_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/a1_bg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_bg.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/a1_hr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_hr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/a1_mk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_mk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/a1_si.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_si.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/ahamo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ahamo_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/airbus_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/airbus_de.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/airbus_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/airbus_fr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/airtel_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/airtel_in.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/ais_th.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ais_th.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/altice_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/altice_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/alticeroaming_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/alticeroaming_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/andorratelecom_ad.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/andorratelecom_ad.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/antel_uy.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/antel_uy.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/appalachian_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/appalachian_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/apt_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/apt_tw.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/asda_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/asda_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/assurance_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/assurance_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/astca_as.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/astca_as.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/astoundbroadband_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/astoundbroadband_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/att5g_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att5g_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/att5gsa_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att5gsa_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/att_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att_mx.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/att_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/attbootstrap_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/attbootstrap_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/attmvnos_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/attmvnos_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/axis_id.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/axis_id.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/base_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/base_be.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/batelco_bh.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/batelco_bh.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/bell_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bell_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/bite_lt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bite_lt.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/bite_lv.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bite_lv.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/bluegrass_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bluegrass_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/bob_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bob_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/boost_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/boost_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/boosttmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/boosttmo_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/bouygues_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bouygues_fr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/bsnl_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bsnl_in.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/btb_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/btb_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/btc_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/btc_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cablemovil_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cablemovil_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/carolinawest_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/carolinawest_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/carrier_list.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/carrier_list.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/celcom_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/celcom_my.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cellcom_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcom_il.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cellcom_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcom_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cellcommno_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcommno_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/celluarone_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/celluarone_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/chatr_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/chatr_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/chinamobile_hk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/chinamobile_hk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cht_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cht_tw.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cityfone_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cityfone_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/claro_br.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/claro_br.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/claro_pr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/claro_pr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/congstar_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/congstar_de.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/consumercellularatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/consumercellularatt_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/consumercellulartmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/consumercellulartmo_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/coopvoce_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/coopvoce_it.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/coppervalley_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/coppervalley_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/coriolis_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/coriolis_fr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cox_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cox_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cricket5g_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cricket5g_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cricket_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cricket_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cspire_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cspire_nl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/cspire_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cspire_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/default.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/default.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/digi_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digi_hu.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/digi_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digi_my.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/digi_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digi_ro.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/digimobil_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/digimobil_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/dish5gsa_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dish5gsa_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/dishatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dishatt_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/dito_ph.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dito_ph.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/dna_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dna_fi.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/docomo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomo_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/docomomvno_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomomvno_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/docomopacific_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomopacific_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/dtac_th.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/dtac_th.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/du_ae.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/du_ae.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/eastlink_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eastlink_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/ee_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ee_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/eeyoumobility_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eeyoumobility_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/eir_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eir_ie.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/elisa1_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/elisa1_fi.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/elisa2_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/elisa2_fi.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/elisa_ee.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/elisa_ee.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/enreach_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/enreach_nl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/eplus_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eplus_de.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/erate_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/erate_no.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/esn_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/esn_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/etisalat_ae.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/etisalat_ae.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/euskaltel_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/euskaltel_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/evolve_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/evolve_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/fastweb_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fastweb_it.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/fet_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fet_tw.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/fi_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fi_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/fi_tmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fi_tmo_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/fido_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fido_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/finetwork_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/finetwork_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/firstnet_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnet_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/firstnetpacific2_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnetpacific2_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/firstnetpacific_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnetpacific_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/fizz_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fizz_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/fl1_li.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fl1_li.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/free_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_fr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/free_gp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_gp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/free_mq.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_mq.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/free_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_re.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/freedommobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/freedommobile_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/gamma_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/gamma_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/gci_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/gci_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/gibtel_gi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/gibtel_gi.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/giffgaff_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/giffgaff_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/giga_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/giga_sg.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/globe_ph.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/globe_ph.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/guuk_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/guuk_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/h3_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/h3_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/h3_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_ie.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/h3_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_se.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/h3g27202_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3g27202_ie.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/halebop_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/halebop_se.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/helium_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/helium_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/help_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/help_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/homobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/homobile_it.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/hotmobile_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/hotmobile_il.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/ice_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ice_no.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/idea_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/idea_in.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/idmobile_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/idmobile_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/iliad_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/iliad_it.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/inland_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/inland_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/iwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/iwireless_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/jazztel_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/jazztel_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/jcommobile_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/jcommobile_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/kddi5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddi5gsa_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/kddi_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddi_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/kddimvno5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddimvno5gsa_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/kddimvno_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddimvno_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/kena_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kena_it.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/koodo_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/koodo_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/kpn_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kpn_nl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lebara_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lebara_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_fr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lebara_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lebara_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lebara_nl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/liberty_pr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/liberty_pr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lifecell_ua.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lifecell_ua.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/linemo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/linemo_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/llamaya_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/llamaya_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lmt_lv.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lmt_lv.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lowi_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lowi_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/luckymobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/luckymobile_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lum_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lum_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lyca_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lyca_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lyca_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lyca_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lycamobile_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lycamobile_pt.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/lycamobile_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/lycamobile_se.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/m1_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/m1_sg.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/manxcontract_im.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/manxcontract_im.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/manxprepaid_im.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/manxprepaid_im.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/masmovil_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/masmovil_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/maxis_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/maxis_my.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/mediacom_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mediacom_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/melita_mt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/melita_mt.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/meo_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/meo_pt.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/metropcs_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/metropcs_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/mobifone_vn.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mobifone_vn.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/mobily_sa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mobily_sa.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/monacotelecom_mc.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/monacotelecom_mc.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/movistar_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/movistar_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/movistar_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/movistar_mx.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/mucho_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mucho_ch.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/mvnoconnect_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/mvnoconnect_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/netcomgroup_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/netcomgroup_fr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/nexphone_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nexphone_ch.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/nextech_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nextech_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/no_sim.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/no_sim.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/nos_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nos_pt.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/nova_gr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nova_gr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/nova_is.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/nova_is.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/o2_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2_cz.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/o2_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2_de.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/o2_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2_sk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/o2postpaid_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2postpaid_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/o2prepaid_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2prepaid_de.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/o2prepaid_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2prepaid_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/omantel_om.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/omantel_om.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/one_me.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/one_me.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/onecall_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/onecall_no.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/ooredoo_kw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ooredoo_kw.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/ooredoo_qa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ooredoo_qa.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/optimera_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/optimera_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/optus_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/optus_au.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/orange_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_be.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/orange_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/orange_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_fr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/orange_gp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_gp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/orange_lu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_lu.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/orange_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_pl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/orange_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_re.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/orange_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_ro.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/orange_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_sk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/others.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/others.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/paradisemobile_bm.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/paradisemobile_bm.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/partner_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/partner_il.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/pcmobilebell_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pcmobilebell_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/pelephone_il.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pelephone_il.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/pepephone_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pepephone_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/play_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/play_pl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/plintron_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/plintron_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/plus_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/plus_pl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/post_lu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/post_lu.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/postemobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/postemobile_it.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/povo5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/povo5gsa_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/povo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/povo_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/proximus_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/proximus_be.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/publicmobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/publicmobile_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/pwg_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pwg_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/qlink_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/qlink_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/r_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/r_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/racc_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/racc_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/rakuten_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rakuten_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/reachmobileatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/reachmobileatt_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/redpocketatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/redpocketatt_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/redpockettmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/redpockettmo_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/republicwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/republicwireless_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/rjio_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rjio_in.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/rogers5g_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogers5g_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/rogers_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogers_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/rogerswpn_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogerswpn_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/salt_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/salt_ch.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/salt_li.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/salt_li.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/sasktel_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sasktel_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/sfr_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sfr_fr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/shaw_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/shaw_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/simba_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/simba_sg.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/siminn_is.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/siminn_is.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/simple_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/simple_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/simyo_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/simyo_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/singtel_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/singtel_sg.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/skinny_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/skinny_nz.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/skt_kr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/skt_kr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/sky_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sky_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/skylo_zz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/skylo_zz.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/smart_ph.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smart_ph.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/smartfren_id.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smartfren_id.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/smartone_hk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smartone_hk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/smarty_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smarty_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/softbank_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/softbank_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/solomobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/solomobile_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/spark_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spark_nz.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/spectrum_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spectrum_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/spectrummso_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spectrummso_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/spectrummsotest_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spectrummsotest_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/spmtelecom_pm.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spmtelecom_pm.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/sprint_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprint_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/sprintprepaid_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprintprepaid_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/sprintwholesale_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprintwholesale_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/spusu_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spusu_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/ssimobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ssimobile_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/starhub_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/starhub_sg.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/stc_bh.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/stc_bh.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/stc_kw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/stc_kw.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/stc_sa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/stc_sa.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/strata_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/strata_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/sunrise_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sunrise_ch.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/superdrug_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/superdrug_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/sweno_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sweno_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/swisscom_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/swisscom_ch.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/swisscom_li.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/swisscom_li.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/talkmobile_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/talkmobile_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tango_lu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tango_lu.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tango_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tango_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tbaytel_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tbaytel_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tchibo_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tchibo_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tchibo_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tchibo_de.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tdc_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tdc_dk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telavox_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telavox_se.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telcel_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telcel_mx.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telco_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telco_re.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tele2_ee.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_ee.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tele2_lt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_lt.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tele2_lv.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_lv.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tele2_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_se.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telecable2_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telecable2_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telekom_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_de.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telekom_gr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_gr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telekom_hr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_hr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telekom_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_hu.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telekom_me.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_me.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telekom_mk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_mk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telekom_pl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_pl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telekom_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_ro.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telekom_si.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_si.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telekom_sk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_sk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telemach_hr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telemach_hr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telemach_si.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telemach_si.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telenet_be.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenet_be.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telenor_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_dk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telenor_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_no.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telenor_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_se.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telia_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_dk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telia_ee.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_ee.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telia_fi.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_fi.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telia_lt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_lt.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telia_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_no.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telia_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_se.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telkomsel_id.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telkomsel_id.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tello_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tello_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telstra_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telstra_au.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/telus_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telus_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tesco_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tesco_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/test001_zz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/test001_zz.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/three_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/three_dk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tim_br.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tim_br.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tim_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tim_it.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tmobile_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tmobile_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_cz.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tmobile_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_nl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tmobile_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tmomvno_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmomvno_nl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tmomvno_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmomvno_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tracfoneatt_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfoneatt_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tracfonetmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfonetmo_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tracfoneverizon_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfoneverizon_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/truemove_th.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/truemove_th.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/truphone_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/truphone_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/truphone_zz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/truphone_zz.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/tstar_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tstar_tw.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/turkcell_tr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/turkcell_tr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/turktelekom_tr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/turktelekom_tr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/twm_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/twm_tw.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/u264a_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264a_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/u264a_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264a_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/u264ab_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264ab_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/u264ao_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264ao_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/u264ap_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/u264ap_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/ultra_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ultra_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/umobile_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/umobile_my.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/unifi_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/unifi_my.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/unionwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/unionwireless_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/unitedwireless_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/unitedwireless_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/uqmobile5gsa_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/uqmobile5gsa_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/uqmobile_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/uqmobile_jp.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/uscc_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/uscc_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/verizon_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/verizon_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/verymobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/verymobile_it.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/viaero_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/viaero_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/videotron_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/videotron_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/viettel_vn.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/viettel_vn.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vimla_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vimla_se.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vinaphone_vn.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vinaphone_vn.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/virgin_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_ca.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/virgin_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/virgin_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/virgintelco_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgintelco_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/visible_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/visible_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/visiblev_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/visiblev_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/viti_pf.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/viti_pf.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vivacom_bg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vivacom_bg.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vivo_br.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vivo_br.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_au.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_cz.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_de.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_gb.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_gr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_gr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_hu.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_ie.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_in.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_it.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_nl.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_nz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_nz.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_om.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_om.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_pt.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_pt.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_qa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_qa.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_ro.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_ro.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/vodafone_tr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_tr.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/walmart_mx.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/walmart_mx.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/webbing_hk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/webbing_hk.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/windtre_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/windtre_it.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/xfinity2_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/xfinity2_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/xfinity_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/xfinity_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/xfinitymso_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/xfinitymso_us.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/yes_my.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yes_my.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/yesss_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yesss_at.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/yettel_bg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yettel_bg.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/yettel_hu.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yettel_hu.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/yoigo_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/yoigo_es.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/zain_bh.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zain_bh.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/zain_kw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zain_kw.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/zain_sa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zain_sa.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/zeop_re.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/zeop_re.pb \
vendor/google/bluejay/proprietary/product/etc/CarrierSettings/ztar_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ztar_us.pb
PRODUCT_COPY_FILES += \
vendor/google/bluejay/proprietary/product/etc/ambient/matcher_tah.leveldb:$(TARGET_COPY_OUT_PRODUCT)/etc/ambient/matcher_tah.leveldb \
vendor/google/bluejay/proprietary/product/etc/felica/common.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/common.cfg \
vendor/google/bluejay/proprietary/product/etc/felica/mfm.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/mfm.cfg \
vendor/google/bluejay/proprietary/product/etc/felica/mfs.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/mfs.cfg \
vendor/google/bluejay/proprietary/product/etc/firmware/music_detector.descriptor:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.descriptor \
vendor/google/bluejay/proprietary/product/etc/firmware/music_detector.sound_model:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.sound_model \
vendor/google/bluejay/proprietary/product/etc/firmware/music_detector.sound_model_2:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.sound_model_2 \
vendor/google/bluejay/proprietary/product/etc/firmware/music_detector.sound_model_tflite:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.sound_model_tflite \
vendor/google/bluejay/proprietary/product/etc/permissions/androidx.camera.extensions.impl.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/androidx.camera.extensions.impl.xml \
vendor/google/bluejay/proprietary/product/etc/permissions/com.android.omadm.service.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.omadm.service.xml \
vendor/google/bluejay/proprietary/product/etc/permissions/com.android.sdm.plugins.connmo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.connmo.xml \
vendor/google/bluejay/proprietary/product/etc/permissions/com.android.sdm.plugins.dcmo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.dcmo.xml \
vendor/google/bluejay/proprietary/product/etc/permissions/com.android.sdm.plugins.diagmon.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.diagmon.xml \
vendor/google/bluejay/proprietary/product/etc/permissions/com.google.android.hardwareinfo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.google.android.hardwareinfo.xml \
vendor/google/bluejay/proprietary/product/etc/permissions/com.google.omadm.trigger.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.google.omadm.trigger.xml \
vendor/google/bluejay/proprietary/product/etc/permissions/com.verizon.apn.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.verizon.apn.xml \
vendor/google/bluejay/proprietary/product/etc/permissions/com.verizon.services.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.verizon.services.xml \
vendor/google/bluejay/proprietary/product/etc/permissions/features-verizon.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/features-verizon.xml \
vendor/google/bluejay/proprietary/product/etc/permissions/privapp-permissions-google-p-lineage.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/privapp-permissions-google-p-lineage.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/GoogleCamera_6gb_or_more_ram.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/GoogleCamera_6gb_or_more_ram.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/allowlist_com.android.omadm.service.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/allowlist_com.android.omadm.service.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/allowlist_com.shannon.imsservice.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/allowlist_com.shannon.imsservice.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/google-hiddenapi-package-whitelist.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/google-hiddenapi-package-whitelist.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/nexus.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/nexus.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/pixel_experience_2017.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2017.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/pixel_experience_2018.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2018.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/pixel_experience_2019.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2019.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/pixel_experience_2019_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2019_midyear.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/pixel_experience_2020.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2020.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/pixel_experience_2020_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2020_midyear.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/pixel_experience_2021.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2021.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/pixel_experience_2021_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2021_midyear.xml \
vendor/google/bluejay/proprietary/product/etc/sysconfig/pixel_experience_2022_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2022_midyear.xml \
vendor/google/bluejay/proprietary/system_ext/etc/default-permissions/default-permissions-euiccpixel.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/default-permissions/default-permissions-euiccpixel.xml \
vendor/google/bluejay/proprietary/system_ext/etc/init/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/init/[email protected] \
vendor/google/bluejay/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/bluejay/proprietary/system_ext/etc/permissions/com.android.omadm.radioconfig.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.omadm.radioconfig.xml \
vendor/google/bluejay/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/bluejay/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/bluejay/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/bluejay/proprietary/system_ext/etc/permissions/com.google.euiccpixel.permissions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.euiccpixel.permissions.xml \
vendor/google/bluejay/proprietary/system_ext/etc/permissions/com.google.euiccpixel.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.euiccpixel.xml \
vendor/google/bluejay/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/bluejay/proprietary/system_ext/etc/permissions/com.shannon.imsservice.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.shannon.imsservice.xml \
vendor/google/bluejay/proprietary/system_ext/etc/permissions/com.shannon.qualifiednetworksservice.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.shannon.qualifiednetworksservice.xml \
vendor/google/bluejay/proprietary/system_ext/etc/permissions/com.shannon.rcsservice.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.shannon.rcsservice.xml \
vendor/google/bluejay/proprietary/system_ext/etc/permissions/google-ril.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/google-ril.xml \
vendor/google/bluejay/proprietary/system_ext/etc/permissions/oemrilhook.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/oemrilhook.xml \
vendor/google/bluejay/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/bluejay/proprietary/system_ext/etc/permissions/vzw_mvs_permissions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/vzw_mvs_permissions.xml \
vendor/google/bluejay/proprietary/system_ext/etc/public.libraries-google.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/public.libraries-google.txt \
vendor/google/bluejay/proprietary/system_ext/priv-app/EuiccSupportPixel/DKA_RC7_DVT.in:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/DKA_RC7_DVT.in \
vendor/google/bluejay/proprietary/system_ext/priv-app/EuiccSupportPixel/DKA_RC7_DVT.up:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/DKA_RC7_DVT.up \
vendor/google/bluejay/proprietary/system_ext/priv-app/EuiccSupportPixel/DKA_RC7_EVT.up:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/DKA_RC7_EVT.up
PRODUCT_PACKAGES += \
libdmengine \
libdmjavaplugin \
libedgetpu_dba.google \
libmediaadaptor \
com.google.edgetpu_app_service-V3-ndk \
com.google.edgetpu_vendor_service-V2-ndk \
VZWAPNLib \
AppDirectedSMSService \
CarrierSettings_signed_49.0.645958608 \
CarrierWifi \
ConnMO \
DCMO \
DMService \
DevicePersonalizationPrebuiltPixel2021-U.32_V.7_playstore_aiai_20240725.00_RC08 \
DiagMon \
EuiccGoogle \
HardwareInfo \
HotwordEnrollmentOKGoogleFUSIONPro \
HotwordEnrollmentXGoogleFUSIONPro \
OemDmTrigger \
PixelCameraServices \
TetheringEntitlement \
WfcActivation \
OemRilHookService \
CarrierSetup \
ConnectivityThermalPowerManager \
EuiccGoogleOverlay \
EuiccSupportPixel \
EuiccSupportPixelPermissions \
MyVerizonServices \
OemRilService \
RilConfigService \
ShannonIms \
ShannonQualifiedNetworksService \
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 \
oem-iptables-init \
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
PRODUCT_COPY_FILES += \
vendor/google/bluejay/proprietary/vendor/etc/Khronos/OpenCL/vendors/ARM.icd:$(TARGET_COPY_OUT_VENDOR)/etc/Khronos/OpenCL/vendors/ARM.icd \
vendor/google/bluejay/proprietary/vendor/etc/Khronos/OpenCL/vendors/ARM32.icd:$(TARGET_COPY_OUT_VENDOR)/etc/Khronos/OpenCL/vendors/ARM32.icd \
vendor/google/bluejay/proprietary/vendor/etc/atc_profile.json:$(TARGET_COPY_OUT_VENDOR)/etc/atc_profile.json \
vendor/google/bluejay/proprietary/vendor/etc/bluetooth/bt_vendor.conf:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth/bt_vendor.conf \
vendor/google/bluejay/proprietary/vendor/etc/chre/activity.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/activity.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/activity.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/activity.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/ar_bridge.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ar_bridge.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/ar_bridge.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ar_bridge.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/blue.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/blue.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/blue.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/blue.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/capo.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/capo.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/capo.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/capo.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/cc.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/cc.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/cc.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/cc.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/columbus.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/columbus.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/columbus_lite.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus_lite.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/columbus_lite.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/columbus_lite.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/drop.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/drop.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/drop.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/drop.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/geofence.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/geofence.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/geofence.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/geofence.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/gesture.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/gesture.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/gesture.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/gesture.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/health.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/health.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/health.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/health.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/imu_cal.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/imu_cal.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/imu_cal.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/imu_cal.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/ip_health.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ip_health.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/ip_health.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/ip_health.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/libchre_log_database.bin:$(TARGET_COPY_OUT_VENDOR)/etc/chre/libchre_log_database.bin \
vendor/google/bluejay/proprietary/vendor/etc/chre/motiondetector.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/motiondetector.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/motiondetector.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/motiondetector.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/preloaded_nanoapps.json:$(TARGET_COPY_OUT_VENDOR)/etc/chre/preloaded_nanoapps.json \
vendor/google/bluejay/proprietary/vendor/etc/chre/sd.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sd.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/sd.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sd.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/sensorcollector.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sensorcollector.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/sensorcollector.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/sensorcollector.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/smartbatching.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/smartbatching.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/smartbatching.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/smartbatching.so \
vendor/google/bluejay/proprietary/vendor/etc/chre/uv_exposure.napp_header:$(TARGET_COPY_OUT_VENDOR)/etc/chre/uv_exposure.napp_header \
vendor/google/bluejay/proprietary/vendor/etc/chre/uv_exposure.so:$(TARGET_COPY_OUT_VENDOR)/etc/chre/uv_exposure.so \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_202.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_202.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_204.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_204.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_206.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_206.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_208.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_208.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_214.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_214.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_216.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_216.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_218.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_218.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_219.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_219.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_222.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_222.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_226.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_226.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_228.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_228.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_230.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_230.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_231.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_231.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_232.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_232.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_234.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_234.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_235.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_235.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_242.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_242.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_250.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_250.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_255.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_255.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_260.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_260.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_262.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_262.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_268.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_268.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_272.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_272.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_276.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_276.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_293.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_293.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_297.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_297.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_330.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_330.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_334.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_334.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_338.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_338.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_340.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_340.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_370.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_370.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_372.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_372.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_374.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_374.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_404.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_404.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_405.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_405.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_425.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_425.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_440.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_440.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_441.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_441.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_450.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_450.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_452.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_452.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_460.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_460.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_466.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_466.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_505.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_505.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_525.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_525.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_647.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_647.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_704.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_704.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_706.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_706.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_708.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_708.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_710.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_710.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_712.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_712.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_714.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_714.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_716.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_716.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_722.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_722.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_724.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_724.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_730.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_730.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_732.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_732.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_734.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_734.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_736.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_736.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_738.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_738.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_740.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_740.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_744.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_744.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_746.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_746.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_748.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_748.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_750.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_750.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_DEFAULT.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_DEFAULT.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/DbEcc_ICCID.xml:$(TARGET_COPY_OUT_VENDOR)/etc/database/DbEcc_ICCID.xml \
vendor/google/bluejay/proprietary/vendor/etc/database/ecc_version:$(TARGET_COPY_OUT_VENDOR)/etc/database/ecc_version \
vendor/google/bluejay/proprietary/vendor/etc/displayconfig/display_id_4619827677550801152.xml:$(TARGET_COPY_OUT_VENDOR)/etc/displayconfig/display_id_4619827677550801152.xml \
vendor/google/bluejay/proprietary/vendor/etc/init/Exynos_C2.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/Exynos_C2.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/android.hardware.authsecret-service.citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.authsecret-service.citadel.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/android.hardware.bluetooth-service.bcmbtlinux.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.bluetooth-service.bcmbtlinux.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/bluejay/proprietary/vendor/etc/init/android.hardware.contexthub-service.generic.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.contexthub-service.generic.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/bluejay/proprietary/vendor/etc/init/android.hardware.input.processor-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.input.processor-service.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/bluejay/proprietary/vendor/etc/init/android.hardware.oemlock-service.citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.oemlock-service.citadel.rc \
vendor/google/bluejay/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/bluejay/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/bluejay/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/bluejay/proprietary/vendor/etc/init/android.hardware.weaver-service.citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.weaver-service.citadel.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/aocd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/aocd.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/aocxd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/aocxd.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/bipchmgr.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/bipchmgr.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/cbd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/cbd.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/citadeld.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/citadeld.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/com.google.edgetpu.dba-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/com.google.edgetpu.dba-service.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/com.google.edgetpu.tachyon-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/com.google.edgetpu.tachyon-service.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/dmd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/dmd.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/fingerprint-goodix.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/fingerprint-goodix.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/bluejay/proprietary/vendor/etc/init/init.camera.set-interrupts-ownership.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.camera.set-interrupts-ownership.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/init.gps.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.gps.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/init.modem_logging_control.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.modem_logging_control.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/init.resku_rescue.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.resku_rescue.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/init.sscoredump.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.sscoredump.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/init.usf.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.usf.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/init.vendor_telephony.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.vendor_telephony.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/init_dauntless.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init_dauntless.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/libg3a_gabc.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/libg3a_gabc.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/libg3a_gaf.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/libg3a_gaf.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/libg3a_ghawb.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/libg3a_ghawb.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/pktrouter.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/pktrouter.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/rfsd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/rfsd.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/rild_exynos.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/rild_exynos.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/bluejay/proprietary/vendor/etc/init/trusty_metricsd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/trusty_metricsd.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/twoshay.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/twoshay.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/bluejay/proprietary/vendor/etc/init/vendor.google.battery_mitigation-default.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.battery_mitigation-default.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/bluejay/proprietary/vendor/etc/init/vendor.google.google_battery-default.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.google_battery-default.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/vendor.google.modem_svc_sit.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.google.modem_svc_sit.rc \
vendor/google/bluejay/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/bluejay/proprietary/vendor/etc/input_classifier_model.pb:$(TARGET_COPY_OUT_VENDOR)/etc/input_classifier_model.pb \
vendor/google/bluejay/proprietary/vendor/etc/libg3a_standalone_gabc_rc:$(TARGET_COPY_OUT_VENDOR)/etc/libg3a_standalone_gabc_rc \
vendor/google/bluejay/proprietary/vendor/etc/libg3a_standalone_gaf_rc:$(TARGET_COPY_OUT_VENDOR)/etc/libg3a_standalone_gaf_rc \
vendor/google/bluejay/proprietary/vendor/etc/libg3a_standalone_ghawb_rc:$(TARGET_COPY_OUT_VENDOR)/etc/libg3a_standalone_ghawb_rc \
vendor/google/bluejay/proprietary/vendor/etc/media_codecs_aosp_c2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_aosp_c2.xml \
vendor/google/bluejay/proprietary/vendor/etc/modem_stat.conf:$(TARGET_COPY_OUT_VENDOR)/etc/modem_stat.conf \
vendor/google/bluejay/proprietary/vendor/etc/open_carrier_info.dat:$(TARGET_COPY_OUT_VENDOR)/etc/open_carrier_info.dat \
vendor/google/bluejay/proprietary/vendor/etc/permissions/android.hardware.strongbox_keystore.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.strongbox_keystore.xml \
vendor/google/bluejay/proprietary/vendor/etc/permissions/android.hardware.telephony.gsm.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.gsm.xml \
vendor/google/bluejay/proprietary/vendor/etc/permissions/android.hardware.telephony.ims.singlereg.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.ims.singlereg.xml \
vendor/google/bluejay/proprietary/vendor/etc/permissions/android.hardware.telephony.ims.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.ims.xml \
vendor/google/bluejay/proprietary/vendor/etc/permissions/com.google.android.camera.experimental2021.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.google.android.camera.experimental2021.xml \
vendor/google/bluejay/proprietary/vendor/etc/public.libraries.txt:$(TARGET_COPY_OUT_VENDOR)/etc/public.libraries.txt \
vendor/google/bluejay/proprietary/vendor/etc/seccomp_policy/codec2.vendor.base.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/codec2.vendor.base.policy \
vendor/google/bluejay/proprietary/vendor/etc/seccomp_policy/codec2.vendor.ext.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/codec2.vendor.ext.policy \
vendor/google/bluejay/proprietary/vendor/etc/sensors/device_cal_info:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/device_cal_info \
vendor/google/bluejay/proprietary/vendor/etc/sensors/hals.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/hals.conf \
vendor/google/bluejay/proprietary/vendor/etc/sensors/registry/append/motion_state.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/append/motion_state.reg \
vendor/google/bluejay/proprietary/vendor/etc/sensors/registry/bluejay_dev.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/bluejay_dev.reg \
vendor/google/bluejay/proprietary/vendor/etc/sensors/registry/bluejay_evt.reg:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/bluejay_evt.reg \
vendor/google/bluejay/proprietary/vendor/etc/touchflow.pb:$(TARGET_COPY_OUT_VENDOR)/etc/touchflow.pb \
vendor/google/bluejay/proprietary/vendor/etc/twoshay_config.json:$(TARGET_COPY_OUT_VENDOR)/etc/twoshay_config.json \
vendor/google/bluejay/proprietary/vendor/firmware/SensorHub.patch:$(TARGET_COPY_OUT_VENDOR)/firmware/SensorHub.patch \
vendor/google/bluejay/proprietary/vendor/firmware/aoc.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/aoc.bin \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd.cal:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd.cal_ES19:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_ES19 \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd.cal_EU:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_EU \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd.cal_JPN:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_JPN \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd.cal_MMW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_MMW \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd.cal_ROW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd.cal_ROW \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd_clm.blob:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd_clm.blob_EU:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_EU \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd_clm.blob_JPN:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_JPN \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd_clm.blob_MMW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_MMW \
vendor/google/bluejay/proprietary/vendor/firmware/bcmdhd_clm.blob_ROW:$(TARGET_COPY_OUT_VENDOR)/firmware/bcmdhd_clm.blob_ROW \
vendor/google/bluejay/proprietary/vendor/firmware/brcm/BCM.hcd:$(TARGET_COPY_OUT_VENDOR)/firmware/brcm/BCM.hcd \
vendor/google/bluejay/proprietary/vendor/firmware/brcm/BTFW_B.hcd:$(TARGET_COPY_OUT_VENDOR)/firmware/brcm/BTFW_B.hcd \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/build.info:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/build.info \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/cfg.db:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/cfg.db \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/cfg.sha2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/cfg.sha2 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/006f33b0be2f436fdf50bb0e2acf713af96cc604:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/006f33b0be2f436fdf50bb0e2acf713af96cc604 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/01461594150bd233ec888d53effe3c979991a74d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/01461594150bd233ec888d53effe3c979991a74d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/016e167721af143fae3321720d0407fb63fb5869:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/016e167721af143fae3321720d0407fb63fb5869 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/01b0a7ee2bb8e6467f3f6661bbad8bc203d68ca2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/01b0a7ee2bb8e6467f3f6661bbad8bc203d68ca2 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/021ba0c5239ab4d5b234ef143d2aba8fcf25d5c9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/021ba0c5239ab4d5b234ef143d2aba8fcf25d5c9 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/032ad52f23e6a7f88f7eb19cdd5c76bfb64157c1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/032ad52f23e6a7f88f7eb19cdd5c76bfb64157c1 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/037deb145cf8bd029963f35f5128fd2610da4b7d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/037deb145cf8bd029963f35f5128fd2610da4b7d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/03b791b58ce377e938fda4910f38d5bce822b333:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/03b791b58ce377e938fda4910f38d5bce822b333 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0438b18b6b7375c34f6ac744fd8849cc903712d9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0438b18b6b7375c34f6ac744fd8849cc903712d9 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/04e26a753aa17736e7db155c5cdf713d8477eecb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/04e26a753aa17736e7db155c5cdf713d8477eecb \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/054db4f2e3f9db05819af873c4fd7d0dca9b91c5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/054db4f2e3f9db05819af873c4fd7d0dca9b91c5 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/057568c99c8a1cf2bf26f9e55ccea4fd6618e9c6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/057568c99c8a1cf2bf26f9e55ccea4fd6618e9c6 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/057b838024817f0c12d46c17c3d2cf9b9b8d9e10:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/057b838024817f0c12d46c17c3d2cf9b9b8d9e10 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/064dfb94cf8a3a67a8e221ea144064d126fd16ce:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/064dfb94cf8a3a67a8e221ea144064d126fd16ce \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/073837b4a30374554d77005fb66d150d36d4988c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/073837b4a30374554d77005fb66d150d36d4988c \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/07d97278963fe7036c3e67101bf9517f51ddb4ab:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/07d97278963fe7036c3e67101bf9517f51ddb4ab \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/07eee6ad4d35efcb867c4b9ff48d4ba5afe5a77d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/07eee6ad4d35efcb867c4b9ff48d4ba5afe5a77d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/088645c2620028392e02e4e227ece7a2c24f452e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/088645c2620028392e02e4e227ece7a2c24f452e \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/08e1a1db49322a7bcad18e9dd2ed55e139662ef8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/08e1a1db49322a7bcad18e9dd2ed55e139662ef8 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/090cc6b960f646c2bd774b3a366705e60d678cce:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/090cc6b960f646c2bd774b3a366705e60d678cce \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/096254de0bed90986179ea5d498caaab17f8726e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/096254de0bed90986179ea5d498caaab17f8726e \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/098190922b3136e558ade1cc94012259486ce439:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/098190922b3136e558ade1cc94012259486ce439 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0b498a20a3f8adfa4ce098ca035d1cae9300c876:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0b498a20a3f8adfa4ce098ca035d1cae9300c876 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0c69d06c70d4f9b503306853bbd7be9966939c2d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0c69d06c70d4f9b503306853bbd7be9966939c2d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0c9bf629aa6852a5efb072ed4de2489f8311237b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0c9bf629aa6852a5efb072ed4de2489f8311237b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0ca2f84e65a3578637dc3fca2767f01a1d3cd5c3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0ca2f84e65a3578637dc3fca2767f01a1d3cd5c3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0cf11418ae548ba3ff5b9626e4d05804643f4629:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0cf11418ae548ba3ff5b9626e4d05804643f4629 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0dd35a93683f7f38eceb2f2979ad7f24aa615152:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0dd35a93683f7f38eceb2f2979ad7f24aa615152 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0e2ef2915da4b8bb3ab03fcb47bed88e8fe01ef4:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e2ef2915da4b8bb3ab03fcb47bed88e8fe01ef4 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0e34486e8aa68ad5167ffa5adecf04f74ea84e9b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e34486e8aa68ad5167ffa5adecf04f74ea84e9b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0e4674f2fe71c5d8e6fedf1edc6b74adbc42370d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e4674f2fe71c5d8e6fedf1edc6b74adbc42370d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0e4b8fc76c33f6e04176bebe492ad6243526955b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0e4b8fc76c33f6e04176bebe492ad6243526955b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0ee548b86c7af897700803e1c690fc06ae671b6d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0ee548b86c7af897700803e1c690fc06ae671b6d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0f79f653b8a27f63053ed5a1803901e1d611a14d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0f79f653b8a27f63053ed5a1803901e1d611a14d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0f7ea1d6a953f72e1ba79b6d991bc07724b0a85f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0f7ea1d6a953f72e1ba79b6d991bc07724b0a85f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/0fef60f17be1506282f0f753a5fb45cf6cf1cbe3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/0fef60f17be1506282f0f753a5fb45cf6cf1cbe3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/10063b45ce232642c023eb1796e13dc1db06eb16:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/10063b45ce232642c023eb1796e13dc1db06eb16 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/105b6c5a3c863c0169af012914173ebc70b6018b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/105b6c5a3c863c0169af012914173ebc70b6018b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/105ee3a845ad70edcc48b72ba0a56c1b293992f6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/105ee3a845ad70edcc48b72ba0a56c1b293992f6 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/114fb4d974913f4bedbdbeda20b3fc656913472c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/114fb4d974913f4bedbdbeda20b3fc656913472c \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1187c9862416c19928c696bfa16176082d1ae972:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1187c9862416c19928c696bfa16176082d1ae972 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/13320c1b8ea5ec01e2b888fc8068c5c331391ea9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/13320c1b8ea5ec01e2b888fc8068c5c331391ea9 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/13931bc3f03ab474d80c3ff13b17c5b6f38269a7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/13931bc3f03ab474d80c3ff13b17c5b6f38269a7 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/142174b4a33092a2d2085fe387b7ea6b6005ab08:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/142174b4a33092a2d2085fe387b7ea6b6005ab08 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/143dbb088a0cd398cdbdfc22983e7b1b4d433c64:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/143dbb088a0cd398cdbdfc22983e7b1b4d433c64 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/15b34e08ff7db49d54237dd131ff0c6dba44bedb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/15b34e08ff7db49d54237dd131ff0c6dba44bedb \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1630fe0f8990561817ec6f8c6346221ae9048cf9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1630fe0f8990561817ec6f8c6346221ae9048cf9 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/16b8b648bca4c4b650adafeef3b1bdf764d06616:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/16b8b648bca4c4b650adafeef3b1bdf764d06616 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/16d3ef281965d46e682370e72d24087ee1e286bf:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/16d3ef281965d46e682370e72d24087ee1e286bf \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/170ade63f1f603faf14c573ebef71d9b5bc18abe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/170ade63f1f603faf14c573ebef71d9b5bc18abe \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/175666bbe762ed5153e39fcd801f99b7417a7918:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/175666bbe762ed5153e39fcd801f99b7417a7918 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/185beb0c19c44fdad6052498314a588a5a22daa3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/185beb0c19c44fdad6052498314a588a5a22daa3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1880e22c5de6847350d6f49c7b2c6cabcafa64c3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1880e22c5de6847350d6f49c7b2c6cabcafa64c3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/18a5a7a42a31858ad476260ab252d45bbf711002:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/18a5a7a42a31858ad476260ab252d45bbf711002 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/19462b4f3ce4fb94ef74300a4eb728d290f9c502:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/19462b4f3ce4fb94ef74300a4eb728d290f9c502 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/195f1cc3a40f27b6795ac69c8288725b501ef0a2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/195f1cc3a40f27b6795ac69c8288725b501ef0a2 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/197eb7e449dfef39a6f3c87b8039befb24248bfa:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/197eb7e449dfef39a6f3c87b8039befb24248bfa \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1983d41304188dd28ca559f3a199471c96669336:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1983d41304188dd28ca559f3a199471c96669336 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/19d55d0e67f467da6fddb6c13548f66bb8e3f0d3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/19d55d0e67f467da6fddb6c13548f66bb8e3f0d3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/19e2c494b64b861e632d1f76b3b02539c3d4a439:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/19e2c494b64b861e632d1f76b3b02539c3d4a439 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1a5d53e3414fd1fed6a46bbb8ae3233886133660:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1a5d53e3414fd1fed6a46bbb8ae3233886133660 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1adbd8ba955b57632bc740bfc2b3d9003dc3b104:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1adbd8ba955b57632bc740bfc2b3d9003dc3b104 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1af4d087afa7245f67f79d3fdeb019a91875b31a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1af4d087afa7245f67f79d3fdeb019a91875b31a \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1b52b9d2f5246c15fb33e59a8144dae9f357a378:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1b52b9d2f5246c15fb33e59a8144dae9f357a378 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1bbc96f19bc1d21c0dda8c22e418110888e40636:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1bbc96f19bc1d21c0dda8c22e418110888e40636 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1c040f99a69e4ec6fc25547574cc3a1437b63b76:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1c040f99a69e4ec6fc25547574cc3a1437b63b76 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1c44928fa33084dca7137753a17ec427d3c35187:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1c44928fa33084dca7137753a17ec427d3c35187 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1c4b5c9652317baca56a404338a8244bf7e32158:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1c4b5c9652317baca56a404338a8244bf7e32158 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1cbd47547afe6dd3076f547080a18f8736493d58:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1cbd47547afe6dd3076f547080a18f8736493d58 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1cf5743e4cf0622cea01c8afecfc9dac8e9248fc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1cf5743e4cf0622cea01c8afecfc9dac8e9248fc \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1d51ac4de5a21809d20d6d3d28303e356d5a2c66:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1d51ac4de5a21809d20d6d3d28303e356d5a2c66 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1dae7a6bcb53eddff0d9874066e0f451cd74e1c0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1dae7a6bcb53eddff0d9874066e0f451cd74e1c0 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1dbab0fd109cdedfe1b5c5d944997ad07478e892:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1dbab0fd109cdedfe1b5c5d944997ad07478e892 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1dcb08be44869beb1b152f0f179ec281cad2f7e5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1dcb08be44869beb1b152f0f179ec281cad2f7e5 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1df4fed2c9a73a28e7698bfbf18d0539885425fe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1df4fed2c9a73a28e7698bfbf18d0539885425fe \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1e8185eba18a04c88758c9ea21aef69ff2a368ce:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1e8185eba18a04c88758c9ea21aef69ff2a368ce \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1e87916a1ea2bcfa628761f707ad6895c568fe37:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1e87916a1ea2bcfa628761f707ad6895c568fe37 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/1f3ae091e938effcc43e9c2661fcde479be0d42d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/1f3ae091e938effcc43e9c2661fcde479be0d42d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/200919e5c90fab8e35cfc95a95d2edb4984bd37f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/200919e5c90fab8e35cfc95a95d2edb4984bd37f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/201d7a1b5e5bdb6f2307217f78811afc0710b91e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/201d7a1b5e5bdb6f2307217f78811afc0710b91e \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/205cc7652254ade4a41fd529d69c0bba52f4d4ff:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/205cc7652254ade4a41fd529d69c0bba52f4d4ff \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/20ebc1d56033f71a8dcc5cc467bf53ae9c410ba1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/20ebc1d56033f71a8dcc5cc467bf53ae9c410ba1 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/216c7f81770cda72e4e0de5436e3d0124c1e2e58:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/216c7f81770cda72e4e0de5436e3d0124c1e2e58 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2189fc889071187fd2adc8d42fd059d7b57fecb5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2189fc889071187fd2adc8d42fd059d7b57fecb5 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/21ef11c43c2378dd1d346b5bb236fee158f8da47:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/21ef11c43c2378dd1d346b5bb236fee158f8da47 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/21f9744415ccd13217aae6ef787e3260948638ca:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/21f9744415ccd13217aae6ef787e3260948638ca \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/223348b0a27de9c48a8700bfc3dbddebe888a4c7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/223348b0a27de9c48a8700bfc3dbddebe888a4c7 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/225f11df7acb6586ec9adcc212e2ad42ab85dcc9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/225f11df7acb6586ec9adcc212e2ad42ab85dcc9 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/22a300e706abae99b9b9587fb4c6bb830a1fa42d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/22a300e706abae99b9b9587fb4c6bb830a1fa42d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/23245b24ca95607d35f5dc8b8ba2dbe8280e22d3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/23245b24ca95607d35f5dc8b8ba2dbe8280e22d3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2329ab89b1d3f97d70f0a67058eb1a2ba0e331b4:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2329ab89b1d3f97d70f0a67058eb1a2ba0e331b4 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/235596fc86c4b6ad9d83f7a3223ed33a9340c356:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/235596fc86c4b6ad9d83f7a3223ed33a9340c356 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/237187a5656d4b20941a7f2cb99a96fb5283410f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/237187a5656d4b20941a7f2cb99a96fb5283410f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2458d75f428ec27f0e922300d4e3e50eaeae89aa:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2458d75f428ec27f0e922300d4e3e50eaeae89aa \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/25000a2424fedb926b740fde0db3475943d75825:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25000a2424fedb926b740fde0db3475943d75825 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/251daa6960e154cae4255716683a5eda5d4f1a7d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/251daa6960e154cae4255716683a5eda5d4f1a7d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/25987e6aae3ed648f1004324c137d14530ff038d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/25987e6aae3ed648f1004324c137d14530ff038d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2624ce9664a2d755241ea59dc469ec4d145fda70:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2624ce9664a2d755241ea59dc469ec4d145fda70 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/26dfb3a523c8259c54d3b9099d1e769f16a5812b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/26dfb3a523c8259c54d3b9099d1e769f16a5812b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/275bed9882b9fb4920d8d4a7f97422e525f82c2b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/275bed9882b9fb4920d8d4a7f97422e525f82c2b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/27fead673b430c8650bf224f9b23276fd71bdb96:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/27fead673b430c8650bf224f9b23276fd71bdb96 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/284c7453518b71f18437b0ed56956fb10cd30e82:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/284c7453518b71f18437b0ed56956fb10cd30e82 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/287fc0e63131d538286712bdc703a359346d393e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/287fc0e63131d538286712bdc703a359346d393e \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2897c06c3b301c3b82451998fcdf9a003a100463:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2897c06c3b301c3b82451998fcdf9a003a100463 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/28ae3c9cb89fa290f48b76c3f1afcb8a6895d1fc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/28ae3c9cb89fa290f48b76c3f1afcb8a6895d1fc \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/28e445a1626ba2e1e8ae1c70e97e2cfd8371755f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/28e445a1626ba2e1e8ae1c70e97e2cfd8371755f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2910d9e52b9d61fe3f06e1f62217b705f0a2ade6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2910d9e52b9d61fe3f06e1f62217b705f0a2ade6 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2a0d747a1fa88080d8ed420951b1455eb9e933a8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2a0d747a1fa88080d8ed420951b1455eb9e933a8 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2ab7bd0a0d4f2795c1b90d29d0dfe824ceceaa23:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ab7bd0a0d4f2795c1b90d29d0dfe824ceceaa23 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2af0e9683efa9bef83c736390ee29614bd7457c5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2af0e9683efa9bef83c736390ee29614bd7457c5 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2b2d6e80230ec7e5d4bc675e1d59f6d2460553e2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2b2d6e80230ec7e5d4bc675e1d59f6d2460553e2 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2bcecb157a78dc9e783aef64e5823de6ec98b686:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2bcecb157a78dc9e783aef64e5823de6ec98b686 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2c24467395ebf33f86503bceac2f9db71e205f95:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2c24467395ebf33f86503bceac2f9db71e205f95 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2c7474b9e371e09b9b036a32e23dd8e878465b87:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2c7474b9e371e09b9b036a32e23dd8e878465b87 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2cb783615e9fb15f9ea25d61281a0edc8d55fb37:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2cb783615e9fb15f9ea25d61281a0edc8d55fb37 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2d50b395d1df0f61eeb2344605648820c933b607:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2d50b395d1df0f61eeb2344605648820c933b607 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2d5f42425170a58095418457fea18fddf5d7a9fe:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2d5f42425170a58095418457fea18fddf5d7a9fe \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2e053916f0cd7d6bd57d80b7879e4eddee75836d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2e053916f0cd7d6bd57d80b7879e4eddee75836d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2ecf1b2e52c7e02661ddb4171b8f4326f8795b6e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ecf1b2e52c7e02661ddb4171b8f4326f8795b6e \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2ee6b3459a1616669a276732ebb0db706a111568:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2ee6b3459a1616669a276732ebb0db706a111568 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/2f61041ab6517340bb837289c7e515eb60110f92:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/2f61041ab6517340bb837289c7e515eb60110f92 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3030c5aceac74a066355f754e1abbb22396fc820:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3030c5aceac74a066355f754e1abbb22396fc820 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/308aaefc9305346f7fc5e5cd2f08e089a6ba4276:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/308aaefc9305346f7fc5e5cd2f08e089a6ba4276 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3096ecc9ed8ac52f1a4e4374b87b60b4247c26ee:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3096ecc9ed8ac52f1a4e4374b87b60b4247c26ee \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/30f2e52e0d6bfa8ffe1dda850c0fbb7461bdd3c8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/30f2e52e0d6bfa8ffe1dda850c0fbb7461bdd3c8 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3125bbdea0121fcf6cedd6902cd1c07dd123f16a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3125bbdea0121fcf6cedd6902cd1c07dd123f16a \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/31ddfb63b3382f2d2f75b2e194eadb28a54f7999:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31ddfb63b3382f2d2f75b2e194eadb28a54f7999 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/31f71c049f1ae5dd6cbf27feef3849443c658d31:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/31f71c049f1ae5dd6cbf27feef3849443c658d31 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/33c8b03cb73786076afbce588004a8e2b1a107bf:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/33c8b03cb73786076afbce588004a8e2b1a107bf \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/34514a0cc731a6644622138f5684e9c09fa7fd76:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/34514a0cc731a6644622138f5684e9c09fa7fd76 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/345be7e6d41111147a6217ab1e80ec2587a4c0c8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/345be7e6d41111147a6217ab1e80ec2587a4c0c8 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/345fe19d76fdd67c978305a549050fa463d0333b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/345fe19d76fdd67c978305a549050fa463d0333b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/35ab784024e60329d3df46440617d36d58c6dc52:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/35ab784024e60329d3df46440617d36d58c6dc52 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/35f22793aabf71a4aaa67e43000a972a602d7235:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/35f22793aabf71a4aaa67e43000a972a602d7235 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/36f4d136b82418ca298a9e070518cbc3e13f56cb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/36f4d136b82418ca298a9e070518cbc3e13f56cb \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/37a270e8267acfad14223162b0b97bf2ccbc762b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/37a270e8267acfad14223162b0b97bf2ccbc762b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/38042c4180370b944a723678609d99fbfc80c3ff:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/38042c4180370b944a723678609d99fbfc80c3ff \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/380dd6aa591c7fd47253513988775adc077b3cec:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/380dd6aa591c7fd47253513988775adc077b3cec \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/38b37ae146e4f56f263cced9bfb1f22b91ff0166:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/38b37ae146e4f56f263cced9bfb1f22b91ff0166 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3910e166b4d65b743216cfc395fc9ba6955ecbf6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3910e166b4d65b743216cfc395fc9ba6955ecbf6 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/39ad3110b8f84821ca22cfbd995914f2149521d2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/39ad3110b8f84821ca22cfbd995914f2149521d2 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/39b27cb3542b3af5181e3953a418cc349d426f3c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/39b27cb3542b3af5181e3953a418cc349d426f3c \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/39b731cb882ccfbb8509609ef627778b36948bcc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/39b731cb882ccfbb8509609ef627778b36948bcc \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3a147e29c5eb579d90876c964821d1d690a20654:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3a147e29c5eb579d90876c964821d1d690a20654 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3a3bb6f33f9e75e1e8eddc01174015ebb1bf8997:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3a3bb6f33f9e75e1e8eddc01174015ebb1bf8997 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3a983189947824fe39195daff78868512db8441d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3a983189947824fe39195daff78868512db8441d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3ab9616abc976e2e21d07eb0ea7f510b87543d18:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3ab9616abc976e2e21d07eb0ea7f510b87543d18 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3bd6ce34a06cd16c78f2f31c4b0a540478bbf5e2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3bd6ce34a06cd16c78f2f31c4b0a540478bbf5e2 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3c3baf883c867eb17edbc1e0c934c976fa46bb8e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c3baf883c867eb17edbc1e0c934c976fa46bb8e \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3c4fe0e8fffe4143cca3c3b84495af53ad329be2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c4fe0e8fffe4143cca3c3b84495af53ad329be2 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3c51cb81d84cb0e20a5ef55776c6745000a44d25:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c51cb81d84cb0e20a5ef55776c6745000a44d25 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3c795399a7bfe6ca5e59d7cbb5e508bd03688898:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3c795399a7bfe6ca5e59d7cbb5e508bd03688898 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3d3532d63ab7f609630fb41c8e4138db1ce428c6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d3532d63ab7f609630fb41c8e4138db1ce428c6 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3d5c0459515ea88ba2ba3295bdd15479102465b4:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d5c0459515ea88ba2ba3295bdd15479102465b4 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3d83851048f1b416f6f88994389c1ccb3fb628ff:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d83851048f1b416f6f88994389c1ccb3fb628ff \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3d8853ea57cfae25840075514ea2c1a020afe193:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d8853ea57cfae25840075514ea2c1a020afe193 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3d9cc6e0c454d4b3f41464fae7e6c07a3b3e616f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3d9cc6e0c454d4b3f41464fae7e6c07a3b3e616f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3da1aebaa9f962c4a817a99f497e638702f1f404:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3da1aebaa9f962c4a817a99f497e638702f1f404 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3e498290b24251065309581e49d089269851b7b9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3e498290b24251065309581e49d089269851b7b9 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3e5c5fb6e8ae2e4fd9ea2d3cd91d4da998ecbe9b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3e5c5fb6e8ae2e4fd9ea2d3cd91d4da998ecbe9b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3e641e9a9fec284eb60e75d265e36e4b20797b58:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3e641e9a9fec284eb60e75d265e36e4b20797b58 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3e9bda6e1cc44e8edfec7bf917f5df5fa0b2be55:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3e9bda6e1cc44e8edfec7bf917f5df5fa0b2be55 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3eda3cf7cc9fed3dd3aaceffe8202f5bfbf63fc0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3eda3cf7cc9fed3dd3aaceffe8202f5bfbf63fc0 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3f42f70b8867153575bbd7994d4e0401517e0b29:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3f42f70b8867153575bbd7994d4e0401517e0b29 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/3faac1cb6ded8bf94fab7fadabbb04a856cba8b7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/3faac1cb6ded8bf94fab7fadabbb04a856cba8b7 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/405126a2845b9a2ceb9bf3f4bc35333ba1bdbac9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/405126a2845b9a2ceb9bf3f4bc35333ba1bdbac9 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/40797a1728b2a2d8c69fd68b9c3020e42ecdcad0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/40797a1728b2a2d8c69fd68b9c3020e42ecdcad0 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/40a4aa97ef40ea2d582c867701b6c0006350cc5d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/40a4aa97ef40ea2d582c867701b6c0006350cc5d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/40aa32ea9402adc4859500b5ed50f30aed8ca424:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/40aa32ea9402adc4859500b5ed50f30aed8ca424 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/439a2057b7ada44b06d0c55734e342ea0442a520:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/439a2057b7ada44b06d0c55734e342ea0442a520 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/43cba0607fce60f618a930f4b44bf1f4b47f4528:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/43cba0607fce60f618a930f4b44bf1f4b47f4528 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/441a915ae1ea2da1e8b96ad63ce0e1092847b979:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/441a915ae1ea2da1e8b96ad63ce0e1092847b979 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/444c5c30202a3471868c72baf53ba372c939a710:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/444c5c30202a3471868c72baf53ba372c939a710 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/44715512d2ffb704c4b8cd5898d3cd026022c252:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/44715512d2ffb704c4b8cd5898d3cd026022c252 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/44793533bbff79b4d5d503c4868c91c6948288a9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/44793533bbff79b4d5d503c4868c91c6948288a9 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/448f5eea09bc77a16a24a33b40d49d2bedd7ae43:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/448f5eea09bc77a16a24a33b40d49d2bedd7ae43 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4527fda3094e3efd6ef111275915dce593e60d84:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4527fda3094e3efd6ef111275915dce593e60d84 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/45360a3da3972e57af80abb42aad22c42f44505f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/45360a3da3972e57af80abb42aad22c42f44505f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/458f63b3d9c036242b8fe16f0025a965eafa3be8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/458f63b3d9c036242b8fe16f0025a965eafa3be8 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/459e991a8bac4f79fcd9393c8dac36e0cfa51eaa:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/459e991a8bac4f79fcd9393c8dac36e0cfa51eaa \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/462d4a88a02484096c6980cb842aa6936bc52458:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/462d4a88a02484096c6980cb842aa6936bc52458 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/465642dfe949fd63d352851d5374b5895be45781:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/465642dfe949fd63d352851d5374b5895be45781 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/465bdd9397779ddb8ec8deb7f6ced70121db9276:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/465bdd9397779ddb8ec8deb7f6ced70121db9276 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/46bf141b54be2a8a891bbacb5bb637b48612247a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/46bf141b54be2a8a891bbacb5bb637b48612247a \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/46ce883643b5d39032f3f9c949d2c54b5fc2d525:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/46ce883643b5d39032f3f9c949d2c54b5fc2d525 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/47050cfe7eb180cd3662a57c251570324b207025:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47050cfe7eb180cd3662a57c251570324b207025 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4726d09d5aa0348c746be8b21a03de3cd1e0e46f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4726d09d5aa0348c746be8b21a03de3cd1e0e46f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/474bfb00b55b7b1e35dbbd60c4f45d143265c4ca:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/474bfb00b55b7b1e35dbbd60c4f45d143265c4ca \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/47b1f6502c6d332d51e2bfd3ab7154a01e259ce3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47b1f6502c6d332d51e2bfd3ab7154a01e259ce3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/47d45edf349a833b0d36bb09846cc228306c467d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47d45edf349a833b0d36bb09846cc228306c467d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/47d826b0349840039be2dd2702c1025bb7268756:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/47d826b0349840039be2dd2702c1025bb7268756 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/480aa556d0ca46a77dd38db8f3e3177c6943dbcf:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/480aa556d0ca46a77dd38db8f3e3177c6943dbcf \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4922772fe5e3cca24c697fa61b8b417a950ca546:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4922772fe5e3cca24c697fa61b8b417a950ca546 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4a4358d6686aeff8b79b9736ded40e63f8195864:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4a4358d6686aeff8b79b9736ded40e63f8195864 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4b7429413bc05ad23ba967c0f5d0f9562b61b1da:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4b7429413bc05ad23ba967c0f5d0f9562b61b1da \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4bb2f5a133ab9babd4f4a32bfcf3d462468740c0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4bb2f5a133ab9babd4f4a32bfcf3d462468740c0 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4be483e10f0cb1566345c403b56d791765ed505b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4be483e10f0cb1566345c403b56d791765ed505b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4bf7bbfb4df3bb0ea54b3b61d722f6e402f120d5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4bf7bbfb4df3bb0ea54b3b61d722f6e402f120d5 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4c43e6f688ed15df607006238cc2c1b0e5d67c70:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4c43e6f688ed15df607006238cc2c1b0e5d67c70 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4c7cb51ee9e49aa899092ab1b7b8d5bb8c567440:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4c7cb51ee9e49aa899092ab1b7b8d5bb8c567440 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4c9b943caecced7c9876ba4fe711d99c71e60d49:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4c9b943caecced7c9876ba4fe711d99c71e60d49 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4d336bc04e31cf9740dcdb8d9528b0788f6605bb:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4d336bc04e31cf9740dcdb8d9528b0788f6605bb \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4db65de3ceae574e5f69f72e1ee1fcb0ac4af585:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4db65de3ceae574e5f69f72e1ee1fcb0ac4af585 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4de5e2e177d2dc863fbe1c34ee8f72b2ec0bc6b5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4de5e2e177d2dc863fbe1c34ee8f72b2ec0bc6b5 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4dfbfe85ca5432bd032b2ec9303abb55bcce2799:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4dfbfe85ca5432bd032b2ec9303abb55bcce2799 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4eaf80ecb6c85abe44bb8eb193205f05cabe96e3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4eaf80ecb6c85abe44bb8eb193205f05cabe96e3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/4ec6906c73e2b643a12db5267e11e13472c0cf9d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/4ec6906c73e2b643a12db5267e11e13472c0cf9d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/500329abac100a953a7396b54b36be57d333022f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/500329abac100a953a7396b54b36be57d333022f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5062c3dfe3175f7159d91a9700b00826aff9d9ad:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5062c3dfe3175f7159d91a9700b00826aff9d9ad \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5066c4bf09219903c8fab009d6f9f6adab1dd1c3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5066c4bf09219903c8fab009d6f9f6adab1dd1c3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/51183c01cce01003dfc913e111d6a69299dbc76d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/51183c01cce01003dfc913e111d6a69299dbc76d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/51dec1ab373221a186576c6028f440fdc5439006:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/51dec1ab373221a186576c6028f440fdc5439006 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/51df4ff2e8a67d70654be7158236ca4efd4699f8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/51df4ff2e8a67d70654be7158236ca4efd4699f8 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/528f03ca8cdebe4cd321fa14ea090dfb80a474f3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/528f03ca8cdebe4cd321fa14ea090dfb80a474f3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5408a64269d66974ea418160defbcbe6161c1709:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5408a64269d66974ea418160defbcbe6161c1709 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/54b3e870d305104a7576109752901ca06e8d1289:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/54b3e870d305104a7576109752901ca06e8d1289 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/54fdd0aa0dc5970dcd5d030fb6ce5036f338a57c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/54fdd0aa0dc5970dcd5d030fb6ce5036f338a57c \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/556e56c6105f13830e00cfceec18c45aaf42acd4:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/556e56c6105f13830e00cfceec18c45aaf42acd4 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/55eaac5f534050b68f1caaa2e81fe8523cd46a84:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/55eaac5f534050b68f1caaa2e81fe8523cd46a84 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/566b28c8abf57ba34016cd8ebaa501bc2af00447:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/566b28c8abf57ba34016cd8ebaa501bc2af00447 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5670a9ee5e56646f5e2998b003bc2dae0d6d6235:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5670a9ee5e56646f5e2998b003bc2dae0d6d6235 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/56cb10847a0e6a2a3d4e0722891e9e33c6c448f6:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/56cb10847a0e6a2a3d4e0722891e9e33c6c448f6 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/574f85915cf52ed82833e5e6c8228ffd14485449:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/574f85915cf52ed82833e5e6c8228ffd14485449 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/57ea67d9ca7da02731edfae4ba538d29e143b38f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/57ea67d9ca7da02731edfae4ba538d29e143b38f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/582be8a74330df7d15e4942b88b21cf9a3454177:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/582be8a74330df7d15e4942b88b21cf9a3454177 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5837e1608cc4d79354e22c7757339d0099a01535:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5837e1608cc4d79354e22c7757339d0099a01535 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/58f52f29c161ccaefd7024519b92d2578497d1d0:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/58f52f29c161ccaefd7024519b92d2578497d1d0 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/59c8843b075d45dda94294dd39357ca580f9d933:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/59c8843b075d45dda94294dd39357ca580f9d933 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/59de0739e8e6d8378f84488bae30704530fff3f2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/59de0739e8e6d8378f84488bae30704530fff3f2 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5a1d1d4b6287213c5ed52dd19e9b05216aa78aa5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5a1d1d4b6287213c5ed52dd19e9b05216aa78aa5 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5a82f0f0ed1f0e7796fdea7f8dcfa3303f3033f5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5a82f0f0ed1f0e7796fdea7f8dcfa3303f3033f5 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5a923e5649a66a810abef2b8f83323709215e846:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5a923e5649a66a810abef2b8f83323709215e846 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5bc5375ee3544b20af996bdd362bb53643b5ebbc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5bc5375ee3544b20af996bdd362bb53643b5ebbc \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5bf7a5fc56e9553722441be62c99e0cf7f89e32f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5bf7a5fc56e9553722441be62c99e0cf7f89e32f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5ca9196a719f6ebe22203ddd39a0106429d18c45:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5ca9196a719f6ebe22203ddd39a0106429d18c45 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5d8b71710e81592ec290ed5fbcd9c3b63dc082a1:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5d8b71710e81592ec290ed5fbcd9c3b63dc082a1 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5db653304f344cc36f3567a7cf01ecaab30d5733:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5db653304f344cc36f3567a7cf01ecaab30d5733 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5e0271cd2afbc7306ea2c9d3bb82ddc3a7658323:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5e0271cd2afbc7306ea2c9d3bb82ddc3a7658323 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5e6af65d184d3effe9f847315662444823fb8a0e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5e6af65d184d3effe9f847315662444823fb8a0e \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5e8c8018611be70a4cd63f40343d72c277c43056:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5e8c8018611be70a4cd63f40343d72c277c43056 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5ec2892d35aef88e5274408de6b28e82ae3dbd3c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5ec2892d35aef88e5274408de6b28e82ae3dbd3c \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5ee61f51bf807f87c8188fbbf8a814d2ea070e1a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5ee61f51bf807f87c8188fbbf8a814d2ea070e1a \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5f7e29d2f11b563feeef1ec1296e9c5e79d9b87e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5f7e29d2f11b563feeef1ec1296e9c5e79d9b87e \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5fdbb6586365a385e4963fe765279c177f87b492:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5fdbb6586365a385e4963fe765279c177f87b492 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/5fe68f2a1e07dcb85ae91467bc8310c786585d36:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/5fe68f2a1e07dcb85ae91467bc8310c786585d36 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/60ac1e40ec9bd78f20cd591db51008cf7fa833f3:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/60ac1e40ec9bd78f20cd591db51008cf7fa833f3 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/60e2cfe5bdffce618c5ba7cf73a0be00b3d7dd50:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/60e2cfe5bdffce618c5ba7cf73a0be00b3d7dd50 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6157862b4676a7d5719ef742b042c35d58e088a2:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6157862b4676a7d5719ef742b042c35d58e088a2 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/615e4cf62f5ca06fdbb7542427fd1b8c763c170b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/615e4cf62f5ca06fdbb7542427fd1b8c763c170b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/61d3a246663d63858ecf3e8de81806e5e8e35c8a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/61d3a246663d63858ecf3e8de81806e5e8e35c8a \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/629d6d49379e4b8a4d2a97cf1ebdebdf97166692:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/629d6d49379e4b8a4d2a97cf1ebdebdf97166692 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6449d6d9a1e33d1ba913e9e386ed642ee5c5cdf8:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6449d6d9a1e33d1ba913e9e386ed642ee5c5cdf8 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/64af296fdd24bcdae204bc87d59421ed26d7d5b7:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/64af296fdd24bcdae204bc87d59421ed26d7d5b7 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6505c8fda0d510e529c6ccd92183e7eb9464cfc4:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6505c8fda0d510e529c6ccd92183e7eb9464cfc4 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/658759c34778e7f7aa09e53dc53e910b6f0410f5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/658759c34778e7f7aa09e53dc53e910b6f0410f5 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/66b5e43fd2e0369739069ac52fd5074e452a1c25:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/66b5e43fd2e0369739069ac52fd5074e452a1c25 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/677ede71b6e0871704eed17c699a10e2022d6d1e:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/677ede71b6e0871704eed17c699a10e2022d6d1e \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/67864ecc24659f832c82561d95fdf926f61158de:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/67864ecc24659f832c82561d95fdf926f61158de \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/67b4eec44792409dd4025444b5c6ded832295572:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/67b4eec44792409dd4025444b5c6ded832295572 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/67cf7ee2e035bf2e2d9173a989dada5426fe8f35:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/67cf7ee2e035bf2e2d9173a989dada5426fe8f35 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/67f071638a770de44d9eb728e0562234a11f5651:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/67f071638a770de44d9eb728e0562234a11f5651 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6816ff49d023a6063f1618390174f8e95c61a5e9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6816ff49d023a6063f1618390174f8e95c61a5e9 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6864b7686a6a6e28a93cf352f2d9e6de1bae9550:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6864b7686a6a6e28a93cf352f2d9e6de1bae9550 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/69ae08935d5331d57678071f8c0a8b4f91949b55:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/69ae08935d5331d57678071f8c0a8b4f91949b55 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/69eab8efdc0ff9215afb62373b25e1867dabc50c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/69eab8efdc0ff9215afb62373b25e1867dabc50c \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6a357e2a37e0d72128a24fe901a55819f6bc7ce5:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6a357e2a37e0d72128a24fe901a55819f6bc7ce5 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6a5910ed6947392a4dfcfe59336805089d16253c:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6a5910ed6947392a4dfcfe59336805089d16253c \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6b7cd838439444cb9f2a9b3d545035e9b01db950:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6b7cd838439444cb9f2a9b3d545035e9b01db950 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6bad9f83d012284e82c06696688584b9f28c789d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6bad9f83d012284e82c06696688584b9f28c789d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6bdc59f897631af7811e3201cbc58e5999de2600:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6bdc59f897631af7811e3201cbc58e5999de2600 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6c3b05d3712cd989ed7cc993b7dcb0a313de3dcc:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6c3b05d3712cd989ed7cc993b7dcb0a313de3dcc \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6cb8bf6e67de3415523384309534defdfa387239:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6cb8bf6e67de3415523384309534defdfa387239 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6cc3f92f93db90de71b45c5579bab2a24cb45eea:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6cc3f92f93db90de71b45c5579bab2a24cb45eea \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6d52f4fe2473265bbdf9f95f9b492bf95cc15428:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6d52f4fe2473265bbdf9f95f9b492bf95cc15428 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6d59080d2698eca37c69fb04b1ebf49c4b17159f:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6d59080d2698eca37c69fb04b1ebf49c4b17159f \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6d7e3eabf8cab7da6fec29a580e6f4519bd2404b:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6d7e3eabf8cab7da6fec29a580e6f4519bd2404b \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6dadb1c260c926602181c78d982cba0a81c1f16a:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6dadb1c260c926602181c78d982cba0a81c1f16a \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6daf643a50196efe276fd07a2ea2d02749604798:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6daf643a50196efe276fd07a2ea2d02749604798 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6f00359970eaa682de23ea38dd4e43ae3bfc3305:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6f00359970eaa682de23ea38dd4e43ae3bfc3305 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6f2e8461fff8b3d869f753b81114361ecde386a9:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6f2e8461fff8b3d869f753b81114361ecde386a9 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/6fdd94d4b171d97ad402487500850889aeb41a26:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/6fdd94d4b171d97ad402487500850889aeb41a26 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/7039949e5309efe780bbdc8d6294ae4c6144028d:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/7039949e5309efe780bbdc8d6294ae4c6144028d \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/705176c0b2bcdd1d425e09013c08e340c7615a71:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/705176c0b2bcdd1d425e09013c08e340c7615a71 \
vendor/google/bluejay/proprietary/vendor/firmware/carrierconfig/confseqs/7075e1418b88b8d93d8763a783458103b952dd27:$(TARGET_COPY_OUT_VENDOR)/firmware/carrierconfig/confseqs/7075e1418b88b8d93d8763a783458103b952dd27 \