-
Notifications
You must be signed in to change notification settings - Fork 0
/
coral-vendor.mk
2132 lines (2129 loc) · 280 KB
/
coral-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
#
# This file is generated by device/google/coral/setup-makefiles.sh
PRODUCT_SOONG_NAMESPACES += \
vendor/google/coral
PRODUCT_COPY_FILES += \
vendor/google/coral/proprietary/product/etc/CarrierSettings/a1_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/a1_at.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/ahamo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ahamo_jp.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/airtel_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/airtel_in.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/apt_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/apt_tw.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/assurance_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/assurance_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/att5g_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att5g_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/att5gsa_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att5gsa_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/att_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/att_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/bell_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bell_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/bluegrass_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bluegrass_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/boost_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/boost_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/boosttmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/boosttmo_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/bouygues_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/bouygues_fr.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/btb_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/btb_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/btc_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/btc_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/carrier_list.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/carrier_list.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/cellcom_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcom_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/cellcommno_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cellcommno_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/cht_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cht_tw.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/congstar_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/congstar_de.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/consumercellulartmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/consumercellulartmo_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/cricket5g_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cricket5g_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/cricket_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cricket_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/cspire_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/cspire_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/default.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/default.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/docomo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomo_jp.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/docomomvno_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/docomomvno_jp.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/ee_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/ee_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/eplus_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/eplus_de.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/esn_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/esn_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/fet_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fet_tw.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/fi_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fi_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/fido_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fido_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/firstnet_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnet_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/firstnetpacific2_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnetpacific2_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/firstnetpacific_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/firstnetpacific_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/fizz_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/fizz_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/free_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/free_fr.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/freedommobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/freedommobile_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/gamma_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/gamma_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/h3_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_at.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/h3_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/h3_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/h3_se.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/halebop_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/halebop_se.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/homobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/homobile_it.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/idea_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/idea_in.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/idmobile_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/idmobile_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/kddi_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddi_jp.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/kddimvno_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kddimvno_jp.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/kena_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kena_it.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/koodo_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/koodo_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/kpn_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/kpn_nl.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/linemo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/linemo_jp.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/luckymobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/luckymobile_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/metropcs_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/metropcs_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/movistar_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/movistar_es.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/o2_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2_de.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/o2postpaid_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2postpaid_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/o2prepaid_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2prepaid_de.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/o2prepaid_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/o2prepaid_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/onecall_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/onecall_no.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/optus_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/optus_au.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/orange_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_es.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/orange_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/orange_fr.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/others.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/others.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/pcmobilebell_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/pcmobilebell_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/povo_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/povo_jp.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/rakuten_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rakuten_jp.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/redpockettmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/redpockettmo_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/rjio_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rjio_in.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/rogers5g_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogers5g_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/rogers_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/rogers_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/sfr_fr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sfr_fr.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/shaw_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/shaw_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/simple_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/simple_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/singtel_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/singtel_sg.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/smarty_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/smarty_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/softbank_jp.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/softbank_jp.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/solomobile_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/solomobile_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/spectrum_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/spectrum_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/sprint_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprint_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/sprintprepaid_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprintprepaid_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/sprintwholesale_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sprintwholesale_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/starhub_sg.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/starhub_sg.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/stc_sa.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/stc_sa.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/sunrise_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/sunrise_ch.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/swisscom_ch.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/swisscom_ch.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/swisscom_li.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/swisscom_li.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tbaytel_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tbaytel_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tdc_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tdc_dk.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tele2_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tele2_se.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/telekom_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telekom_de.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/telenor_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_dk.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/telenor_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_no.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/telenor_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telenor_se.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/telia_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_dk.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/telia_no.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_no.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/telia_se.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telia_se.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/telstra_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telstra_au.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/telus_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/telus_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/three_dk.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/three_dk.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tim_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tim_it.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tmobile_at.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_at.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tmobile_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_cz.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tmobile_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_nl.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tmobile_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmobile_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tmomvno_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tmomvno_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tracfonetmo_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfonetmo_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tracfoneverizon_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tracfoneverizon_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/tstar_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/tstar_tw.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/twm_tw.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/twm_tw.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/uscc_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/uscc_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/verizon_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/verizon_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/verymobile_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/verymobile_it.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/videotron_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/videotron_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/virgin_ca.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_ca.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/virgin_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/virgin_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/virgin_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/visible_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/visible_us.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/vodafone_au.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_au.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/vodafone_cz.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_cz.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/vodafone_de.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_de.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/vodafone_es.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_es.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/vodafone_gb.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_gb.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/vodafone_ie.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_ie.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/vodafone_in.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_in.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/vodafone_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_it.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/vodafone_nl.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_nl.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/vodafone_tr.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/vodafone_tr.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/windtre_it.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/windtre_it.pb \
vendor/google/coral/proprietary/product/etc/CarrierSettings/xfinity_us.pb:$(TARGET_COPY_OUT_PRODUCT)/etc/CarrierSettings/xfinity_us.pb \
vendor/google/coral/proprietary/product/etc/ambient/matcher_tah.leveldb:$(TARGET_COPY_OUT_PRODUCT)/etc/ambient/matcher_tah.leveldb \
vendor/google/coral/proprietary/product/etc/felica/common.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/common.cfg \
vendor/google/coral/proprietary/product/etc/felica/mfm.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/mfm.cfg \
vendor/google/coral/proprietary/product/etc/felica/mfs.cfg:$(TARGET_COPY_OUT_PRODUCT)/etc/felica/mfs.cfg \
vendor/google/coral/proprietary/product/etc/firmware/music_detector.descriptor:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.descriptor \
vendor/google/coral/proprietary/product/etc/firmware/music_detector.sound_model:$(TARGET_COPY_OUT_PRODUCT)/etc/firmware/music_detector.sound_model \
vendor/google/coral/proprietary/product/etc/permissions/com.android.omadm.service.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.omadm.service.xml \
vendor/google/coral/proprietary/product/etc/permissions/com.android.sdm.plugins.connmo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.connmo.xml \
vendor/google/coral/proprietary/product/etc/permissions/com.android.sdm.plugins.dcmo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.dcmo.xml \
vendor/google/coral/proprietary/product/etc/permissions/com.android.sdm.plugins.diagmon.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.diagmon.xml \
vendor/google/coral/proprietary/product/etc/permissions/com.android.sdm.plugins.sprintdm.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.sprintdm.xml \
vendor/google/coral/proprietary/product/etc/permissions/com.android.sdm.plugins.usccdm.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.android.sdm.plugins.usccdm.xml \
vendor/google/coral/proprietary/product/etc/permissions/com.customermobile.preload.vzw.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.customermobile.preload.vzw.xml \
vendor/google/coral/proprietary/product/etc/permissions/com.google.android.hardwareinfo.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.google.android.hardwareinfo.xml \
vendor/google/coral/proprietary/product/etc/permissions/com.google.omadm.trigger.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.google.omadm.trigger.xml \
vendor/google/coral/proprietary/product/etc/permissions/com.verizon.apn.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.verizon.apn.xml \
vendor/google/coral/proprietary/product/etc/permissions/com.verizon.services.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.verizon.services.xml \
vendor/google/coral/proprietary/product/etc/permissions/features-verizon.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/features-verizon.xml \
vendor/google/coral/proprietary/product/etc/permissions/privapp-permissions-google-p.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/privapp-permissions-google-p.xml \
vendor/google/coral/proprietary/product/etc/permissions/qti_telephony_hidl_wrapper_prd.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/qti_telephony_hidl_wrapper_prd.xml \
vendor/google/coral/proprietary/product/etc/permissions/split-permissions-google.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/split-permissions-google.xml \
vendor/google/coral/proprietary/product/etc/res/images/charger/battery_fail.png:$(TARGET_COPY_OUT_PRODUCT)/etc/res/images/charger/battery_fail.png \
vendor/google/coral/proprietary/product/etc/res/images/charger/battery_scale.png:$(TARGET_COPY_OUT_PRODUCT)/etc/res/images/charger/battery_scale.png \
vendor/google/coral/proprietary/product/etc/res/images/charger/main_font.png:$(TARGET_COPY_OUT_PRODUCT)/etc/res/images/charger/main_font.png \
vendor/google/coral/proprietary/product/etc/res/values/charger/animation.txt:$(TARGET_COPY_OUT_PRODUCT)/etc/res/values/charger/animation.txt \
vendor/google/coral/proprietary/product/etc/sysconfig/GoogleCamera_6gb_or_more_ram.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/GoogleCamera_6gb_or_more_ram.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/adaptivecharging.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/adaptivecharging.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/allowlist_com.android.omadm.service.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/allowlist_com.android.omadm.service.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/google-hiddenapi-package-whitelist.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/google-hiddenapi-package-whitelist.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/google-staged-installer-whitelist.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/google-staged-installer-whitelist.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/google.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/google.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/google_build.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/google_build.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/nexus.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/nexus.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/pixel_2016_exclusive.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_2016_exclusive.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/pixel_2019_exclusive.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_2019_exclusive.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/pixel_experience_2017.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2017.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/pixel_experience_2018.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2018.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/pixel_experience_2019.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2019.xml \
vendor/google/coral/proprietary/product/etc/sysconfig/pixel_experience_2019_midyear.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/pixel_experience_2019_midyear.xml \
vendor/google/coral/proprietary/product/lib/libdmengine.so:$(TARGET_COPY_OUT_PRODUCT)/lib/libdmengine.so \
vendor/google/coral/proprietary/product/lib/libdmjavaplugin.so:$(TARGET_COPY_OUT_PRODUCT)/lib/libdmjavaplugin.so \
vendor/google/coral/proprietary/system_ext/bin/tcmd:$(TARGET_COPY_OUT_SYSTEM_EXT)/bin/tcmd \
vendor/google/coral/proprietary/system_ext/etc/init/tcmd.rc:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/init/tcmd.rc \
vendor/google/coral/proprietary/system_ext/etc/perf/wlc_model.tflite:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/perf/wlc_model.tflite \
vendor/google/coral/proprietary/system_ext/etc/permissions/audiosphere.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/audiosphere.xml \
vendor/google/coral/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/coral/proprietary/system_ext/etc/permissions/com.android.omadm.radioconfig.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.omadm.radioconfig.xml \
vendor/google/coral/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/coral/proprietary/system_ext/etc/permissions/com.google.euiccpixel.permissions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.euiccpixel.permissions.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/com.google.euiccpixel.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.google.euiccpixel.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/com.qualcomm.qcrilmsgtunnel.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.qualcomm.qcrilmsgtunnel.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/com.qualcomm.qmapbridge.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.qualcomm.qmapbridge.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/com.qualcomm.qti.imscmservice-V2.0-java.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.qualcomm.qti.imscmservice-V2.0-java.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/com.qualcomm.qti.imscmservice-V2.1-java.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.qualcomm.qti.imscmservice-V2.1-java.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/com.qualcomm.qti.imscmservice-V2.2-java.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.qualcomm.qti.imscmservice-V2.2-java.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/com.qualcomm.qti.izattools.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.qualcomm.qti.izattools.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/com.verizon.llkagent.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.verizon.llkagent.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/google-ril.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/google-ril.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/izat.xt.srv.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/izat.xt.srv.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/obdm_permissions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/obdm_permissions.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/org_codeaurora_ims.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/org_codeaurora_ims.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/privapp-permissions-google-se.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/privapp-permissions-google-se.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/qcrilhook.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/qcrilhook.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/qti_telephony_hidl_wrapper.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/qti_telephony_hidl_wrapper.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/qti_telephony_utils.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/qti_telephony_utils.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/uimremoteclient.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/uimremoteclient.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/uimremoteserver.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/uimremoteserver.xml \
vendor/google/coral/proprietary/system_ext/etc/permissions/vzw_mvs_permissions.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/vzw_mvs_permissions.xml \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/339/0/65536/mtp855.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/339/0/65536/mtp855.txt \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/339/0/65536/mtp855_6dof_config.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/339/0/65536/mtp855_6dof_config.xml \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/341/2/65536/svr845.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/341/2/65536/svr845.txt \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/356/0/65536/mtp865.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/356/0/65536/mtp865.txt \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/356/0/65536/mtp865_6dof_config.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/356/0/65536/mtp865_6dof_config.xml \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/356/1/131072/morpheus.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/356/1/131072/morpheus.txt \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/356/1/131072/morpheus_6dof_config.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/356/1/131072/morpheus_6dof_config.xml \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/356/1/65536/trinity.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/356/1/65536/trinity.txt \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/356/1/65536/trinity_6dof_config.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/356/1/65536/trinity_6dof_config.xml \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/415/0/131072/mtplahaina.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/415/0/131072/mtplahaina.txt \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/415/0/131072/mtplahaina_6dof_config.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/415/0/131072/mtplahaina_6dof_config.xml \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/415/0/65536/mtplahaina.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/415/0/65536/mtplahaina.txt \
vendor/google/coral/proprietary/system_ext/etc/qvr/cfg/415/0/65536/mtplahaina_6dof_config.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/cfg/415/0/65536/mtplahaina_6dof_config.xml \
vendor/google/coral/proprietary/system_ext/etc/qvr/qvr_hid_device_list.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/qvr_hid_device_list.txt \
vendor/google/coral/proprietary/system_ext/etc/qvr/qvr_usb_device_list.txt:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/qvr/qvr_usb_device_list.txt \
vendor/google/coral/proprietary/system_ext/etc/seccomp_policy/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/seccomp_policy/[email protected] \
vendor/google/coral/proprietary/system_ext/etc/sysconfig/qti_telephony_system_packages_config.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/sysconfig/qti_telephony_system_packages_config.xml \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/lib-imsvideocodec.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/lib-imsvideocodec.so \
vendor/google/coral/proprietary/system_ext/lib/lib-imsvt.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/lib-imsvt.so \
vendor/google/coral/proprietary/system_ext/lib/lib-imsvtextutils.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/lib-imsvtextutils.so \
vendor/google/coral/proprietary/system_ext/lib/lib-imsvtutils.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/lib-imsvtutils.so \
vendor/google/coral/proprietary/system_ext/lib/libMapService.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libMapService.so \
vendor/google/coral/proprietary/system_ext/lib/libOpenCL_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libOpenCL_system.so \
vendor/google/coral/proprietary/system_ext/lib/libQSEEComAPI_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libQSEEComAPI_system.so \
vendor/google/coral/proprietary/system_ext/lib/libadsprpc_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libadsprpc_system.so \
vendor/google/coral/proprietary/system_ext/lib/libbeluga.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libbeluga.so \
vendor/google/coral/proprietary/system_ext/lib/libbinauralrenderer_wrapper.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libbinauralrenderer_wrapper.qti.so \
vendor/google/coral/proprietary/system_ext/lib/libcdsprpc_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libcdsprpc_system.so \
vendor/google/coral/proprietary/system_ext/lib/libdiag_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libdiag_system.so \
vendor/google/coral/proprietary/system_ext/lib/libdolphin.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libdolphin.so \
vendor/google/coral/proprietary/system_ext/lib/libframeextension.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libframeextension.so \
vendor/google/coral/proprietary/system_ext/lib/libimscamera_jni.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libimscamera_jni.so \
vendor/google/coral/proprietary/system_ext/lib/libimsmedia_jni.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libimsmedia_jni.so \
vendor/google/coral/proprietary/system_ext/lib/libjnihelpers.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libjnihelpers.so \
vendor/google/coral/proprietary/system_ext/lib/liblayerext.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/liblayerext.qti.so \
vendor/google/coral/proprietary/system_ext/lib/liblistensoundmodel2.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/liblistensoundmodel2.qti.so \
vendor/google/coral/proprietary/system_ext/lib/libmdsprpc_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmdsprpc_system.so \
vendor/google/coral/proprietary/system_ext/lib/libmink-sock-native-api.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmink-sock-native-api.so \
vendor/google/coral/proprietary/system_ext/lib/libminksocket_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libminksocket_system.so \
vendor/google/coral/proprietary/system_ext/lib/libmmosal.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmmosal.so \
vendor/google/coral/proprietary/system_ext/lib/libmmparser_lite.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmmparser_lite.so \
vendor/google/coral/proprietary/system_ext/lib/libmwqemiptablemgr.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmwqemiptablemgr.so \
vendor/google/coral/proprietary/system_ext/lib/libqape.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqape.qti.so \
vendor/google/coral/proprietary/system_ext/lib/libqct_resampler.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqct_resampler.so \
vendor/google/coral/proprietary/system_ext/lib/libqmi_cci_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqmi_cci_system.so \
vendor/google/coral/proprietary/system_ext/lib/libqmi_encdec_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqmi_encdec_system.so \
vendor/google/coral/proprietary/system_ext/lib/libqspmsvc.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqspmsvc.so \
vendor/google/coral/proprietary/system_ext/lib/libsdm-disp-apis.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libsdm-disp-apis.qti.so \
vendor/google/coral/proprietary/system_ext/lib/libsdsprpc_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libsdsprpc_system.so \
vendor/google/coral/proprietary/system_ext/lib/libsecureui_svcsock_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libsecureui_svcsock_system.so \
vendor/google/coral/proprietary/system_ext/lib/libsecureuisvc_jni.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libsecureuisvc_jni.so \
vendor/google/coral/proprietary/system_ext/lib/libsensor_calibration.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libsensor_calibration.so \
vendor/google/coral/proprietary/system_ext/lib/libskewknob_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libskewknob_system.so \
vendor/google/coral/proprietary/system_ext/lib/libsmomo.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libsmomo.qti.so \
vendor/google/coral/proprietary/system_ext/lib/libsmomoconfig.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libsmomoconfig.qti.so \
vendor/google/coral/proprietary/system_ext/lib/libtracker_6dof_impl.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libtracker_6dof_impl.so \
vendor/google/coral/proprietary/system_ext/lib/libtrigger-handler.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libtrigger-handler.so \
vendor/google/coral/proprietary/system_ext/lib/libupdateprof.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libupdateprof.qti.so \
vendor/google/coral/proprietary/system_ext/lib/libvr_amb_engine.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libvr_amb_engine.so \
vendor/google/coral/proprietary/system_ext/lib/libvr_object_engine.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libvr_object_engine.so \
vendor/google/coral/proprietary/system_ext/lib/libvr_sam_wrapper.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libvr_sam_wrapper.so \
vendor/google/coral/proprietary/system_ext/lib/libvraudio.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libvraudio.so \
vendor/google/coral/proprietary/system_ext/lib/libvraudio_client.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libvraudio_client.qti.so \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/hw/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/hw/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/lib-imsvideocodec.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/lib-imsvideocodec.so \
vendor/google/coral/proprietary/system_ext/lib64/lib-imsvt.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/lib-imsvt.so \
vendor/google/coral/proprietary/system_ext/lib64/lib-imsvtextutils.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/lib-imsvtextutils.so \
vendor/google/coral/proprietary/system_ext/lib64/lib-imsvtutils.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/lib-imsvtutils.so \
vendor/google/coral/proprietary/system_ext/lib64/libOpenCL_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libOpenCL_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libQOC.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libQOC.qti.so \
vendor/google/coral/proprietary/system_ext/lib64/libQSEEComAPI_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libQSEEComAPI_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libadsprpc_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libadsprpc_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libaptXHD_encoder.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libaptXHD_encoder.so \
vendor/google/coral/proprietary/system_ext/lib64/libaptX_encoder.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libaptX_encoder.so \
vendor/google/coral/proprietary/system_ext/lib64/libbeluga.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libbeluga.so \
vendor/google/coral/proprietary/system_ext/lib64/libbinauralrenderer_wrapper.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libbinauralrenderer_wrapper.qti.so \
vendor/google/coral/proprietary/system_ext/lib64/libcdsprpc_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libcdsprpc_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libdiag_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libdiag_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libdolphin.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libdolphin.so \
vendor/google/coral/proprietary/system_ext/lib64/libembmsmmosal.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libembmsmmosal.so \
vendor/google/coral/proprietary/system_ext/lib64/libembmsmmparser_lite.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libembmsmmparser_lite.so \
vendor/google/coral/proprietary/system_ext/lib64/libembmstinyxml.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libembmstinyxml.so \
vendor/google/coral/proprietary/system_ext/lib64/libframeextension.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libframeextension.so \
vendor/google/coral/proprietary/system_ext/lib64/libimscamera_jni.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libimscamera_jni.so \
vendor/google/coral/proprietary/system_ext/lib64/libimsmedia_jni.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libimsmedia_jni.so \
vendor/google/coral/proprietary/system_ext/lib64/libjnihelpers.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libjnihelpers.so \
vendor/google/coral/proprietary/system_ext/lib64/liblayerext.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/liblayerext.qti.so \
vendor/google/coral/proprietary/system_ext/lib64/liblistensoundmodel2.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/liblistensoundmodel2.qti.so \
vendor/google/coral/proprietary/system_ext/lib64/libmdsprpc_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmdsprpc_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libmink-sock-native-api.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmink-sock-native-api.so \
vendor/google/coral/proprietary/system_ext/lib64/libminksocket_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libminksocket_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libmmhttpstack.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmhttpstack.so \
vendor/google/coral/proprietary/system_ext/lib64/libmmipstreamnetwork.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmipstreamnetwork.so \
vendor/google/coral/proprietary/system_ext/lib64/libmmipstreamsourcehttp.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmipstreamsourcehttp.so \
vendor/google/coral/proprietary/system_ext/lib64/libmmipstreamutils.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmipstreamutils.so \
vendor/google/coral/proprietary/system_ext/lib64/libmmosal.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmosal.so \
vendor/google/coral/proprietary/system_ext/lib64/libmmparser_lite.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmparser_lite.so \
vendor/google/coral/proprietary/system_ext/lib64/libmmrtpdecoder.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmrtpdecoder.so \
vendor/google/coral/proprietary/system_ext/lib64/libmmrtpencoder.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmrtpencoder.so \
vendor/google/coral/proprietary/system_ext/lib64/libmwqemiptablemgr.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmwqemiptablemgr.so \
vendor/google/coral/proprietary/system_ext/lib64/libpowerstatshaldataprovider.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libpowerstatshaldataprovider.so \
vendor/google/coral/proprietary/system_ext/lib64/libqape.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libqape.qti.so \
vendor/google/coral/proprietary/system_ext/lib64/libqmi_cci_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libqmi_cci_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libqmi_encdec_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libqmi_encdec_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libqspmsvc.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libqspmsvc.so \
vendor/google/coral/proprietary/system_ext/lib64/libqvrservice_v4l_ov7251_hvx_tuning.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libqvrservice_v4l_ov7251_hvx_tuning.so \
vendor/google/coral/proprietary/system_ext/lib64/libsdm-disp-apis.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libsdm-disp-apis.qti.so \
vendor/google/coral/proprietary/system_ext/lib64/libsdsprpc_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libsdsprpc_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libsecureui_svcsock_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libsecureui_svcsock_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libsecureuisvc_jni.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libsecureuisvc_jni.so \
vendor/google/coral/proprietary/system_ext/lib64/libskewknob_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libskewknob_system.so \
vendor/google/coral/proprietary/system_ext/lib64/libsmomo.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libsmomo.qti.so \
vendor/google/coral/proprietary/system_ext/lib64/libsmomoconfig.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libsmomoconfig.qti.so \
vendor/google/coral/proprietary/system_ext/lib64/libtrigger-handler.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libtrigger-handler.so \
vendor/google/coral/proprietary/system_ext/lib64/libupdateprof.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libupdateprof.qti.so \
vendor/google/coral/proprietary/system_ext/lib64/libvr_amb_engine.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libvr_amb_engine.so \
vendor/google/coral/proprietary/system_ext/lib64/libvr_object_engine.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libvr_object_engine.so \
vendor/google/coral/proprietary/system_ext/lib64/libvr_sam_wrapper.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libvr_sam_wrapper.so \
vendor/google/coral/proprietary/system_ext/lib64/libvraudio.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libvraudio.so \
vendor/google/coral/proprietary/system_ext/lib64/libvraudio_client.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libvraudio_client.qti.so \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/lib64/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/[email protected] \
vendor/google/coral/proprietary/system_ext/priv-app/EuiccGoogle/esim-a1.img:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccGoogle/esim-a1.img \
vendor/google/coral/proprietary/system_ext/priv-app/EuiccGoogle/esim-a2.img:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccGoogle/esim-a2.img \
vendor/google/coral/proprietary/system_ext/priv-app/EuiccSupportPixel/esim-full-v1.img:$(TARGET_COPY_OUT_SYSTEM_EXT)/priv-app/EuiccSupportPixel/esim-full-v1.img \
vendor/google/coral/proprietary/vendor/bin/PktRspTest:$(TARGET_COPY_OUT_VENDOR)/bin/PktRspTest \
vendor/google/coral/proprietary/vendor/bin/adsprpcd:$(TARGET_COPY_OUT_VENDOR)/bin/adsprpcd \
vendor/google/coral/proprietary/vendor/bin/audioflacapp:$(TARGET_COPY_OUT_VENDOR)/bin/audioflacapp \
vendor/google/coral/proprietary/vendor/bin/cdsprpcd:$(TARGET_COPY_OUT_VENDOR)/bin/cdsprpcd \
vendor/google/coral/proprietary/vendor/bin/cnd:$(TARGET_COPY_OUT_VENDOR)/bin/cnd \
vendor/google/coral/proprietary/vendor/bin/cnss-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/cnss-daemon \
vendor/google/coral/proprietary/vendor/bin/cnss_diag:$(TARGET_COPY_OUT_VENDOR)/bin/cnss_diag \
vendor/google/coral/proprietary/vendor/bin/color_init:$(TARGET_COPY_OUT_VENDOR)/bin/color_init \
vendor/google/coral/proprietary/vendor/bin/diag_klog:$(TARGET_COPY_OUT_VENDOR)/bin/diag_klog \
vendor/google/coral/proprietary/vendor/bin/diag_mdlog:$(TARGET_COPY_OUT_VENDOR)/bin/diag_mdlog \
vendor/google/coral/proprietary/vendor/bin/diag_socket_log:$(TARGET_COPY_OUT_VENDOR)/bin/diag_socket_log \
vendor/google/coral/proprietary/vendor/bin/diag_uart_log:$(TARGET_COPY_OUT_VENDOR)/bin/diag_uart_log \
vendor/google/coral/proprietary/vendor/bin/hbtp_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/hbtp_daemon \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/android.hardware.rebootescrow-service.citadel:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.rebootescrow-service.citadel \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/citadel_updater:$(TARGET_COPY_OUT_VENDOR)/bin/hw/citadel_updater \
vendor/google/coral/proprietary/vendor/bin/hw/citadeld:$(TARGET_COPY_OUT_VENDOR)/bin/hw/citadeld \
vendor/google/coral/proprietary/vendor/bin/hw/init_citadel:$(TARGET_COPY_OUT_VENDOR)/bin/hw/init_citadel \
vendor/google/coral/proprietary/vendor/bin/hw/qcrild:$(TARGET_COPY_OUT_VENDOR)/bin/hw/qcrild \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/google/coral/proprietary/vendor/bin/ims_rtp_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/ims_rtp_daemon \
vendor/google/coral/proprietary/vendor/bin/imsdatadaemon:$(TARGET_COPY_OUT_VENDOR)/bin/imsdatadaemon \
vendor/google/coral/proprietary/vendor/bin/imsqmidaemon:$(TARGET_COPY_OUT_VENDOR)/bin/imsqmidaemon \
vendor/google/coral/proprietary/vendor/bin/imsrcsd:$(TARGET_COPY_OUT_VENDOR)/bin/imsrcsd \
vendor/google/coral/proprietary/vendor/bin/irsc_util:$(TARGET_COPY_OUT_VENDOR)/bin/irsc_util \
vendor/google/coral/proprietary/vendor/bin/ks:$(TARGET_COPY_OUT_VENDOR)/bin/ks \
vendor/google/coral/proprietary/vendor/bin/loc_launcher:$(TARGET_COPY_OUT_VENDOR)/bin/loc_launcher \
vendor/google/coral/proprietary/vendor/bin/lowi-server:$(TARGET_COPY_OUT_VENDOR)/bin/lowi-server \
vendor/google/coral/proprietary/vendor/bin/modem_svc:$(TARGET_COPY_OUT_VENDOR)/bin/modem_svc \
vendor/google/coral/proprietary/vendor/bin/msm_irqbalance:$(TARGET_COPY_OUT_VENDOR)/bin/msm_irqbalance \
vendor/google/coral/proprietary/vendor/bin/netmgrd:$(TARGET_COPY_OUT_VENDOR)/bin/netmgrd \
vendor/google/coral/proprietary/vendor/bin/pd-mapper:$(TARGET_COPY_OUT_VENDOR)/bin/pd-mapper \
vendor/google/coral/proprietary/vendor/bin/pm-proxy:$(TARGET_COPY_OUT_VENDOR)/bin/pm-proxy \
vendor/google/coral/proprietary/vendor/bin/pm-service:$(TARGET_COPY_OUT_VENDOR)/bin/pm-service \
vendor/google/coral/proprietary/vendor/bin/port-bridge:$(TARGET_COPY_OUT_VENDOR)/bin/port-bridge \
vendor/google/coral/proprietary/vendor/bin/qdcmss:$(TARGET_COPY_OUT_VENDOR)/bin/qdcmss \
vendor/google/coral/proprietary/vendor/bin/qrtr-cfg:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-cfg \
vendor/google/coral/proprietary/vendor/bin/qrtr-ns:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-ns \
vendor/google/coral/proprietary/vendor/bin/qseecomd:$(TARGET_COPY_OUT_VENDOR)/bin/qseecomd \
vendor/google/coral/proprietary/vendor/bin/ramoops:$(TARGET_COPY_OUT_VENDOR)/bin/ramoops \
vendor/google/coral/proprietary/vendor/bin/rlsservice:$(TARGET_COPY_OUT_VENDOR)/bin/rlsservice \
vendor/google/coral/proprietary/vendor/bin/rmt_storage:$(TARGET_COPY_OUT_VENDOR)/bin/rmt_storage \
vendor/google/coral/proprietary/vendor/bin/sec_nvm:$(TARGET_COPY_OUT_VENDOR)/bin/sec_nvm \
vendor/google/coral/proprietary/vendor/bin/sensors.qti:$(TARGET_COPY_OUT_VENDOR)/bin/sensors.qti \
vendor/google/coral/proprietary/vendor/bin/sscrpcd:$(TARGET_COPY_OUT_VENDOR)/bin/sscrpcd \
vendor/google/coral/proprietary/vendor/bin/ssr_diag:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_diag \
vendor/google/coral/proprietary/vendor/bin/ssr_setup:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_setup \
vendor/google/coral/proprietary/vendor/bin/subsystem_ramdump:$(TARGET_COPY_OUT_VENDOR)/bin/subsystem_ramdump \
vendor/google/coral/proprietary/vendor/bin/test_diag:$(TARGET_COPY_OUT_VENDOR)/bin/test_diag \
vendor/google/coral/proprietary/vendor/bin/tftp_server:$(TARGET_COPY_OUT_VENDOR)/bin/tftp_server \
vendor/google/coral/proprietary/vendor/bin/thermal-engine:$(TARGET_COPY_OUT_VENDOR)/bin/thermal-engine \
vendor/google/coral/proprietary/vendor/bin/time_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/time_daemon \
vendor/google/coral/proprietary/vendor/bin/xtra-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/xtra-daemon \
vendor/google/coral/proprietary/vendor/dsp/adsp/AlacDecoderModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/AlacDecoderModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/ApeDecoderModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/ApeDecoderModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/AudioContextDetection.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/AudioContextDetection.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/AudioSphereModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/AudioSphereModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/CFCMModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/CFCMModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/EtsiAmrWbPlusDecModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/EtsiAmrWbPlusDecModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/EtsiEaacPlusEncAndCmnModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/EtsiEaacPlusEncAndCmnModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/FlacDecoderModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/FlacDecoderModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/HeaacDecoderModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/HeaacDecoderModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/LdacModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/LdacModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/SAPlusCmnModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/SAPlusCmnModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/SVACmnModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/SVACmnModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/VoiceWakeup_V2_Module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/VoiceWakeup_V2_Module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/VorbisDecoderModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/VorbisDecoderModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/WmaProDecoderModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/WmaProDecoderModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/WmaStdDecoderModule.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/WmaStdDecoderModule.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fastrpc_shell_0:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fastrpc_shell_0 \
vendor/google/coral/proprietary/vendor/dsp/adsp/ffns_module_fv9.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/ffns_module_fv9.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/ffv_module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/ffv_module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/ffv_module_fv9.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/ffv_module_fv9.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_bs_module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_bs_module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_bs_module_fv9.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_bs_module_fv9.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_ef_module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_ef_module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_ef_module_fv9.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_ef_module_fv9.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_pro_vc_module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_pro_vc_module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_pro_vc_module_fv9.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_pro_vc_module_fv9.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_pro_vr_module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_pro_vr_module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_pro_vr_module_fv9.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_pro_vr_module_fv9.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_sm_module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_sm_module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_sm_module_fv9.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_sm_module_fv9.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/fluence_voiceplus_module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/fluence_voiceplus_module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/libstabilitydomain_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/libstabilitydomain_skel.so \
vendor/google/coral/proprietary/vendor/dsp/adsp/libsysmon_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/libsysmon_skel.so \
vendor/google/coral/proprietary/vendor/dsp/adsp/libsysmondomain_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/libsysmondomain_skel.so \
vendor/google/coral/proprietary/vendor/dsp/adsp/libsysmonquery_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/libsysmonquery_skel.so \
vendor/google/coral/proprietary/vendor/dsp/adsp/mm_fluence_sb_module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/mm_fluence_sb_module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/sm_fluence_sb_module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/sm_fluence_sb_module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/smecns_v2_module.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/smecns_v2_module.so.1 \
vendor/google/coral/proprietary/vendor/dsp/adsp/smecns_v2_module_fv9.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/adsp/smecns_v2_module_fv9.so.1 \
vendor/google/coral/proprietary/vendor/dsp/cdsp/fastrpc_shell_3:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/fastrpc_shell_3 \
vendor/google/coral/proprietary/vendor/dsp/cdsp/fastrpc_shell_unsigned_3:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/fastrpc_shell_unsigned_3 \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libbenchmark_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libbenchmark_skel.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libc++.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libc++.so.1 \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libc++abi.so.1:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libc++abi.so.1 \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libhcp_rpc_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libhcp_rpc_skel.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libhta_dsp_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libhta_dsp_skel.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libimmotion_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libimmotion_skel.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libstabilitydomain_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libstabilitydomain_skel.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libsysmon_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libsysmon_skel.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libsysmondomain_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libsysmondomain_skel.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libsysmonhvxthrottle_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libsysmonhvxthrottle_skel.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libsysmonquery_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libsysmonquery_skel.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libvpp_aie.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libvpp_aie.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libvpp_frc.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libvpp_frc.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libvpp_mvp.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libvpp_mvp.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libvpp_nr.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libvpp_nr.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libvpp_qbr.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libvpp_qbr.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/libvpp_svc_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/libvpp_svc_skel.so \
vendor/google/coral/proprietary/vendor/dsp/cdsp/ubwcdma_dynlib.so:$(TARGET_COPY_OUT_VENDOR)/dsp/cdsp/ubwcdma_dynlib.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/activity.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/activity.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/activity.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/activity.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/ambient.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/ambient.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/ambient.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/ambient.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/ambient_micro.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/ambient_micro.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/ambient_micro.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/ambient_micro.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/blue.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/blue.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/blue.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/blue.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/cc.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/cc.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/cc.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/cc.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/chre_drv_loc.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/chre_drv_loc.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/chre_drv_modem.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/chre_drv_modem.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/chre_drv_wifi.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/chre_drv_wifi.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/chre_pal.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/chre_pal.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/drop.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/drop.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/drop.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/drop.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/elmyra.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/elmyra.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/elmyra.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/elmyra.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/geofence.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/geofence.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/geofence.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/geofence.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/gesture.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/gesture.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/gesture.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/gesture.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/imu_cal.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/imu_cal.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/imu_cal.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/imu_cal.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/libchre_slpi_skel.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/libchre_slpi_skel.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/lowi_client.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/lowi_client.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/motiondetector.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/motiondetector.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/motiondetector.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/motiondetector.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/oslo.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/oslo.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/oslo.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/oslo.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/smartbatching.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/smartbatching.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/smartbatching.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/smartbatching.so \
vendor/google/coral/proprietary/vendor/dsp/sdsp/uv_exposure.napp_header:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/uv_exposure.napp_header \
vendor/google/coral/proprietary/vendor/dsp/sdsp/uv_exposure.so:$(TARGET_COPY_OUT_VENDOR)/dsp/sdsp/uv_exposure.so \
vendor/google/coral/proprietary/vendor/etc/FOSSConfig.xml:$(TARGET_COPY_OUT_VENDOR)/etc/FOSSConfig.xml \
vendor/google/coral/proprietary/vendor/etc/acdbdata/CDP/CDP_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Bluetooth_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/CDP/CDP_Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Codec_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/CDP/CDP_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_General_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/CDP/CDP_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Global_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/CDP/CDP_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Handset_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/CDP/CDP_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Hdmi_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/CDP/CDP_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Headset_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/CDP/CDP_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Speaker_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/CDP/CDP_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_workspaceFile.qwsp \
vendor/google/coral/proprietary/vendor/etc/acdbdata/MTP/MTP_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Bluetooth_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/MTP/MTP_Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Codec_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/MTP/MTP_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_General_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/MTP/MTP_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Global_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/MTP/MTP_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Handset_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/MTP/MTP_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Hdmi_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/MTP/MTP_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Headset_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/MTP/MTP_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Speaker_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/MTP/MTP_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_workspaceFile.qwsp \
vendor/google/coral/proprietary/vendor/etc/acdbdata/QRD/QRD_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Bluetooth_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/QRD/QRD_Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Codec_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/QRD/QRD_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_General_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/QRD/QRD_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Global_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/QRD/QRD_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Handset_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/QRD/QRD_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Hdmi_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/QRD/QRD_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Headset_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/QRD/QRD_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Speaker_cal.acdb \
vendor/google/coral/proprietary/vendor/etc/acdbdata/QRD/QRD_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_workspaceFile.qwsp \
vendor/google/coral/proprietary/vendor/etc/cacert_location.pem:$(TARGET_COPY_OUT_VENDOR)/etc/cacert_location.pem \
vendor/google/coral/proprietary/vendor/etc/charger_fstab.qti:$(TARGET_COPY_OUT_VENDOR)/etc/charger_fstab.qti \
vendor/google/coral/proprietary/vendor/etc/chre/preloaded_nanoapps.json:$(TARGET_COPY_OUT_VENDOR)/etc/chre/preloaded_nanoapps.json \
vendor/google/coral/proprietary/vendor/etc/cne/Nexus/ATT/ATT_profiles.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/Nexus/ATT/ATT_profiles.xml \
vendor/google/coral/proprietary/vendor/etc/cne/Nexus/ROW/ROW_profiles.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/Nexus/ROW/ROW_profiles.xml \
vendor/google/coral/proprietary/vendor/etc/cne/Nexus/VZW/VZW_profiles.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/Nexus/VZW/VZW_profiles.xml \
vendor/google/coral/proprietary/vendor/etc/cne/mwqem.conf:$(TARGET_COPY_OUT_VENDOR)/etc/cne/mwqem.conf \
vendor/google/coral/proprietary/vendor/etc/cne/profileMwqem.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/profileMwqem.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile1.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile2.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile3.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile4.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile5.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile6.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile1.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile15.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile15.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile16.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile16.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile17.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile17.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile18.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile18.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile19.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile19.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile2.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile20.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile20.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile21.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile21.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile3.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile32.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile32.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile4.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile5.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile6.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile7.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile7.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile1.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile2.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile3.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile4.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile5.xml \
vendor/google/coral/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile6.xml \
vendor/google/coral/proprietary/vendor/etc/data/dsi_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/data/dsi_config.xml \
vendor/google/coral/proprietary/vendor/etc/data/netmgr_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/data/netmgr_config.xml \
vendor/google/coral/proprietary/vendor/etc/default_c2proto.mps:$(TARGET_COPY_OUT_VENDOR)/etc/default_c2proto.mps \
vendor/google/coral/proprietary/vendor/etc/default_coral.mps:$(TARGET_COPY_OUT_VENDOR)/etc/default_coral.mps \
vendor/google/coral/proprietary/vendor/etc/default_f2proto.mps:$(TARGET_COPY_OUT_VENDOR)/etc/default_f2proto.mps \
vendor/google/coral/proprietary/vendor/etc/default_flame.mps:$(TARGET_COPY_OUT_VENDOR)/etc/default_flame.mps \
vendor/google/coral/proprietary/vendor/etc/hbtp/qtc801s.bin:$(TARGET_COPY_OUT_VENDOR)/etc/hbtp/qtc801s.bin \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/citadeld.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/citadeld.rc \
vendor/google/coral/proprietary/vendor/etc/init/cnd-generic.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/cnd-generic.rc \
vendor/google/coral/proprietary/vendor/etc/init/color_init.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/color_init.rc \
vendor/google/coral/proprietary/vendor/etc/init/ims_rtp_daemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/ims_rtp_daemon.rc \
vendor/google/coral/proprietary/vendor/etc/init/imsdatadaemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/imsdatadaemon.rc \
vendor/google/coral/proprietary/vendor/etc/init/imsqmidaemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/imsqmidaemon.rc \
vendor/google/coral/proprietary/vendor/etc/init/imsrcsd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/imsrcsd.rc \
vendor/google/coral/proprietary/vendor/etc/init/init-ramoops.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init-ramoops.rc \
vendor/google/coral/proprietary/vendor/etc/init/init.time_daemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.time_daemon.rc \
vendor/google/coral/proprietary/vendor/etc/init/init_citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init_citadel.rc \
vendor/google/coral/proprietary/vendor/etc/init/netmgrd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/netmgrd.rc \
vendor/google/coral/proprietary/vendor/etc/init/port-bridge.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/port-bridge.rc \
vendor/google/coral/proprietary/vendor/etc/init/qcrild.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/qcrild.rc \
vendor/google/coral/proprietary/vendor/etc/init/qdcmss.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/qdcmss.rc \
vendor/google/coral/proprietary/vendor/etc/init/rebootescrow-citadel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/rebootescrow-citadel.rc \
vendor/google/coral/proprietary/vendor/etc/init/rlsservice.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/rlsservice.rc \
vendor/google/coral/proprietary/vendor/etc/init/ssgtzd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/ssgtzd.rc \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/vendor.qti.adsprpc-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.adsprpc-service.rc \
vendor/google/coral/proprietary/vendor/etc/init/vendor.qti.cdsprpc-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.cdsprpc-service.rc \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/google/coral/proprietary/vendor/etc/init/vendor.qti.rmt_storage.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.rmt_storage.rc \
vendor/google/coral/proprietary/vendor/etc/init/vendor.qti.tftp.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.tftp.rc \
vendor/google/coral/proprietary/vendor/etc/init/vendor.sensors.qti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.sensors.qti.rc \
vendor/google/coral/proprietary/vendor/etc/init/vendor.sensors.sscrpcd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.sensors.sscrpcd.rc \
vendor/google/coral/proprietary/vendor/etc/input_classifier_model.pb:$(TARGET_COPY_OUT_VENDOR)/etc/input_classifier_model.pb \
vendor/google/coral/proprietary/vendor/etc/izat.conf:$(TARGET_COPY_OUT_VENDOR)/etc/izat.conf \
vendor/google/coral/proprietary/vendor/etc/lowi.conf:$(TARGET_COPY_OUT_VENDOR)/etc/lowi.conf \
vendor/google/coral/proprietary/vendor/etc/maxx_conf_c2proto.ini:$(TARGET_COPY_OUT_VENDOR)/etc/maxx_conf_c2proto.ini \
vendor/google/coral/proprietary/vendor/etc/maxx_conf_coral.ini:$(TARGET_COPY_OUT_VENDOR)/etc/maxx_conf_coral.ini \
vendor/google/coral/proprietary/vendor/etc/maxx_conf_f2proto.ini:$(TARGET_COPY_OUT_VENDOR)/etc/maxx_conf_f2proto.ini \
vendor/google/coral/proprietary/vendor/etc/maxx_conf_flame.ini:$(TARGET_COPY_OUT_VENDOR)/etc/maxx_conf_flame.ini \
vendor/google/coral/proprietary/vendor/etc/mdlog/default.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/mdlog/default.cfg \
vendor/google/coral/proprietary/vendor/etc/mdlog/diag.conf:$(TARGET_COPY_OUT_VENDOR)/etc/mdlog/diag.conf \
vendor/google/coral/proprietary/vendor/etc/media_codecs_c2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_c2.xml \
vendor/google/coral/proprietary/vendor/etc/modem_stat.conf:$(TARGET_COPY_OUT_VENDOR)/etc/modem_stat.conf \
vendor/google/coral/proprietary/vendor/etc/msm_irqbalance.conf:$(TARGET_COPY_OUT_VENDOR)/etc/msm_irqbalance.conf \
vendor/google/coral/proprietary/vendor/etc/permissions/com.google.android.camera.experimental2019.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.google.android.camera.experimental2019.xml \
vendor/google/coral/proprietary/vendor/etc/public.libraries.txt:$(TARGET_COPY_OUT_VENDOR)/etc/public.libraries.txt \
vendor/google/coral/proprietary/vendor/etc/qdcm_calib_data_nt37280_amoled_5.68_cmd_mode_panel.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qdcm_calib_data_nt37280_amoled_5.68_cmd_mode_panel.xml \
vendor/google/coral/proprietary/vendor/etc/qdcm_calib_data_s6e3hc2_amoled_6.2_cmd_mode_panel.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qdcm_calib_data_s6e3hc2_amoled_6.2_cmd_mode_panel.xml \
vendor/google/coral/proprietary/vendor/etc/sap.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sap.conf \
vendor/google/coral/proprietary/vendor/etc/seccomp_policy/codec2.vendor.base.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/codec2.vendor.base.policy \
vendor/google/coral/proprietary/vendor/etc/seccomp_policy/codec2.vendor.ext.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/codec2.vendor.ext.policy \
vendor/google/coral/proprietary/vendor/etc/seccomp_policy/imsrtp.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/imsrtp.policy \
vendor/google/coral/proprietary/vendor/etc/seccomp_policy/qti-systemd.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/qti-systemd.policy \
vendor/google/coral/proprietary/vendor/etc/seccomp_policy/vendor.qti.hardware.dsp.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/vendor.qti.hardware.dsp.policy \
vendor/google/coral/proprietary/vendor/etc/sensors/config/bmp380.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/bmp380.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2_bmp380.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2_bmp380.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2_lis2mdl.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2_lis2mdl.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2_lis2mdl_dvt.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2_lis2mdl_dvt.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2_lis2mdl_evt1_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2_lis2mdl_evt1_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2_lis2mdl_evt1_1.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2_lis2mdl_evt1_1.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2_lsm6dsr.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2_lsm6dsr.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2_sx932x_0_proto_evt1.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2_sx932x_0_proto_evt1.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2_tmd3702v.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2_tmd3702v.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2_tmd3702v_dvt.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2_tmd3702v_dvt.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2f2u2_touch_gesture.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2f2u2_touch_gesture.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2f2u2u3_irq.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2f2u2u3_irq.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2f2u2u3_max11259.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2f2u2u3_max11259.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2f2u2u3_power.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2f2u2u3_power.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2f2u3_camera_vsync_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2f2u3_camera_vsync_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2f2u3_camera_vsync_1.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2f2u3_camera_vsync_1.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/c2f2u3_camera_vsync_2.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/c2f2u3_camera_vsync_2.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/f2_bmp380.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/f2_bmp380.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/f2_lis2mdl.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/f2_lis2mdl.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/f2_lis2mdl_dvt.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/f2_lis2mdl_dvt.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/f2_lis2mdl_evt1_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/f2_lis2mdl_evt1_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/f2_lis2mdl_evt1_1.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/f2_lis2mdl_evt1_1.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/f2_lsm6dsr.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/f2_lsm6dsr.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/f2_sx932x_0_proto_evt1.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/f2_sx932x_0_proto_evt1.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/f2_tmd3702v.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/f2_tmd3702v.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/f2_tmd3702v_dvt.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/f2_tmd3702v_dvt.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/jaws_irq.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/jaws_irq.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/jaws_lis2mdl.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/jaws_lis2mdl.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/jaws_lsm6dsr.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/jaws_lsm6dsr.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/jaws_max11259.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/jaws_max11259.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/jaws_sx932x_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/jaws_sx932x_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/jaws_tmd3702v.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/jaws_tmd3702v.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/jaws_touch_gesture.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/jaws_touch_gesture.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/lis2mdl.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/lis2mdl.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/lsm6dsr.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/lsm6dsr.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/lsm6dsr_16g.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/lsm6dsr_16g.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/lsm6dsr_8g.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/lsm6dsr_8g.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/max11259.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/max11259.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/msmnile_default_sensors.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_default_sensors.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/msmnile_dps368_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_dps368_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/msmnile_hdk_ak991x_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_hdk_ak991x_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/msmnile_hdk_lsm6dso_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_hdk_lsm6dso_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/msmnile_hdk_tmd2725_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_hdk_tmd2725_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/msmnile_qrd_2_lsm6dso_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_qrd_2_lsm6dso_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/msmnile_tmd2725_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_tmd2725_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_amd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_amd.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_amd_sw_disabled.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_amd_sw_disabled.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_amd_sw_enabled.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_amd_sw_enabled.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_basic_gestures.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_basic_gestures.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_bring_to_ear.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_bring_to_ear.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_ccd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_ccd.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_ccd_v2_walk.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_ccd_v2_walk.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_ccd_v3_1_walk.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_ccd_v3_1_walk.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_ccd_v3_walk.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_ccd_v3_walk.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_cm.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_cm.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_dae.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_dae.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_device_orient.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_device_orient.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_diag_filter.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_diag_filter.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_direct_channel.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_direct_channel.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_distance_bound.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_distance_bound.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_dpc.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_dpc.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_dynamic_sensors.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_dynamic_sensors.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_facing.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_facing.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_fmv.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_fmv.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_fmv_legacy.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_fmv_legacy.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_geomag_rv.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_geomag_rv.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_gyro_cal.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_gyro_cal.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_mag_cal.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_mag_cal.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_mag_cal_legacy.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_mag_cal_legacy.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_multishake.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_multishake.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_pedometer.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_pedometer.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_rmd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_rmd.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_rotv.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_rotv.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_smd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_smd.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_tilt.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_tilt.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_tilt_sw_disabled.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_tilt_sw_disabled.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_tilt_sw_enabled.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_tilt_sw_enabled.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sns_tilt_to_wake.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_tilt_to_wake.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/sx932x_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sx932x_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/tcs3701.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/tcs3701.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/tmd3702v.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/tmd3702v.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u2_lis2mdl.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u2_lis2mdl.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u2_lsm6dsr.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u2_lsm6dsr.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u2_sx932x_0_proto.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u2_sx932x_0_proto.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u2_tmd3702v.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u2_tmd3702v.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u2u3_bmp380.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u2u3_bmp380.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u3_lis2mdl.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u3_lis2mdl.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u3_lis2mdl_proto_evt1_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u3_lis2mdl_proto_evt1_0.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u3_lsm6dsr.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u3_lsm6dsr.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u3_tmd3702v.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u3_tmd3702v.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u3_touch_gesture.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u3_touch_gesture.json \
vendor/google/coral/proprietary/vendor/etc/sensors/config/u3_touch_gesture_proto_evt1_3.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/u3_touch_gesture_proto_evt1_3.json \
vendor/google/coral/proprietary/vendor/etc/sensors/hals.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/hals.conf \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/descriptor.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/descriptor.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/nanopb.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/nanopb.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_activity_recognition.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_activity_recognition.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_ambient_light.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_ambient_light.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_aont.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_aont.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_basic_gestures.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_basic_gestures.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_device_mode.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_device_mode.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_direct_channel.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_direct_channel.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_facing.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_facing.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_formatter.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_formatter.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_heart_rate.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_heart_rate.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_hinge_angle.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_hinge_angle.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_humidity.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_humidity.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_pedometer_wrist.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_pedometer_wrist.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_rgb.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_rgb.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_sig_motion.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_sig_motion.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_step_detect.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_step_detect.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_tilt_to_wake.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_tilt_to_wake.proto \
vendor/google/coral/proprietary/vendor/etc/sensors/proto/sns_wrist_tilt_gesture.proto:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/proto/sns_wrist_tilt_gesture.proto \
vendor/google/coral/proprietary/vendor/etc/st54j_aram.txt:$(TARGET_COPY_OUT_VENDOR)/etc/st54j_aram.txt \
vendor/google/coral/proprietary/vendor/etc/st54j_aram_cts.txt:$(TARGET_COPY_OUT_VENDOR)/etc/st54j_aram_cts.txt \
vendor/google/coral/proprietary/vendor/etc/xtra_root_cert.pem:$(TARGET_COPY_OUT_VENDOR)/etc/xtra_root_cert.pem \
vendor/google/coral/proprietary/vendor/etc/xtwifi.conf:$(TARGET_COPY_OUT_VENDOR)/etc/xtwifi.conf \
vendor/google/coral/proprietary/vendor/firmware/AmbientDAPackage.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/AmbientDAPackage.bin \
vendor/google/coral/proprietary/vendor/firmware/AmbientECPackage.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/AmbientECPackage.bin \
vendor/google/coral/proprietary/vendor/firmware/BufferConfigVal.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/BufferConfigVal.bin \
vendor/google/coral/proprietary/vendor/firmware/BufferConfigVal2Sec.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/BufferConfigVal2Sec.bin \
vendor/google/coral/proprietary/vendor/firmware/BufferConfigValCHRE.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/BufferConfigValCHRE.bin \
vendor/google/coral/proprietary/vendor/firmware/BufferConfigValOslo.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/BufferConfigValOslo.bin \
vendor/google/coral/proprietary/vendor/firmware/BufferPackage.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/BufferPackage.bin \
vendor/google/coral/proprietary/vendor/firmware/CAMERA_ICP.elf:$(TARGET_COPY_OUT_VENDOR)/firmware/CAMERA_ICP.elf \
vendor/google/coral/proprietary/vendor/firmware/Data.msc:$(TARGET_COPY_OUT_VENDOR)/firmware/Data.msc \
vendor/google/coral/proprietary/vendor/firmware/EchoCancellerPackage.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/EchoCancellerPackage.bin \
vendor/google/coral/proprietary/vendor/firmware/OsloSensorConfig.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/OsloSensorConfig.bin \
vendor/google/coral/proprietary/vendor/firmware/OsloSensorPackage.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/OsloSensorPackage.bin \
vendor/google/coral/proprietary/vendor/firmware/PassthruPackage.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/PassthruPackage.bin \
vendor/google/coral/proprietary/vendor/firmware/RomeApp.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/RomeApp.bin \
vendor/google/coral/proprietary/vendor/firmware/SampleRateConverterCreateCfgBlkGen.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/SampleRateConverterCreateCfgBlkGen.bin \
vendor/google/coral/proprietary/vendor/firmware/SampleRateConverterPackage.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/SampleRateConverterPackage.bin \
vendor/google/coral/proprietary/vendor/firmware/TEST_MAPPING:$(TARGET_COPY_OUT_VENDOR)/firmware/TEST_MAPPING \
vendor/google/coral/proprietary/vendor/firmware/a612_rgmu.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/a612_rgmu.bin \
vendor/google/coral/proprietary/vendor/firmware/a618_gmu.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/a618_gmu.bin \
vendor/google/coral/proprietary/vendor/firmware/a630_gmu.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/a630_gmu.bin \
vendor/google/coral/proprietary/vendor/firmware/a630_sqe.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a630_sqe.fw \
vendor/google/coral/proprietary/vendor/firmware/a640_gmu.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/a640_gmu.bin \
vendor/google/coral/proprietary/vendor/firmware/a640_zap.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/a640_zap.b00 \
vendor/google/coral/proprietary/vendor/firmware/a640_zap.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/a640_zap.b01 \
vendor/google/coral/proprietary/vendor/firmware/a640_zap.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/a640_zap.b02 \
vendor/google/coral/proprietary/vendor/firmware/a640_zap.elf:$(TARGET_COPY_OUT_VENDOR)/firmware/a640_zap.elf \
vendor/google/coral/proprietary/vendor/firmware/a640_zap.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/a640_zap.mdt \
vendor/google/coral/proprietary/vendor/firmware/adsp.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b00 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b01 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b02 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b03 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b04:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b04 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b05:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b05 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b06:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b06 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b07:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b07 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b08:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b08 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b09:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b09 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b10:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b10 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b11:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b11 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b12:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b12 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b13:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b13 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b14:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b14 \
vendor/google/coral/proprietary/vendor/firmware/adsp.b15:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.b15 \
vendor/google/coral/proprietary/vendor/firmware/adsp.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/adsp.mdt \
vendor/google/coral/proprietary/vendor/firmware/adspr.jsn:$(TARGET_COPY_OUT_VENDOR)/firmware/adspr.jsn \
vendor/google/coral/proprietary/vendor/firmware/adspua.jsn:$(TARGET_COPY_OUT_VENDOR)/firmware/adspua.jsn \
vendor/google/coral/proprietary/vendor/firmware/autocal.mbn:$(TARGET_COPY_OUT_VENDOR)/firmware/autocal.mbn \
vendor/google/coral/proprietary/vendor/firmware/bdwlan-coral-PROTO1.0.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/bdwlan-coral-PROTO1.0.bin \
vendor/google/coral/proprietary/vendor/firmware/bdwlan-coral.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/bdwlan-coral.bin \
vendor/google/coral/proprietary/vendor/firmware/bdwlan-flame-PROTO1.0.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/bdwlan-flame-PROTO1.0.bin \
vendor/google/coral/proprietary/vendor/firmware/bdwlan-flame-PROTO1.1.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/bdwlan-flame-PROTO1.1.bin \
vendor/google/coral/proprietary/vendor/firmware/bdwlan-flame.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/bdwlan-flame.bin \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b00 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b01 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b02 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b03 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b04:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b04 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b05:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b05 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b06:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b06 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b07:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b07 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b08:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b08 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b09:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b09 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b10:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b10 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.b11:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.b11 \
vendor/google/coral/proprietary/vendor/firmware/cdsp.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/cdsp.mdt \
vendor/google/coral/proprietary/vendor/firmware/cdspr.jsn:$(TARGET_COPY_OUT_VENDOR)/firmware/cdspr.jsn \
vendor/google/coral/proprietary/vendor/firmware/citadel/ec.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/citadel/ec.bin \
vendor/google/coral/proprietary/vendor/firmware/citadel/ec.rec:$(TARGET_COPY_OUT_VENDOR)/firmware/citadel/ec.rec \
vendor/google/coral/proprietary/vendor/firmware/confirmationui.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/confirmationui.b00 \
vendor/google/coral/proprietary/vendor/firmware/confirmationui.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/confirmationui.b01 \
vendor/google/coral/proprietary/vendor/firmware/confirmationui.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/confirmationui.b02 \
vendor/google/coral/proprietary/vendor/firmware/confirmationui.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/confirmationui.b03 \
vendor/google/coral/proprietary/vendor/firmware/confirmationui.b04:$(TARGET_COPY_OUT_VENDOR)/firmware/confirmationui.b04 \
vendor/google/coral/proprietary/vendor/firmware/confirmationui.b05:$(TARGET_COPY_OUT_VENDOR)/firmware/confirmationui.b05 \
vendor/google/coral/proprietary/vendor/firmware/confirmationui.b06:$(TARGET_COPY_OUT_VENDOR)/firmware/confirmationui.b06 \
vendor/google/coral/proprietary/vendor/firmware/confirmationui.b07:$(TARGET_COPY_OUT_VENDOR)/firmware/confirmationui.b07 \
vendor/google/coral/proprietary/vendor/firmware/confirmationui.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/confirmationui.mdt \
vendor/google/coral/proprietary/vendor/firmware/cppf.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/cppf.b00 \
vendor/google/coral/proprietary/vendor/firmware/cppf.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/cppf.b01 \
vendor/google/coral/proprietary/vendor/firmware/cppf.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/cppf.b02 \
vendor/google/coral/proprietary/vendor/firmware/cppf.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/cppf.b03 \
vendor/google/coral/proprietary/vendor/firmware/cppf.b04:$(TARGET_COPY_OUT_VENDOR)/firmware/cppf.b04 \
vendor/google/coral/proprietary/vendor/firmware/cppf.b05:$(TARGET_COPY_OUT_VENDOR)/firmware/cppf.b05 \
vendor/google/coral/proprietary/vendor/firmware/cppf.b06:$(TARGET_COPY_OUT_VENDOR)/firmware/cppf.b06 \
vendor/google/coral/proprietary/vendor/firmware/cppf.b07:$(TARGET_COPY_OUT_VENDOR)/firmware/cppf.b07 \
vendor/google/coral/proprietary/vendor/firmware/cppf.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/cppf.mdt \
vendor/google/coral/proprietary/vendor/firmware/crbtfw21.tlv:$(TARGET_COPY_OUT_VENDOR)/firmware/crbtfw21.tlv \
vendor/google/coral/proprietary/vendor/firmware/crnv21.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/crnv21.bin \
vendor/google/coral/proprietary/vendor/firmware/cs40l20.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/cs40l20.bin \
vendor/google/coral/proprietary/vendor/firmware/cs40l25a.wmfw:$(TARGET_COPY_OUT_VENDOR)/firmware/cs40l25a.wmfw \
vendor/google/coral/proprietary/vendor/firmware/cs40l25a_cal.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/cs40l25a_cal.bin \
vendor/google/coral/proprietary/vendor/firmware/cs40l25a_cal.wmfw:$(TARGET_COPY_OUT_VENDOR)/firmware/cs40l25a_cal.wmfw \
vendor/google/coral/proprietary/vendor/firmware/cs40l25a_exc.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/cs40l25a_exc.bin \
vendor/google/coral/proprietary/vendor/firmware/faceauth_config.yaml:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_config.yaml \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v1.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v1.b00 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v1.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v1.b01 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v1.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v1.b02 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v1.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v1.b03 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v1.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v1.mdt \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v1_1.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v1_1.b00 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v1_1.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v1_1.b01 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v1_1.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v1_1.b02 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v1_1.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v1_1.b03 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v1_1.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v1_1.mdt \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v2.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v2.b00 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v2.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v2.b01 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v2.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v2.b02 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v2.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v2.b03 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v2.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v2.mdt \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v3.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v3.b00 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v3.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v3.b01 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v3.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v3.b02 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v3.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v3.b03 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v3.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v3.mdt \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v4.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v4.b00 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v4.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v4.b01 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v4.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v4.b02 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v4.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v4.b03 \
vendor/google/coral/proprietary/vendor/firmware/faceauth_v4.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/faceauth_v4.mdt \
vendor/google/coral/proprietary/vendor/firmware/ftm5_fw_c2.ftb:$(TARGET_COPY_OUT_VENDOR)/firmware/ftm5_fw_c2.ftb \
vendor/google/coral/proprietary/vendor/firmware/ftm5_fw_f2.ftb:$(TARGET_COPY_OUT_VENDOR)/firmware/ftm5_fw_f2.ftb \
vendor/google/coral/proprietary/vendor/firmware/ftm5_fw_f2_evt1.ftb:$(TARGET_COPY_OUT_VENDOR)/firmware/ftm5_fw_f2_evt1.ftb \
vendor/google/coral/proprietary/vendor/firmware/ftm5_fw_f2_evt2.ftb:$(TARGET_COPY_OUT_VENDOR)/firmware/ftm5_fw_f2_evt2.ftb \
vendor/google/coral/proprietary/vendor/firmware/ftm5_fw_f2_p2.ftb:$(TARGET_COPY_OUT_VENDOR)/firmware/ftm5_fw_f2_p2.ftb \
vendor/google/coral/proprietary/vendor/firmware/haventkn.mbn:$(TARGET_COPY_OUT_VENDOR)/firmware/haventkn.mbn \
vendor/google/coral/proprietary/vendor/firmware/ipa_fws.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/ipa_fws.b00 \
vendor/google/coral/proprietary/vendor/firmware/ipa_fws.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/ipa_fws.b01 \
vendor/google/coral/proprietary/vendor/firmware/ipa_fws.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/ipa_fws.b02 \
vendor/google/coral/proprietary/vendor/firmware/ipa_fws.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/ipa_fws.b03 \
vendor/google/coral/proprietary/vendor/firmware/ipa_fws.b04:$(TARGET_COPY_OUT_VENDOR)/firmware/ipa_fws.b04 \
vendor/google/coral/proprietary/vendor/firmware/ipa_fws.elf:$(TARGET_COPY_OUT_VENDOR)/firmware/ipa_fws.elf \
vendor/google/coral/proprietary/vendor/firmware/ipa_fws.mdt:$(TARGET_COPY_OUT_VENDOR)/firmware/ipa_fws.mdt \
vendor/google/coral/proprietary/vendor/firmware/manifest.xml:$(TARGET_COPY_OUT_VENDOR)/firmware/manifest.xml \
vendor/google/coral/proprietary/vendor/firmware/modemuw.jsn:$(TARGET_COPY_OUT_VENDOR)/firmware/modemuw.jsn \
vendor/google/coral/proprietary/vendor/firmware/nanoapp_config.textproto:$(TARGET_COPY_OUT_VENDOR)/firmware/nanoapp_config.textproto \
vendor/google/coral/proprietary/vendor/firmware/paintbox-jqs.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/paintbox-jqs.fw \
vendor/google/coral/proprietary/vendor/firmware/seccamdemo64.mbn:$(TARGET_COPY_OUT_VENDOR)/firmware/seccamdemo64.mbn \
vendor/google/coral/proprietary/vendor/firmware/slpi.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/slpi.b00 \
vendor/google/coral/proprietary/vendor/firmware/slpi.b01:$(TARGET_COPY_OUT_VENDOR)/firmware/slpi.b01 \
vendor/google/coral/proprietary/vendor/firmware/slpi.b02:$(TARGET_COPY_OUT_VENDOR)/firmware/slpi.b02 \
vendor/google/coral/proprietary/vendor/firmware/slpi.b03:$(TARGET_COPY_OUT_VENDOR)/firmware/slpi.b03 \
vendor/google/coral/proprietary/vendor/firmware/slpi.b04:$(TARGET_COPY_OUT_VENDOR)/firmware/slpi.b04 \
vendor/google/coral/proprietary/vendor/firmware/slpi.b05:$(TARGET_COPY_OUT_VENDOR)/firmware/slpi.b05 \
vendor/google/coral/proprietary/vendor/firmware/slpi.b06:$(TARGET_COPY_OUT_VENDOR)/firmware/slpi.b06 \
vendor/google/coral/proprietary/vendor/firmware/slpi.b07:$(TARGET_COPY_OUT_VENDOR)/firmware/slpi.b07 \