-
Notifications
You must be signed in to change notification settings - Fork 4
/
m01q-vendor.mk
2105 lines (2102 loc) · 293 KB
/
m01q-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/samsung/m01q/setup-makefiles.sh
PRODUCT_SOONG_NAMESPACES += \
vendor/samsung/m01q
PRODUCT_COPY_FILES += \
vendor/samsung/m01q/proprietary/etc/firmware/ice40.bin:$(TARGET_COPY_OUT_SYSTEM)/etc/firmware/ice40.bin \
vendor/samsung/m01q/proprietary/etc/permissions/embms.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/embms.xml \
vendor/samsung/m01q/proprietary/etc/permissions/privapp-permissions-qti.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/privapp-permissions-qti.xml \
vendor/samsung/m01q/proprietary/etc/permissions/qcrilhook.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/qcrilhook.xml \
vendor/samsung/m01q/proprietary/etc/permissions/qti_telephony_hidl_wrapper.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/qti_telephony_hidl_wrapper.xml \
vendor/samsung/m01q/proprietary/etc/permissions/qti_telephony_utils.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/qti_telephony_utils.xml \
vendor/samsung/m01q/proprietary/etc/sysconfig/qti_whitelist.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/sysconfig/qti_whitelist.xml \
vendor/samsung/m01q/proprietary/lib/libFileMux.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libFileMux.so \
vendor/samsung/m01q/proprietary/lib/libaptX_encoder.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libaptX_encoder.so \
vendor/samsung/m01q/proprietary/lib/libmmrtpdecoder.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libmmrtpdecoder.so \
vendor/samsung/m01q/proprietary/lib/libmmrtpencoder.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libmmrtpencoder.so \
vendor/samsung/m01q/proprietary/lib/libsdm-disp-apis.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libsdm-disp-apis.so \
vendor/samsung/m01q/proprietary/product/etc/permissions/vendor.qti.hardware.data.connection-V1.0-java.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/vendor.qti.hardware.data.connection-V1.0-java.xml \
vendor/samsung/m01q/proprietary/product/etc/permissions/vendor.qti.hardware.data.connection-V1.1-java.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/vendor.qti.hardware.data.connection-V1.1-java.xml \
vendor/samsung/m01q/proprietary/system_ext/bin/diag_mdlog_system:$(TARGET_COPY_OUT_SYSTEM_EXT)/bin/diag_mdlog_system \
vendor/samsung/m01q/proprietary/system_ext/bin/dun-server:$(TARGET_COPY_OUT_SYSTEM_EXT)/bin/dun-server \
vendor/samsung/m01q/proprietary/system_ext/bin/perfservice:$(TARGET_COPY_OUT_SYSTEM_EXT)/bin/perfservice \
vendor/samsung/m01q/proprietary/system_ext/etc/group:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/group \
vendor/samsung/m01q/proprietary/system_ext/etc/init/perfservice.rc:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/init/perfservice.rc \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/audiosphere.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/audiosphere.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/com.android.carrierconfig.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.carrierconfig.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/com.android.emergency.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.emergency.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/com.android.storagemanager.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.storagemanager.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/com.android.systemui.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.systemui.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/embms.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/embms.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/privapp-permissions-google-system-ext.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/privapp-permissions-google-system-ext.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/qcrilhook.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/qcrilhook.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/qti_telephony_hidl_wrapper.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/qti_telephony_hidl_wrapper.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/qti_telephony_utils.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/qti_telephony_utils.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/uimremoteclient.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/uimremoteclient.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/permissions/uimremoteserver.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/uimremoteserver.xml \
vendor/samsung/m01q/proprietary/system_ext/etc/seccomp_policy/perfservice.policy:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/seccomp_policy/perfservice.policy \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/extractors/libmmparserextractor.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/extractors/libmmparserextractor.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libavenhancements.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libavenhancements.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libdiag_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libdiag_system.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libdisplayconfig.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libdisplayconfig.qti.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libgralloc.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libgralloc.qti.so \
vendor/samsung/m01q/proprietary/system_ext/lib/liblistenjni.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/liblistenjni.qti.so \
vendor/samsung/m01q/proprietary/system_ext/lib/liblistensoundmodel2.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/liblistensoundmodel2.qti.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libmmosal.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmmosal.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libmmparser_lite.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmmparser_lite.so \
vendor/samsung/m01q/proprietary/system_ext/lib/liboemaids_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/liboemaids_system.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libqct_resampler.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqct_resampler.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libqdMetaData.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqdMetaData.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libqmi_cci_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqmi_cci_system.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libqmi_encdec_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqmi_encdec_system.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libqti-at.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqti-at.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libqti-iopd-client_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqti-iopd-client_system.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libqti-perfd-client_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqti-perfd-client_system.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libqti-util_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqti-util_system.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libqti_performance.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqti_performance.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libqti_vndfwk_detect.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libqti_vndfwk_detect.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libseccam.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libseccam.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libsecureui_svcsock_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libsecureui_svcsock_system.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libsecureuisvc_jni.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libsecureuisvc_jni.so \
vendor/samsung/m01q/proprietary/system_ext/lib/libvndfwk_detect_jni.qti.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libvndfwk_detect_jni.qti.so \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/system_ext/lib/[email protected]:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/[email protected] \
vendor/samsung/m01q/proprietary/vendor/apex/com.samsung.android.camera.unihal.signed.apex:$(TARGET_COPY_OUT_VENDOR)/apex/com.samsung.android.camera.unihal.signed.apex \
vendor/samsung/m01q/proprietary/vendor/app/CneApp/lib/arm/libvndfwk_detect_jni.qti.so:$(TARGET_COPY_OUT_VENDOR)/app/CneApp/lib/arm/libvndfwk_detect_jni.qti.so \
vendor/samsung/m01q/proprietary/vendor/bin/ATFWD-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/ATFWD-daemon \
vendor/samsung/m01q/proprietary/vendor/bin/KmInstallKeybox:$(TARGET_COPY_OUT_VENDOR)/bin/KmInstallKeybox \
vendor/samsung/m01q/proprietary/vendor/bin/PktRspTest:$(TARGET_COPY_OUT_VENDOR)/bin/PktRspTest \
vendor/samsung/m01q/proprietary/vendor/bin/SoterProvisioningTool:$(TARGET_COPY_OUT_VENDOR)/bin/SoterProvisioningTool \
vendor/samsung/m01q/proprietary/vendor/bin/StoreKeybox:$(TARGET_COPY_OUT_VENDOR)/bin/StoreKeybox \
vendor/samsung/m01q/proprietary/vendor/bin/adpl:$(TARGET_COPY_OUT_VENDOR)/bin/adpl \
vendor/samsung/m01q/proprietary/vendor/bin/adsprpcd:$(TARGET_COPY_OUT_VENDOR)/bin/adsprpcd \
vendor/samsung/m01q/proprietary/vendor/bin/audioflacapp:$(TARGET_COPY_OUT_VENDOR)/bin/audioflacapp \
vendor/samsung/m01q/proprietary/vendor/bin/boringssl_self_test32:$(TARGET_COPY_OUT_VENDOR)/bin/boringssl_self_test32 \
vendor/samsung/m01q/proprietary/vendor/bin/chattr:$(TARGET_COPY_OUT_VENDOR)/bin/chattr \
vendor/samsung/m01q/proprietary/vendor/bin/cnss-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/cnss-daemon \
vendor/samsung/m01q/proprietary/vendor/bin/cnss_diag:$(TARGET_COPY_OUT_VENDOR)/bin/cnss_diag \
vendor/samsung/m01q/proprietary/vendor/bin/cplay:$(TARGET_COPY_OUT_VENDOR)/bin/cplay \
vendor/samsung/m01q/proprietary/vendor/bin/devmem:$(TARGET_COPY_OUT_VENDOR)/bin/devmem \
vendor/samsung/m01q/proprietary/vendor/bin/diag_callback_sample:$(TARGET_COPY_OUT_VENDOR)/bin/diag_callback_sample \
vendor/samsung/m01q/proprietary/vendor/bin/diag_dci_sample:$(TARGET_COPY_OUT_VENDOR)/bin/diag_dci_sample \
vendor/samsung/m01q/proprietary/vendor/bin/diag_klog:$(TARGET_COPY_OUT_VENDOR)/bin/diag_klog \
vendor/samsung/m01q/proprietary/vendor/bin/diag_mdlog:$(TARGET_COPY_OUT_VENDOR)/bin/diag_mdlog \
vendor/samsung/m01q/proprietary/vendor/bin/diag_socket_log:$(TARGET_COPY_OUT_VENDOR)/bin/diag_socket_log \
vendor/samsung/m01q/proprietary/vendor/bin/diag_uart_log:$(TARGET_COPY_OUT_VENDOR)/bin/diag_uart_log \
vendor/samsung/m01q/proprietary/vendor/bin/dspservice:$(TARGET_COPY_OUT_VENDOR)/bin/dspservice \
vendor/samsung/m01q/proprietary/vendor/bin/dumpsys:$(TARGET_COPY_OUT_VENDOR)/bin/dumpsys \
vendor/samsung/m01q/proprietary/vendor/bin/e_loop:$(TARGET_COPY_OUT_VENDOR)/bin/e_loop \
vendor/samsung/m01q/proprietary/vendor/bin/emservice:$(TARGET_COPY_OUT_VENDOR)/bin/emservice \
vendor/samsung/m01q/proprietary/vendor/bin/fm_qsoc_patches:$(TARGET_COPY_OUT_VENDOR)/bin/fm_qsoc_patches \
vendor/samsung/m01q/proprietary/vendor/bin/fsdbg_vendor:$(TARGET_COPY_OUT_VENDOR)/bin/fsdbg_vendor \
vendor/samsung/m01q/proprietary/vendor/bin/fstman:$(TARGET_COPY_OUT_VENDOR)/bin/fstman \
vendor/samsung/m01q/proprietary/vendor/bin/fsync:$(TARGET_COPY_OUT_VENDOR)/bin/fsync \
vendor/samsung/m01q/proprietary/vendor/bin/getconf:$(TARGET_COPY_OUT_VENDOR)/bin/getconf \
vendor/samsung/m01q/proprietary/vendor/bin/hal_proxy_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/hal_proxy_daemon \
vendor/samsung/m01q/proprietary/vendor/bin/hqread:$(TARGET_COPY_OUT_VENDOR)/bin/hqread \
vendor/samsung/m01q/proprietary/vendor/bin/hvdcp_opti:$(TARGET_COPY_OUT_VENDOR)/bin/hvdcp_opti \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/android.hardware.audio.service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.audio.service \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/capabilityconfigstoretest:$(TARGET_COPY_OUT_VENDOR)/bin/hw/capabilityconfigstoretest \
vendor/samsung/m01q/proprietary/vendor/bin/hw/macloader:$(TARGET_COPY_OUT_VENDOR)/bin/hw/macloader \
vendor/samsung/m01q/proprietary/vendor/bin/hw/mfgloader:$(TARGET_COPY_OUT_VENDOR)/bin/hw/mfgloader \
vendor/samsung/m01q/proprietary/vendor/bin/hw/rild:$(TARGET_COPY_OUT_VENDOR)/bin/hw/rild \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/vendor.qti.hardware.vibrator.service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.vibrator.service \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/vendor.samsung.hardware.hyper-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.samsung.hardware.hyper-service \
vendor/samsung/m01q/proprietary/vendor/bin/hw/vendor.samsung.hardware.light-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.samsung.hardware.light-service \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/i2cdetect:$(TARGET_COPY_OUT_VENDOR)/bin/i2cdetect \
vendor/samsung/m01q/proprietary/vendor/bin/i2cdump:$(TARGET_COPY_OUT_VENDOR)/bin/i2cdump \
vendor/samsung/m01q/proprietary/vendor/bin/i2cget:$(TARGET_COPY_OUT_VENDOR)/bin/i2cget \
vendor/samsung/m01q/proprietary/vendor/bin/i2cset:$(TARGET_COPY_OUT_VENDOR)/bin/i2cset \
vendor/samsung/m01q/proprietary/vendor/bin/iconv:$(TARGET_COPY_OUT_VENDOR)/bin/iconv \
vendor/samsung/m01q/proprietary/vendor/bin/install:$(TARGET_COPY_OUT_VENDOR)/bin/install \
vendor/samsung/m01q/proprietary/vendor/bin/iod:$(TARGET_COPY_OUT_VENDOR)/bin/iod \
vendor/samsung/m01q/proprietary/vendor/bin/ipacm-diag:$(TARGET_COPY_OUT_VENDOR)/bin/ipacm-diag \
vendor/samsung/m01q/proprietary/vendor/bin/irsc_util:$(TARGET_COPY_OUT_VENDOR)/bin/irsc_util \
vendor/samsung/m01q/proprietary/vendor/bin/ks:$(TARGET_COPY_OUT_VENDOR)/bin/ks \
vendor/samsung/m01q/proprietary/vendor/bin/loc_launcher:$(TARGET_COPY_OUT_VENDOR)/bin/loc_launcher \
vendor/samsung/m01q/proprietary/vendor/bin/lowi-server:$(TARGET_COPY_OUT_VENDOR)/bin/lowi-server \
vendor/samsung/m01q/proprietary/vendor/bin/lsattr:$(TARGET_COPY_OUT_VENDOR)/bin/lsattr \
vendor/samsung/m01q/proprietary/vendor/bin/mm-qcamera-app:$(TARGET_COPY_OUT_VENDOR)/bin/mm-qcamera-app \
vendor/samsung/m01q/proprietary/vendor/bin/mm-qjpeg-dec-test:$(TARGET_COPY_OUT_VENDOR)/bin/mm-qjpeg-dec-test \
vendor/samsung/m01q/proprietary/vendor/bin/mm-qjpeg-enc-test:$(TARGET_COPY_OUT_VENDOR)/bin/mm-qjpeg-enc-test \
vendor/samsung/m01q/proprietary/vendor/bin/mm-qomx-idec-test:$(TARGET_COPY_OUT_VENDOR)/bin/mm-qomx-idec-test \
vendor/samsung/m01q/proprietary/vendor/bin/mm-qomx-ienc-test:$(TARGET_COPY_OUT_VENDOR)/bin/mm-qomx-ienc-test \
vendor/samsung/m01q/proprietary/vendor/bin/mutualex:$(TARGET_COPY_OUT_VENDOR)/bin/mutualex \
vendor/samsung/m01q/proprietary/vendor/bin/nc:$(TARGET_COPY_OUT_VENDOR)/bin/nc \
vendor/samsung/m01q/proprietary/vendor/bin/netcat:$(TARGET_COPY_OUT_VENDOR)/bin/netcat \
vendor/samsung/m01q/proprietary/vendor/bin/netmgrd:$(TARGET_COPY_OUT_VENDOR)/bin/netmgrd \
vendor/samsung/m01q/proprietary/vendor/bin/nproc:$(TARGET_COPY_OUT_VENDOR)/bin/nproc \
vendor/samsung/m01q/proprietary/vendor/bin/nsenter:$(TARGET_COPY_OUT_VENDOR)/bin/nsenter \
vendor/samsung/m01q/proprietary/vendor/bin/pm-proxy:$(TARGET_COPY_OUT_VENDOR)/bin/pm-proxy \
vendor/samsung/m01q/proprietary/vendor/bin/pm-service:$(TARGET_COPY_OUT_VENDOR)/bin/pm-service \
vendor/samsung/m01q/proprietary/vendor/bin/ptt_socket_app:$(TARGET_COPY_OUT_VENDOR)/bin/ptt_socket_app \
vendor/samsung/m01q/proprietary/vendor/bin/qjpeg-dma-test:$(TARGET_COPY_OUT_VENDOR)/bin/qjpeg-dma-test \
vendor/samsung/m01q/proprietary/vendor/bin/qrtr-cfg:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-cfg \
vendor/samsung/m01q/proprietary/vendor/bin/qrtr-lookup:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-lookup \
vendor/samsung/m01q/proprietary/vendor/bin/qrtr-ns:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-ns \
vendor/samsung/m01q/proprietary/vendor/bin/qseecom_sample_client:$(TARGET_COPY_OUT_VENDOR)/bin/qseecom_sample_client \
vendor/samsung/m01q/proprietary/vendor/bin/qseecomd:$(TARGET_COPY_OUT_VENDOR)/bin/qseecomd \
vendor/samsung/m01q/proprietary/vendor/bin/readelf:$(TARGET_COPY_OUT_VENDOR)/bin/readelf \
vendor/samsung/m01q/proprietary/vendor/bin/rmt_storage:$(TARGET_COPY_OUT_VENDOR)/bin/rmt_storage \
vendor/samsung/m01q/proprietary/vendor/bin/secril_config_svc:$(TARGET_COPY_OUT_VENDOR)/bin/secril_config_svc \
vendor/samsung/m01q/proprietary/vendor/bin/secure_ui_sample_client:$(TARGET_COPY_OUT_VENDOR)/bin/secure_ui_sample_client \
vendor/samsung/m01q/proprietary/vendor/bin/sensors.qti:$(TARGET_COPY_OUT_VENDOR)/bin/sensors.qti \
vendor/samsung/m01q/proprietary/vendor/bin/sigma_dut:$(TARGET_COPY_OUT_VENDOR)/bin/sigma_dut \
vendor/samsung/m01q/proprietary/vendor/bin/spectraltool:$(TARGET_COPY_OUT_VENDOR)/bin/spectraltool \
vendor/samsung/m01q/proprietary/vendor/bin/ssr_diag:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_diag \
vendor/samsung/m01q/proprietary/vendor/bin/ssr_setup:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_setup \
vendor/samsung/m01q/proprietary/vendor/bin/storkd:$(TARGET_COPY_OUT_VENDOR)/bin/storkd \
vendor/samsung/m01q/proprietary/vendor/bin/subsystem_ramdump:$(TARGET_COPY_OUT_VENDOR)/bin/subsystem_ramdump \
vendor/samsung/m01q/proprietary/vendor/bin/tbaseLoader:$(TARGET_COPY_OUT_VENDOR)/bin/tbaseLoader \
vendor/samsung/m01q/proprietary/vendor/bin/test:$(TARGET_COPY_OUT_VENDOR)/bin/test \
vendor/samsung/m01q/proprietary/vendor/bin/test_diag:$(TARGET_COPY_OUT_VENDOR)/bin/test_diag \
vendor/samsung/m01q/proprietary/vendor/bin/test_module_pproc:$(TARGET_COPY_OUT_VENDOR)/bin/test_module_pproc \
vendor/samsung/m01q/proprietary/vendor/bin/tftp_server:$(TARGET_COPY_OUT_VENDOR)/bin/tftp_server \
vendor/samsung/m01q/proprietary/vendor/bin/thermal-engine:$(TARGET_COPY_OUT_VENDOR)/bin/thermal-engine \
vendor/samsung/m01q/proprietary/vendor/bin/time_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/time_daemon \
vendor/samsung/m01q/proprietary/vendor/bin/unlink:$(TARGET_COPY_OUT_VENDOR)/bin/unlink \
vendor/samsung/m01q/proprietary/vendor/bin/unshare:$(TARGET_COPY_OUT_VENDOR)/bin/unshare \
vendor/samsung/m01q/proprietary/vendor/bin/uuidgen:$(TARGET_COPY_OUT_VENDOR)/bin/uuidgen \
vendor/samsung/m01q/proprietary/vendor/bin/vaultkeeperd:$(TARGET_COPY_OUT_VENDOR)/bin/vaultkeeperd \
vendor/samsung/m01q/proprietary/vendor/bin/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/[email protected] \
vendor/samsung/m01q/proprietary/vendor/bin/vendor_cmd_tool:$(TARGET_COPY_OUT_VENDOR)/bin/vendor_cmd_tool \
vendor/samsung/m01q/proprietary/vendor/bin/watch:$(TARGET_COPY_OUT_VENDOR)/bin/watch \
vendor/samsung/m01q/proprietary/vendor/bin/wvkprov:$(TARGET_COPY_OUT_VENDOR)/bin/wvkprov \
vendor/samsung/m01q/proprietary/vendor/bin/xtra-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/xtra-daemon \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/MTP_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/MTP_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/MTP_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/MTP_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/MTP_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/MTP_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/MTP_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/QRD_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/QRD_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/QRD_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/QRD_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/QRD_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/QRD_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/QRD_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/QRD_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Bluetooth_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_General_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Global_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Handset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Hdmi_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Headset_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Speaker_cal.acdb \
vendor/samsung/m01q/proprietary/vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_workspaceFile.qwsp \
vendor/samsung/m01q/proprietary/vendor/etc/camera/camera_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/camera_config.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/csidtg_camera.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/csidtg_camera.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/csidtg_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/csidtg_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/gc02m1_hs60_kg_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/gc02m1_hs60_kg_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/gc2375h_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/gc2375h_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/gc2375h_kg_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/gc2375h_kg_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/gc5035_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/gc5035_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/gc5035_ly_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/gc5035_ly_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/hi1336_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/hi1336_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/hi556_kingcome_front_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/hi556_kingcome_front_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/hi556_txd_front_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/hi556_txd_front_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/ov02a10_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov02a10_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/ov12a10_bear_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov12a10_bear_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/ov13b10_change_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov13b10_change_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/ov13b10_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov13b10_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/ov13b10_qt_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov13b10_qt_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/ov8856_bear_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov8856_bear_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/s5k3l6_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3l6_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/camera/s5k5e9_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k5e9_chromatix.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/mwqem.conf:$(TARGET_COPY_OUT_VENDOR)/etc/cne/mwqem.conf \
vendor/samsung/m01q/proprietary/vendor/etc/cne/profileMwqem.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/profileMwqem.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile1.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile2.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile3.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile4.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile5.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile6.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile1.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile15.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile15.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile16.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile16.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile17.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile17.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile18.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile18.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile19.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile19.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile2.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile20.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile20.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile21.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile21.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile3.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile32.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile32.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile4.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile5.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile6.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile7.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile7.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile1.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile2.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile3.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile4.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile5.xml \
vendor/samsung/m01q/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile6.xml \
vendor/samsung/m01q/proprietary/vendor/etc/config_chipset.json:$(TARGET_COPY_OUT_VENDOR)/etc/config_chipset.json \
vendor/samsung/m01q/proprietary/vendor/etc/config_vendor.json:$(TARGET_COPY_OUT_VENDOR)/etc/config_vendor.json \
vendor/samsung/m01q/proprietary/vendor/etc/data/dsi_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/data/dsi_config.xml \
vendor/samsung/m01q/proprietary/vendor/etc/data/netmgr_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/data/netmgr_config.xml \
vendor/samsung/m01q/proprietary/vendor/etc/dax3_media_codecs_dolby_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/dax3_media_codecs_dolby_audio.xml \
vendor/samsung/m01q/proprietary/vendor/etc/dolby/dax-default.xml:$(TARGET_COPY_OUT_VENDOR)/etc/dolby/dax-default.xml \
vendor/samsung/m01q/proprietary/vendor/etc/excluded-input-devices.xml:$(TARGET_COPY_OUT_VENDOR)/etc/excluded-input-devices.xml \
vendor/samsung/m01q/proprietary/vendor/etc/floating_feature.xml:$(TARGET_COPY_OUT_VENDOR)/etc/floating_feature.xml \
vendor/samsung/m01q/proprietary/vendor/etc/ftm_test_config_wcd9335:$(TARGET_COPY_OUT_VENDOR)/etc/ftm_test_config_wcd9335 \
vendor/samsung/m01q/proprietary/vendor/etc/gnss_antenna_info.conf:$(TARGET_COPY_OUT_VENDOR)/etc/gnss_antenna_info.conf \
vendor/samsung/m01q/proprietary/vendor/etc/gpfspath_oem_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gpfspath_oem_config.xml \
vendor/samsung/m01q/proprietary/vendor/etc/hearing_aid_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/hearing_aid_audio_policy_configuration.xml \
vendor/samsung/m01q/proprietary/vendor/etc/hostapd/hostapd.accept:$(TARGET_COPY_OUT_VENDOR)/etc/hostapd/hostapd.accept \
vendor/samsung/m01q/proprietary/vendor/etc/hostapd/hostapd.deny:$(TARGET_COPY_OUT_VENDOR)/etc/hostapd/hostapd.deny \
vendor/samsung/m01q/proprietary/vendor/etc/hostapd/hostapd_default.conf:$(TARGET_COPY_OUT_VENDOR)/etc/hostapd/hostapd_default.conf \
vendor/samsung/m01q/proprietary/vendor/etc/hqm_device.xml:$(TARGET_COPY_OUT_VENDOR)/etc/hqm_device.xml \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/android.hardware.audio.service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.audio.service.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/android.hardware.wifi.supplicant-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.wifi.supplicant-service.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/boringssl_self_test.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/boringssl_self_test.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/dataadpl.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/dataadpl.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/emservice.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/emservice.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/hw/init.samsung.bsp.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.samsung.bsp.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/hw/init.samsung.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.samsung.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/hyper-default-sec.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hyper-default-sec.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/init-qcril-data.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init-qcril-data.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/init.time_daemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.time_daemon.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/init.vendor.onebinary.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.vendor.onebinary.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/init.vendor.rilchip.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.vendor.rilchip.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/init.vendor.rilcommon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.vendor.rilcommon.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/init.vendor.sysfw.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.vendor.sysfw.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/init_thermal-engine.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init_thermal-engine.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/ipacm-diag.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/ipacm-diag.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/ipacm.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/ipacm.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/lights-default-sec.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/lights-default-sec.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/mutualex.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/mutualex.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/netmgrd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/netmgrd.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/vaultkeeper_common.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vaultkeeper_common.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/vendor.qti.adsprpc-guestos-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.adsprpc-guestos-service.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/vendor.qti.hardware.vibrator.service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.vibrator.service.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/vendor.qti.rmt_storage.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.rmt_storage.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/samsung/m01q/proprietary/vendor/etc/init/wifi.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/wifi.rc \
vendor/samsung/m01q/proprietary/vendor/etc/init/wifi_qcom.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/wifi_qcom.rc \
vendor/samsung/m01q/proprietary/vendor/etc/libnfc-mtp-NQ3XX.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-mtp-NQ3XX.conf \
vendor/samsung/m01q/proprietary/vendor/etc/libnfc-mtp-NQ4XX.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-mtp-NQ4XX.conf \
vendor/samsung/m01q/proprietary/vendor/etc/libnfc-mtp_default.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-mtp_default.conf \
vendor/samsung/m01q/proprietary/vendor/etc/libnfc-mtp_rf1.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-mtp_rf1.conf \
vendor/samsung/m01q/proprietary/vendor/etc/libnfc-mtp_rf2.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-mtp_rf2.conf \
vendor/samsung/m01q/proprietary/vendor/etc/libnfc-qrd-NQ3XX.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-qrd-NQ3XX.conf \
vendor/samsung/m01q/proprietary/vendor/etc/libnfc-qrd-NQ4XX.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-qrd-NQ4XX.conf \
vendor/samsung/m01q/proprietary/vendor/etc/libnfc-qrd_default.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-qrd_default.conf \
vendor/samsung/m01q/proprietary/vendor/etc/libnfc-qrd_rf1.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-qrd_rf1.conf \
vendor/samsung/m01q/proprietary/vendor/etc/libnfc-qrd_rf2.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-qrd_rf2.conf \
vendor/samsung/m01q/proprietary/vendor/etc/lm/AdaptLaunchFeature.xml:$(TARGET_COPY_OUT_VENDOR)/etc/lm/AdaptLaunchFeature.xml \
vendor/samsung/m01q/proprietary/vendor/etc/locale/plmn_delta_eng.bin:$(TARGET_COPY_OUT_VENDOR)/etc/locale/plmn_delta_eng.bin \
vendor/samsung/m01q/proprietary/vendor/etc/locale/plmn_delta_zh-rCN.bin:$(TARGET_COPY_OUT_VENDOR)/etc/locale/plmn_delta_zh-rCN.bin \
vendor/samsung/m01q/proprietary/vendor/etc/locale/plmn_delta_zh-rHK.bin:$(TARGET_COPY_OUT_VENDOR)/etc/locale/plmn_delta_zh-rHK.bin \
vendor/samsung/m01q/proprietary/vendor/etc/locale/plmn_delta_zh-rTW.bin:$(TARGET_COPY_OUT_VENDOR)/etc/locale/plmn_delta_zh-rTW.bin \
vendor/samsung/m01q/proprietary/vendor/etc/media_codecs_dolby_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_dolby_audio.xml \
vendor/samsung/m01q/proprietary/vendor/etc/mercury.json:$(TARGET_COPY_OUT_VENDOR)/etc/mercury.json \
vendor/samsung/m01q/proprietary/vendor/etc/mtu-conf.xml:$(TARGET_COPY_OUT_VENDOR)/etc/mtu-conf.xml \
vendor/samsung/m01q/proprietary/vendor/etc/pdpcnt-conf.xml:$(TARGET_COPY_OUT_VENDOR)/etc/pdpcnt-conf.xml \
vendor/samsung/m01q/proprietary/vendor/etc/perf/commonresourceconfigs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/commonresourceconfigs.xml \
vendor/samsung/m01q/proprietary/vendor/etc/perf/perf-profile0.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile0.conf \
vendor/samsung/m01q/proprietary/vendor/etc/perf/perf-profile1.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile1.conf \
vendor/samsung/m01q/proprietary/vendor/etc/perf/perfboostsconfig.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perfboostsconfig.xml \
vendor/samsung/m01q/proprietary/vendor/etc/perf/perfconfigstore.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perfconfigstore.xml \
vendor/samsung/m01q/proprietary/vendor/etc/perf/targetconfig.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/targetconfig.xml \
vendor/samsung/m01q/proprietary/vendor/etc/perf/targetresourceconfigs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/targetresourceconfigs.xml \
vendor/samsung/m01q/proprietary/vendor/etc/permissions/android.hardware.biometrics.face.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.biometrics.face.xml \
vendor/samsung/m01q/proprietary/vendor/etc/playback_record_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/playback_record_audio_policy_configuration.xml \
vendor/samsung/m01q/proprietary/vendor/etc/plmn_delta.bin:$(TARGET_COPY_OUT_VENDOR)/etc/plmn_delta.bin \
vendor/samsung/m01q/proprietary/vendor/etc/plmn_delta_attaio.bin:$(TARGET_COPY_OUT_VENDOR)/etc/plmn_delta_attaio.bin \
vendor/samsung/m01q/proprietary/vendor/etc/plmn_delta_hktw.bin:$(TARGET_COPY_OUT_VENDOR)/etc/plmn_delta_hktw.bin \
vendor/samsung/m01q/proprietary/vendor/etc/plmn_delta_usagsm.bin:$(TARGET_COPY_OUT_VENDOR)/etc/plmn_delta_usagsm.bin \
vendor/samsung/m01q/proprietary/vendor/etc/plmn_se13.bin:$(TARGET_COPY_OUT_VENDOR)/etc/plmn_se13.bin \
vendor/samsung/m01q/proprietary/vendor/etc/public.libraries.txt.backup:$(TARGET_COPY_OUT_VENDOR)/etc/public.libraries.txt.backup \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/fd/fast_face_detect_model_full_angle_16_CHAR.dat:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/fd/fast_face_detect_model_full_angle_16_CHAR.dat \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/gae/MeanFea.bin:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/gae/MeanFea.bin \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/gae/ParaFea.bin:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/gae/ParaFea.bin \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/gae/PmAgeFeatSelIdx.bin:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/gae/PmAgeFeatSelIdx.bin \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/gae/PmAgeModel.bin:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/gae/PmAgeModel.bin \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/gae/PmExpFeatSelIdx.bin:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/gae/PmExpFeatSelIdx.bin \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/gae/PmExpModel.bin:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/gae/PmExpModel.bin \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/gae/PmGenModel.bin:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/gae/PmGenModel.bin \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/gae/PmGenderFeatSelIdx.bin:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/gae/PmGenderFeatSelIdx.bin \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/ld/avg_hog_13pt.dat:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/ld/avg_hog_13pt.dat \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/ld/avg_hog_35pt.dat:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/ld/avg_hog_35pt.dat \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/ld/mean_35pt.txt:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/ld/mean_35pt.txt \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/ld/regress_matrix_short_13pt.dat:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/ld/regress_matrix_short_13pt.dat \
vendor/samsung/m01q/proprietary/vendor/etc/saiv/ld/regress_matrix_short_35pt.dat:$(TARGET_COPY_OUT_VENDOR)/etc/saiv/ld/regress_matrix_short_35pt.dat \
vendor/samsung/m01q/proprietary/vendor/etc/sec_config_oem:$(TARGET_COPY_OUT_VENDOR)/etc/sec_config_oem \
vendor/samsung/m01q/proprietary/vendor/etc/secnvm/k250a_00000200.img:$(TARGET_COPY_OUT_VENDOR)/etc/secnvm/k250a_00000200.img \
vendor/samsung/m01q/proprietary/vendor/etc/sensors/sensor_def_qcomdev.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/sensor_def_qcomdev.conf \
vendor/samsung/m01q/proprietary/vendor/etc/somxreg.conf:$(TARGET_COPY_OUT_VENDOR)/etc/somxreg.conf \
vendor/samsung/m01q/proprietary/vendor/etc/thermal-engine.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal-engine.conf \
vendor/samsung/m01q/proprietary/vendor/etc/thermal-engine_Global.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal-engine_Global.conf \
vendor/samsung/m01q/proprietary/vendor/etc/thermal-engine_HS50_Global.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal-engine_HS50_Global.conf \
vendor/samsung/m01q/proprietary/vendor/etc/thermal-engine_HS50_NA_EUR.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal-engine_HS50_NA_EUR.conf \
vendor/samsung/m01q/proprietary/vendor/etc/thermal-engine_NA.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal-engine_NA.conf \
vendor/samsung/m01q/proprietary/vendor/etc/wlan_common_rc:$(TARGET_COPY_OUT_VENDOR)/etc/wlan_common_rc \
vendor/samsung/m01q/proprietary/vendor/etc/wlan_vendor_rc:$(TARGET_COPY_OUT_VENDOR)/etc/wlan_vendor_rc \
vendor/samsung/m01q/proprietary/vendor/firmware/AbovCapSense90.BIN:$(TARGET_COPY_OUT_VENDOR)/firmware/AbovCapSense90.BIN \
vendor/samsung/m01q/proprietary/vendor/firmware/AbovCapSense93.BIN:$(TARGET_COPY_OUT_VENDOR)/firmware/AbovCapSense93.BIN \
vendor/samsung/m01q/proprietary/vendor/firmware/AbovCapSense93C.BIN:$(TARGET_COPY_OUT_VENDOR)/firmware/AbovCapSense93C.BIN \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_guoxian_5.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_guoxian_5.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_guoxian_6.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_guoxian_6.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_guoxian_cd.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_guoxian_cd.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_guoxian_cd_1635.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_guoxian_cd_1635.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_guoxian_jindongdi_hsd.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_guoxian_jindongdi_hsd.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_guoxian_new.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_guoxian_new.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_guoxian_old.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_guoxian_old.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_helitai.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_helitai.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_helitai_cd.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_helitai_cd.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_helitai_hsd_1635.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_helitai_hsd_1635.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_helitai_mdt.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_helitai_mdt.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_tongxingda_new.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_tongxingda_new.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/Conf_MultipleTest_tongxingda_old.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/Conf_MultipleTest_tongxingda_old.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/a300_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a300_pfp.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/a300_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a300_pm4.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/a330_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a330_pfp.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/a330_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a330_pm4.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/a530_gpmu.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a530_gpmu.fw2 \
vendor/samsung/m01q/proprietary/vendor/firmware/a530_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530_pfp.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/a530_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530_pm4.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/a530v1_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v1_pfp.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/a530v1_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v1_pm4.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/a530v2_seq.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v2_seq.fw2 \
vendor/samsung/m01q/proprietary/vendor/firmware/a530v3_gpmu.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v3_gpmu.fw2 \
vendor/samsung/m01q/proprietary/vendor/firmware/a530v3_seq.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v3_seq.fw2 \
vendor/samsung/m01q/proprietary/vendor/firmware/a540_gpmu.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a540_gpmu.fw2 \
vendor/samsung/m01q/proprietary/vendor/firmware/aw8864_cfg.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/aw8864_cfg.bin \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_10_0.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_10_0.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_12_0.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_12_0.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_12_1.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_12_1.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_1_1.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_1_1.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_1_6.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_1_6.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_2_0.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_2_0.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_4_0.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_4_0.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_5_0.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_5_0.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_5_1.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_5_1.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_5_2.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_5_2.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_6_0.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_6_0.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/cpp_firmware_v1_8_0.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/cpp_firmware_v1_8_0.fw \
vendor/samsung/m01q/proprietary/vendor/firmware/dax_param.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/dax_param.bin \
vendor/samsung/m01q/proprietary/vendor/firmware/dbmd8_va_asrp_fw.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/dbmd8_va_asrp_fw.bin \
vendor/samsung/m01q/proprietary/vendor/firmware/dbmd8_va_fw.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/dbmd8_va_fw.bin \
vendor/samsung/m01q/proprietary/vendor/firmware/fs16xx_mono.fsm:$(TARGET_COPY_OUT_VENDOR)/firmware/fs16xx_mono.fsm \
vendor/samsung/m01q/proprietary/vendor/firmware/gt1x_fw.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/gt1x_fw.bin \
vendor/samsung/m01q/proprietary/vendor/firmware/mono.cnt:$(TARGET_COPY_OUT_VENDOR)/firmware/mono.cnt \
vendor/samsung/m01q/proprietary/vendor/firmware/test_sensor_0.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/test_sensor_0.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/test_sensor_2.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/test_sensor_2.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/tfa98xx.cnt:$(TARGET_COPY_OUT_VENDOR)/firmware/tfa98xx.cnt \
vendor/samsung/m01q/proprietary/vendor/firmware/wlan/prima/WCNSS_cfg.dat:$(TARGET_COPY_OUT_VENDOR)/firmware/wlan/prima/WCNSS_cfg.dat \
vendor/samsung/m01q/proprietary/vendor/firmware/wlan/prima/WCNSS_qcom_cfg.ini:$(TARGET_COPY_OUT_VENDOR)/firmware/wlan/prima/WCNSS_qcom_cfg.ini \
vendor/samsung/m01q/proprietary/vendor/firmware/wlan/prima/WCNSS_qcom_wlan_nv.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/wlan/prima/WCNSS_qcom_wlan_nv.bin \
vendor/samsung/m01q/proprietary/vendor/firmware/wlan/prima/WCNSS_wlan_dictionary.dat:$(TARGET_COPY_OUT_VENDOR)/firmware/wlan/prima/WCNSS_wlan_dictionary.dat \
vendor/samsung/m01q/proprietary/vendor/firmware/wlan/prima/grippower.info:$(TARGET_COPY_OUT_VENDOR)/firmware/wlan/prima/grippower.info \
vendor/samsung/m01q/proprietary/vendor/lib/android.hardware.audio.common-util.so:$(TARGET_COPY_OUT_VENDOR)/lib/android.hardware.audio.common-util.so \
vendor/samsung/m01q/proprietary/vendor/lib/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/btaudio_offload_if.so:$(TARGET_COPY_OUT_VENDOR)/lib/btaudio_offload_if.so \
vendor/samsung/m01q/proprietary/vendor/lib/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/dualcali_golden.bin:$(TARGET_COPY_OUT_VENDOR)/lib/dualcali_golden.bin \
vendor/samsung/m01q/proprietary/vendor/lib/dualcali_golden_2.bin:$(TARGET_COPY_OUT_VENDOR)/lib/dualcali_golden_2.bin \
vendor/samsung/m01q/proprietary/vendor/lib/dualcali_golden_3.bin:$(TARGET_COPY_OUT_VENDOR)/lib/dualcali_golden_3.bin \
vendor/samsung/m01q/proprietary/vendor/lib/dualcali_golden_4.bin:$(TARGET_COPY_OUT_VENDOR)/lib/dualcali_golden_4.bin \
vendor/samsung/m01q/proprietary/vendor/lib/dualcali_golden_5.bin:$(TARGET_COPY_OUT_VENDOR)/lib/dualcali_golden_5.bin \
vendor/samsung/m01q/proprietary/vendor/lib/dualcali_golden_6.bin:$(TARGET_COPY_OUT_VENDOR)/lib/dualcali_golden_6.bin \
vendor/samsung/m01q/proprietary/vendor/lib/dualcali_golden_7.bin:$(TARGET_COPY_OUT_VENDOR)/lib/dualcali_golden_7.bin \
vendor/samsung/m01q/proprietary/vendor/lib/egl/eglSubDriverAndroid.so:$(TARGET_COPY_OUT_VENDOR)/lib/egl/eglSubDriverAndroid.so \
vendor/samsung/m01q/proprietary/vendor/lib/egl/libEGL_adreno.so:$(TARGET_COPY_OUT_VENDOR)/lib/egl/libEGL_adreno.so \
vendor/samsung/m01q/proprietary/vendor/lib/egl/libGLESv1_CM_adreno.so:$(TARGET_COPY_OUT_VENDOR)/lib/egl/libGLESv1_CM_adreno.so \
vendor/samsung/m01q/proprietary/vendor/lib/egl/libGLESv2_adreno.so:$(TARGET_COPY_OUT_VENDOR)/lib/egl/libGLESv2_adreno.so \
vendor/samsung/m01q/proprietary/vendor/lib/egl/libq3dtools_adreno.so:$(TARGET_COPY_OUT_VENDOR)/lib/egl/libq3dtools_adreno.so \
vendor/samsung/m01q/proprietary/vendor/lib/egl/libq3dtools_esx.so:$(TARGET_COPY_OUT_VENDOR)/lib/egl/libq3dtools_esx.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/activity_recognition.msm8937.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/activity_recognition.msm8937.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/audio.bluetooth.default.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/audio.bluetooth.default.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/audio.bluetooth_qti.default.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/audio.bluetooth_qti.default.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/audio.primary.default.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/audio.primary.default.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/audio.primary.msm8937.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/audio.primary.msm8937.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/audio.r_submix.default.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/audio.r_submix.default.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/audio.usb.default.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/audio.usb.default.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/camera.msm8937.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/camera.msm8937.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/face.default.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/face.default.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/gralloc.default.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/gralloc.default.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/gralloc.msm8937.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/gralloc.msm8937.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/hwcomposer.msm8937.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/hwcomposer.msm8937.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/lights.msm8937.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/lights.msm8937.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/memtrack.msm8937.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/memtrack.msm8937.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/power.default.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/power.default.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/power.qcom.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/power.qcom.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/lib/hw/[email protected] \
vendor/samsung/m01q/proprietary/vendor/lib/hw/vibrator.default.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/vibrator.default.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/vulkan.adreno.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/vulkan.adreno.so \
vendor/samsung/m01q/proprietary/vendor/lib/hw/vulkan.pastel.so:$(TARGET_COPY_OUT_VENDOR)/lib/hw/vulkan.pastel.so \
vendor/samsung/m01q/proprietary/vendor/lib/libAlacSwDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libAlacSwDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libApeSwDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libApeSwDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libC2D2.so:$(TARGET_COPY_OUT_VENDOR)/lib/libC2D2.so \
vendor/samsung/m01q/proprietary/vendor/lib/libCB.so:$(TARGET_COPY_OUT_VENDOR)/lib/libCB.so \
vendor/samsung/m01q/proprietary/vendor/lib/libEGL_adreno.so:$(TARGET_COPY_OUT_VENDOR)/lib/libEGL_adreno.so \
vendor/samsung/m01q/proprietary/vendor/lib/libFaceAuth.so:$(TARGET_COPY_OUT_VENDOR)/lib/libFaceAuth.so \
vendor/samsung/m01q/proprietary/vendor/lib/libFlacSwDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libFlacSwDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libGLESv2_adreno.so:$(TARGET_COPY_OUT_VENDOR)/lib/libGLESv2_adreno.so \
vendor/samsung/m01q/proprietary/vendor/lib/libGPTEE_vendor.so:$(TARGET_COPY_OUT_VENDOR)/lib/libGPTEE_vendor.so \
vendor/samsung/m01q/proprietary/vendor/lib/libGPreqcancel.so:$(TARGET_COPY_OUT_VENDOR)/lib/libGPreqcancel.so \
vendor/samsung/m01q/proprietary/vendor/lib/libGPreqcancel_svc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libGPreqcancel_svc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libHMT.so:$(TARGET_COPY_OUT_VENDOR)/lib/libHMT.so \
vendor/samsung/m01q/proprietary/vendor/lib/libI420colorconvert.so:$(TARGET_COPY_OUT_VENDOR)/lib/libI420colorconvert.so \
vendor/samsung/m01q/proprietary/vendor/lib/libMpeg4SwEncoder.so:$(TARGET_COPY_OUT_VENDOR)/lib/libMpeg4SwEncoder.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxAacDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxAacDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxAacEnc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxAacEnc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxAlacDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxAlacDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxAlacDecSw.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxAlacDecSw.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxAmrDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxAmrDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxAmrEnc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxAmrEnc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxAmrwbplusDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxAmrwbplusDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxApeDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxApeDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxApeDecSw.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxApeDecSw.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxCore.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxCore.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxDsdDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxDsdDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxEvrcDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxEvrcDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxEvrcEnc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxEvrcEnc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxG711Dec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxG711Dec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxG711Enc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxG711Enc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxQcelp13Dec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxQcelp13Dec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxQcelp13Enc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxQcelp13Enc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxSwVdec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxSwVdec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxSwVencMpeg4.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxSwVencMpeg4.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxVdec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxVdec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxVenc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxVenc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxVpp.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxVpp.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOmxWmaDec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOmxWmaDec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOpenCL.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOpenCL.so \
vendor/samsung/m01q/proprietary/vendor/lib/libOpenCv.camera.samsung.so:$(TARGET_COPY_OUT_VENDOR)/lib/libOpenCv.camera.samsung.so \
vendor/samsung/m01q/proprietary/vendor/lib/libQSEEComAPI.so:$(TARGET_COPY_OUT_VENDOR)/lib/libQSEEComAPI.so \
vendor/samsung/m01q/proprietary/vendor/lib/libSecC2ComponentStore.so:$(TARGET_COPY_OUT_VENDOR)/lib/libSecC2ComponentStore.so \
vendor/samsung/m01q/proprietary/vendor/lib/libSecureUILib.so:$(TARGET_COPY_OUT_VENDOR)/lib/libSecureUILib.so \
vendor/samsung/m01q/proprietary/vendor/lib/libStDrvInt.so:$(TARGET_COPY_OUT_VENDOR)/lib/libStDrvInt.so \
vendor/samsung/m01q/proprietary/vendor/lib/libUBWC.so:$(TARGET_COPY_OUT_VENDOR)/lib/libUBWC.so \
vendor/samsung/m01q/proprietary/vendor/lib/libVkLayer_q3dtools.so:$(TARGET_COPY_OUT_VENDOR)/lib/libVkLayer_q3dtools.so \
vendor/samsung/m01q/proprietary/vendor/lib/lib_SoundAlive_3DPosition_ver202.so:$(TARGET_COPY_OUT_VENDOR)/lib/lib_SoundAlive_3DPosition_ver202.so \
vendor/samsung/m01q/proprietary/vendor/lib/liba2dpoffload.so:$(TARGET_COPY_OUT_VENDOR)/lib/liba2dpoffload.so \
vendor/samsung/m01q/proprietary/vendor/lib/libacdb-fts.so:$(TARGET_COPY_OUT_VENDOR)/lib/libacdb-fts.so \
vendor/samsung/m01q/proprietary/vendor/lib/libacdbloader.so:$(TARGET_COPY_OUT_VENDOR)/lib/libacdbloader.so \
vendor/samsung/m01q/proprietary/vendor/lib/libacdbrtac.so:$(TARGET_COPY_OUT_VENDOR)/lib/libacdbrtac.so \
vendor/samsung/m01q/proprietary/vendor/lib/libactuator_dw9714.so:$(TARGET_COPY_OUT_VENDOR)/lib/libactuator_dw9714.so \
vendor/samsung/m01q/proprietary/vendor/lib/libactuator_dw9714_change.so:$(TARGET_COPY_OUT_VENDOR)/lib/libactuator_dw9714_change.so \
vendor/samsung/m01q/proprietary/vendor/lib/libactuator_dw9714_v.so:$(TARGET_COPY_OUT_VENDOR)/lib/libactuator_dw9714_v.so \
vendor/samsung/m01q/proprietary/vendor/lib/libactuator_fp5510.so:$(TARGET_COPY_OUT_VENDOR)/lib/libactuator_fp5510.so \
vendor/samsung/m01q/proprietary/vendor/lib/libactuator_gt9772.so:$(TARGET_COPY_OUT_VENDOR)/lib/libactuator_gt9772.so \
vendor/samsung/m01q/proprietary/vendor/lib/libadiertac.so:$(TARGET_COPY_OUT_VENDOR)/lib/libadiertac.so \
vendor/samsung/m01q/proprietary/vendor/lib/libadm.so:$(TARGET_COPY_OUT_VENDOR)/lib/libadm.so \
vendor/samsung/m01q/proprietary/vendor/lib/libadpcmdec.so:$(TARGET_COPY_OUT_VENDOR)/lib/libadpcmdec.so \
vendor/samsung/m01q/proprietary/vendor/lib/libadreno_utils.so:$(TARGET_COPY_OUT_VENDOR)/lib/libadreno_utils.so \
vendor/samsung/m01q/proprietary/vendor/lib/libadsp_default_listener.so:$(TARGET_COPY_OUT_VENDOR)/lib/libadsp_default_listener.so \
vendor/samsung/m01q/proprietary/vendor/lib/libadsprpc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libadsprpc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libarcsoft_beauty_outfocus.so:$(TARGET_COPY_OUT_VENDOR)/lib/libarcsoft_beauty_outfocus.so \
vendor/samsung/m01q/proprietary/vendor/lib/libarcsoft_beauty_performance.so:$(TARGET_COPY_OUT_VENDOR)/lib/libarcsoft_beauty_performance.so \
vendor/samsung/m01q/proprietary/vendor/lib/libarcsoft_beautyshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libarcsoft_beautyshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libarcsoft_bokeh_basic.so:$(TARGET_COPY_OUT_VENDOR)/lib/libarcsoft_bokeh_basic.so \
vendor/samsung/m01q/proprietary/vendor/lib/libarcsoft_dehaze.so:$(TARGET_COPY_OUT_VENDOR)/lib/libarcsoft_dehaze.so \
vendor/samsung/m01q/proprietary/vendor/lib/libarcsoft_dualcam_refocus_image.so:$(TARGET_COPY_OUT_VENDOR)/lib/libarcsoft_dualcam_refocus_image.so \
vendor/samsung/m01q/proprietary/vendor/lib/libarcsoft_dualcam_refocus_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libarcsoft_dualcam_refocus_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libarcsoft_faceid.so:$(TARGET_COPY_OUT_VENDOR)/lib/libarcsoft_faceid.so \
vendor/samsung/m01q/proprietary/vendor/lib/libaudcal.so:$(TARGET_COPY_OUT_VENDOR)/lib/libaudcal.so \
vendor/samsung/m01q/proprietary/vendor/lib/libaudio_log_utils.so:$(TARGET_COPY_OUT_VENDOR)/lib/libaudio_log_utils.so \
vendor/samsung/m01q/proprietary/vendor/lib/libaudioalsa.so:$(TARGET_COPY_OUT_VENDOR)/lib/libaudioalsa.so \
vendor/samsung/m01q/proprietary/vendor/lib/libaudioconfigstore.so:$(TARGET_COPY_OUT_VENDOR)/lib/libaudioconfigstore.so \
vendor/samsung/m01q/proprietary/vendor/lib/libaudioparsers.so:$(TARGET_COPY_OUT_VENDOR)/lib/libaudioparsers.so \
vendor/samsung/m01q/proprietary/vendor/lib/libautohal.so:$(TARGET_COPY_OUT_VENDOR)/lib/libautohal.so \
vendor/samsung/m01q/proprietary/vendor/lib/libavservices_minijail.so:$(TARGET_COPY_OUT_VENDOR)/lib/libavservices_minijail.so \
vendor/samsung/m01q/proprietary/vendor/lib/libbase64.so:$(TARGET_COPY_OUT_VENDOR)/lib/libbase64.so \
vendor/samsung/m01q/proprietary/vendor/lib/libbatching.so:$(TARGET_COPY_OUT_VENDOR)/lib/libbatching.so \
vendor/samsung/m01q/proprietary/vendor/lib/libbatterylistener.so:$(TARGET_COPY_OUT_VENDOR)/lib/libbatterylistener.so \
vendor/samsung/m01q/proprietary/vendor/lib/libbluetooth_audio_session.so:$(TARGET_COPY_OUT_VENDOR)/lib/libbluetooth_audio_session.so \
vendor/samsung/m01q/proprietary/vendor/lib/libbluetooth_audio_session_qti.so:$(TARGET_COPY_OUT_VENDOR)/lib/libbluetooth_audio_session_qti.so \
vendor/samsung/m01q/proprietary/vendor/lib/libbluetooth_audio_session_qti_2_1.so:$(TARGET_COPY_OUT_VENDOR)/lib/libbluetooth_audio_session_qti_2_1.so \
vendor/samsung/m01q/proprietary/vendor/lib/libbt-hidlclient.so:$(TARGET_COPY_OUT_VENDOR)/lib/libbt-hidlclient.so \
vendor/samsung/m01q/proprietary/vendor/lib/libbtnv.so:$(TARGET_COPY_OUT_VENDOR)/lib/libbtnv.so \
vendor/samsung/m01q/proprietary/vendor/lib/libc2d30-a3xx.so:$(TARGET_COPY_OUT_VENDOR)/lib/libc2d30-a3xx.so \
vendor/samsung/m01q/proprietary/vendor/lib/libc2d30_bltlib.so:$(TARGET_COPY_OUT_VENDOR)/lib/libc2d30_bltlib.so \
vendor/samsung/m01q/proprietary/vendor/lib/libc2dcolorconvert.so:$(TARGET_COPY_OUT_VENDOR)/lib/libc2dcolorconvert.so \
vendor/samsung/m01q/proprietary/vendor/lib/libcacertclient.so:$(TARGET_COPY_OUT_VENDOR)/lib/libcacertclient.so \
vendor/samsung/m01q/proprietary/vendor/lib/libcamera2ndk_vendor.so:$(TARGET_COPY_OUT_VENDOR)/lib/libcamera2ndk_vendor.so \
vendor/samsung/m01q/proprietary/vendor/lib/libcapiv2svacnn.so:$(TARGET_COPY_OUT_VENDOR)/lib/libcapiv2svacnn.so \
vendor/samsung/m01q/proprietary/vendor/lib/libcapiv2vop.so:$(TARGET_COPY_OUT_VENDOR)/lib/libcapiv2vop.so \
vendor/samsung/m01q/proprietary/vendor/lib/libcdfw.so:$(TARGET_COPY_OUT_VENDOR)/lib/libcdfw.so \
vendor/samsung/m01q/proprietary/vendor/lib/libcdfw_remote_api.so:$(TARGET_COPY_OUT_VENDOR)/lib/libcdfw_remote_api.so \
vendor/samsung/m01q/proprietary/vendor/lib/libcdsp_default_listener.so:$(TARGET_COPY_OUT_VENDOR)/lib/libcdsp_default_listener.so \
vendor/samsung/m01q/proprietary/vendor/lib/libcdsprpc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libcdsprpc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_csidtg_common.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_csidtg_common.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_csidtg_cpp_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_csidtg_cpp_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_csidtg_postproc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_csidtg_postproc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_csidtg_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_csidtg_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_csidtg_zsl_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_csidtg_zsl_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc02m1_hs60_kg_common.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc02m1_hs60_kg_common.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc02m1_hs60_kg_cpp_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc02m1_hs60_kg_cpp_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc02m1_hs60_kg_postproc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc02m1_hs60_kg_postproc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc02m1_hs60_kg_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc02m1_hs60_kg_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc02m1_hs60_kg_zsl_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc02m1_hs60_kg_zsl_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_common.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_common.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_cpp_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_cpp_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_kg_common.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_kg_common.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_kg_cpp_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_kg_cpp_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_kg_mix_zsl_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_kg_mix_zsl_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_kg_postproc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_kg_postproc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_kg_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_kg_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_kg_snapshot_forth.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_kg_snapshot_forth.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_kg_zsl_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_kg_zsl_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_kg_zsl_preview_forth.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_kg_zsl_preview_forth.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_mix_cpp_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_mix_cpp_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_mix_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_mix_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_mix_zsl_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_mix_zsl_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_mix_zsl_preview_mix1.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_mix_zsl_preview_mix1.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_postproc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_postproc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc2375h_zsl_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc2375h_zsl_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_default_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_default_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_default_preview_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_default_preview_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_default_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_default_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_default_video_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_default_video_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_fullsize_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_fullsize_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_fullsize_preview_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_fullsize_preview_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_fullsize_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_fullsize_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_fullsize_video_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_fullsize_video_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_hfr_120.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_hfr_120.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_hfr_60.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_hfr_60.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_a3_hfr_90.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_a3_hfr_90.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_beauty_common.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_beauty_common.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_beauty_cpp_liveshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_beauty_cpp_liveshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_beauty_cpp_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_beauty_cpp_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_beauty_cpp_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_beauty_cpp_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_beauty_cpp_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_beauty_cpp_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_beauty_default_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_beauty_default_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_beauty_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_beauty_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_beauty_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_beauty_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_beauty_zsl_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_beauty_zsl_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_beauty_zsl_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_beauty_zsl_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_common.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_common.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_ds_chromatix.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_ds_chromatix.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_hfr_120.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_hfr_120.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_hfr_60.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_hfr_60.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_hfr_90.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_hfr_90.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_liveshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_liveshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_liveshot_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_liveshot_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_preview_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_preview_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_snapshot_ViLTE.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_snapshot_ViLTE.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_snapshot_hdr.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_snapshot_hdr.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_snapshot_hht.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_snapshot_hht.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_snapshot_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_snapshot_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_us_chromatix.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_us_chromatix.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_video_full.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_video_full.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_cpp_video_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_cpp_video_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_default_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_default_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_default_video_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_default_video_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_hfr_120.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_hfr_120.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_hfr_60.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_hfr_60.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_hfr_90.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_hfr_90.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_liveshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_liveshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_liveshot_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_liveshot_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_a3_default_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_a3_default_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_a3_default_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_a3_default_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_a3_fullsize_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_a3_fullsize_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_a3_fullsize_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_a3_fullsize_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_a3_hfr_120.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_a3_hfr_120.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_a3_hfr_60.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_a3_hfr_60.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_a3_hfr_90.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_a3_hfr_90.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_beauty_common.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_beauty_common.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_beauty_cpp_liveshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_beauty_cpp_liveshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_beauty_cpp_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_beauty_cpp_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_beauty_cpp_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_beauty_cpp_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_beauty_cpp_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_beauty_cpp_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_beauty_default_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_beauty_default_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_beauty_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_beauty_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_beauty_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_beauty_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_beauty_zsl_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_beauty_zsl_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_beauty_zsl_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_beauty_zsl_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_common.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_common.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_ds_chromatix.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_ds_chromatix.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_hfr_120.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_hfr_120.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_hfr_60.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_hfr_60.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_hfr_90.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_hfr_90.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_liveshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_liveshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_snapshot_ViLTE.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_snapshot_ViLTE.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_snapshot_hdr.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_snapshot_hdr.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_snapshot_hht.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_snapshot_hht.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_us_chromatix.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_us_chromatix.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_cpp_video_full.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_cpp_video_full.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_default_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_default_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_hfr_120.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_hfr_120.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_hfr_60.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_hfr_60.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_hfr_90.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_hfr_90.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_liveshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_liveshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_postproc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_postproc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_video_full.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_video_full.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_zsl_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_zsl_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_ly_zsl_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_ly_zsl_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_postproc.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_postproc.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_preview_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_preview_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_snapshot_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_snapshot_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_video_full.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_video_full.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_zsl_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_zsl_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_zsl_preview_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_zsl_preview_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_zsl_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_zsl_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_gc5035_zsl_video_tmo.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_gc5035_zsl_video_tmo.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_1080p_preview_3a.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_1080p_preview_3a.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_1080p_video_3a.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_1080p_video_3a.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_4k_preview_3a.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_4k_preview_3a.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_4k_video_3a.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_4k_video_3a.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_beauty_common.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_beauty_common.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_beauty_cpp_liveshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_beauty_cpp_liveshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_beauty_cpp_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_beauty_cpp_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_beauty_cpp_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_beauty_cpp_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_beauty_cpp_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_beauty_cpp_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_beauty_default_video.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_beauty_default_video.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_beauty_fullsize_preview_3a.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_beauty_fullsize_preview_3a.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_beauty_fullsize_video_3a.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_beauty_fullsize_video_3a.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_beauty_preview.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_beauty_preview.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_beauty_snapshot.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_beauty_snapshot.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_bokeh.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_bokeh.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_bokeh_3a.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_bokeh_3a.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_common.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_common.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_cpp_bokeh.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_cpp_bokeh.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_cpp_hfr_120.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_cpp_hfr_120.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_cpp_hfr_240.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_cpp_hfr_240.so \
vendor/samsung/m01q/proprietary/vendor/lib/libchromatix_hi1336_cpp_hfr_60.so:$(TARGET_COPY_OUT_VENDOR)/lib/libchromatix_hi1336_cpp_hfr_60.so \