-
Notifications
You must be signed in to change notification settings - Fork 1
/
OP4A89-vendor.mk
2696 lines (2693 loc) · 349 KB
/
OP4A89-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/oppo/OP4A89/setup-makefiles.sh
PRODUCT_SOONG_NAMESPACES += \
vendor/oppo/OP4A89
PRODUCT_COPY_FILES += \
vendor/oppo/OP4A89/proprietary/bin/iwpriv:$(TARGET_COPY_OUT_SYSTEM)/bin/iwpriv \
vendor/oppo/OP4A89/proprietary/etc/cne/Nexus/ATT/ATT_profiles.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/cne/Nexus/ATT/ATT_profiles.xml \
vendor/oppo/OP4A89/proprietary/etc/cne/Nexus/ROW/ROW_profiles.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/cne/Nexus/ROW/ROW_profiles.xml \
vendor/oppo/OP4A89/proprietary/etc/cne/Nexus/VZW/VZW_profiles.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/cne/Nexus/VZW/VZW_profiles.xml \
vendor/oppo/OP4A89/proprietary/etc/nfcee_access.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/nfcee_access.xml \
vendor/oppo/OP4A89/proprietary/etc/perf/wlc_model.tflite:$(TARGET_COPY_OUT_SYSTEM)/etc/perf/wlc_model.tflite \
vendor/oppo/OP4A89/proprietary/etc/permissions/audiosphere.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/audiosphere.xml \
vendor/oppo/OP4A89/proprietary/etc/permissions/com.qti.location.sdk.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/com.qti.location.sdk.xml \
vendor/oppo/OP4A89/proprietary/etc/permissions/com.qualcomm.location.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/com.qualcomm.location.xml \
vendor/oppo/OP4A89/proprietary/etc/permissions/com.qualcomm.qti.imscmservice.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/com.qualcomm.qti.imscmservice.xml \
vendor/oppo/OP4A89/proprietary/etc/permissions/izat.xt.srv.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/izat.xt.srv.xml \
vendor/oppo/OP4A89/proprietary/etc/permissions/privapp-permissions-com.qualcomm.location.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/privapp-permissions-com.qualcomm.location.xml \
vendor/oppo/OP4A89/proprietary/etc/permissions/privapp-permissions-qti.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/privapp-permissions-qti.xml \
vendor/oppo/OP4A89/proprietary/etc/permissions/qti_libpermissions.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/qti_libpermissions.xml \
vendor/oppo/OP4A89/proprietary/etc/permissions/qti_permissions.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/qti_permissions.xml \
vendor/oppo/OP4A89/proprietary/etc/sysconfig/qti_whitelist.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/sysconfig/qti_whitelist.xml \
vendor/oppo/OP4A89/proprietary/lib/fm_helium.so:$(TARGET_COPY_OUT_SYSTEM)/lib/fm_helium.so \
vendor/oppo/OP4A89/proprietary/lib/libFileMux.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libFileMux.so \
vendor/oppo/OP4A89/proprietary/lib/libOmxMux.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libOmxMux.so \
vendor/oppo/OP4A89/proprietary/lib/libantradio.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libantradio.so \
vendor/oppo/OP4A89/proprietary/lib/libchromaflash.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libchromaflash.so \
vendor/oppo/OP4A89/proprietary/lib/libfm-hci.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libfm-hci.so \
vendor/oppo/OP4A89/proprietary/lib/libmmosal.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libmmosal.so \
vendor/oppo/OP4A89/proprietary/lib/libmmparser_lite.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libmmparser_lite.so \
vendor/oppo/OP4A89/proprietary/lib/libmmrtpdecoder.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libmmrtpdecoder.so \
vendor/oppo/OP4A89/proprietary/lib/libmmrtpencoder.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libmmrtpencoder.so \
vendor/oppo/OP4A89/proprietary/lib/libqti-perfd-client_system.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libqti-perfd-client_system.so \
vendor/oppo/OP4A89/proprietary/lib/libqti-util_system.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libqti-util_system.so \
vendor/oppo/OP4A89/proprietary/lib/libqti_performance.so:$(TARGET_COPY_OUT_SYSTEM)/lib/libqti_performance.so \
vendor/oppo/OP4A89/proprietary/lib64/fm_helium.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/fm_helium.so \
vendor/oppo/OP4A89/proprietary/lib64/libFileMux.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libFileMux.so \
vendor/oppo/OP4A89/proprietary/lib64/libOmxMux.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libOmxMux.so \
vendor/oppo/OP4A89/proprietary/lib64/libantradio.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libantradio.so \
vendor/oppo/OP4A89/proprietary/lib64/libfm-hci.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libfm-hci.so \
vendor/oppo/OP4A89/proprietary/lib64/liblocationservice_jni.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/liblocationservice_jni.so \
vendor/oppo/OP4A89/proprietary/lib64/libmmosal.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libmmosal.so \
vendor/oppo/OP4A89/proprietary/lib64/libmmparser_lite.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libmmparser_lite.so \
vendor/oppo/OP4A89/proprietary/lib64/libmmrtpdecoder.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libmmrtpdecoder.so \
vendor/oppo/OP4A89/proprietary/lib64/libmmrtpencoder.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libmmrtpencoder.so \
vendor/oppo/OP4A89/proprietary/lib64/libqti-perfd-client_system.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libqti-perfd-client_system.so \
vendor/oppo/OP4A89/proprietary/lib64/libqti-util_system.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libqti-util_system.so \
vendor/oppo/OP4A89/proprietary/lib64/libqti_performance.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libqti_performance.so \
vendor/oppo/OP4A89/proprietary/lib64/libseemore.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libseemore.so \
vendor/oppo/OP4A89/proprietary/lib64/libxt_native.so:$(TARGET_COPY_OUT_SYSTEM)/lib64/libxt_native.so \
vendor/oppo/OP4A89/proprietary/product/bin/dpmd:$(TARGET_COPY_OUT_PRODUCT)/bin/dpmd \
vendor/oppo/OP4A89/proprietary/product/etc/dpm/dpm.conf:$(TARGET_COPY_OUT_PRODUCT)/etc/dpm/dpm.conf \
vendor/oppo/OP4A89/proprietary/product/etc/init/dpmd.rc:$(TARGET_COPY_OUT_PRODUCT)/etc/init/dpmd.rc \
vendor/oppo/OP4A89/proprietary/product/etc/permissions/com.qti.dpmframework.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.qti.dpmframework.xml \
vendor/oppo/OP4A89/proprietary/product/etc/permissions/com.qualcomm.qti.imscmservice-V2.0-java.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.qualcomm.qti.imscmservice-V2.0-java.xml \
vendor/oppo/OP4A89/proprietary/product/etc/permissions/com.qualcomm.qti.imscmservice-V2.1-java.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.qualcomm.qti.imscmservice-V2.1-java.xml \
vendor/oppo/OP4A89/proprietary/product/etc/permissions/com.qualcomm.qti.imscmservice-V2.2-java.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/com.qualcomm.qti.imscmservice-V2.2-java.xml \
vendor/oppo/OP4A89/proprietary/product/etc/permissions/dpmapi.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/dpmapi.xml \
vendor/oppo/OP4A89/proprietary/product/etc/permissions/embms.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/embms.xml \
vendor/oppo/OP4A89/proprietary/product/etc/permissions/qcrilhook.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/qcrilhook.xml \
vendor/oppo/OP4A89/proprietary/product/etc/permissions/qti_telephony_hidl_wrapper.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/qti_telephony_hidl_wrapper.xml \
vendor/oppo/OP4A89/proprietary/product/etc/permissions/qti_telephony_utils.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/qti_telephony_utils.xml \
vendor/oppo/OP4A89/proprietary/product/etc/permissions/telephonyservice.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/telephonyservice.xml \
vendor/oppo/OP4A89/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/oppo/OP4A89/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/oppo/OP4A89/proprietary/product/lib/com.qualcomm.qti.ant@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.qualcomm.qti.ant@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.qualcomm.qti.dpm.api@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.qualcomm.qti.dpm.api@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.qualcomm.qti.imscmservice@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.qualcomm.qti.imscmservice@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.qualcomm.qti.imscmservice@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.qualcomm.qti.imscmservice@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.qualcomm.qti.imscmservice@2.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.qualcomm.qti.imscmservice@2.1.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.qualcomm.qti.imscmservice@2.2.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.qualcomm.qti.imscmservice@2.2.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.qualcomm.qti.uceservice@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.qualcomm.qti.uceservice@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.qualcomm.qti.uceservice@2.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.qualcomm.qti.uceservice@2.1.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.quicinc.cne.api@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.quicinc.cne.api@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.quicinc.cne.api@1.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.quicinc.cne.api@1.1.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.quicinc.cne.constants@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.quicinc.cne.constants@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.quicinc.cne.constants@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.quicinc.cne.constants@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/com.quicinc.cne.constants@2.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib/com.quicinc.cne.constants@2.1.so \
vendor/oppo/OP4A89/proprietary/product/lib/lib-imsvideocodec.so:$(TARGET_COPY_OUT_PRODUCT)/lib/lib-imsvideocodec.so \
vendor/oppo/OP4A89/proprietary/product/lib/lib-imsvt.so:$(TARGET_COPY_OUT_PRODUCT)/lib/lib-imsvt.so \
vendor/oppo/OP4A89/proprietary/product/lib/lib-imsvtextutils.so:$(TARGET_COPY_OUT_PRODUCT)/lib/lib-imsvtextutils.so \
vendor/oppo/OP4A89/proprietary/product/lib/lib-imsvtutils.so:$(TARGET_COPY_OUT_PRODUCT)/lib/lib-imsvtutils.so \
vendor/oppo/OP4A89/proprietary/product/lib/libdiag_system.so:$(TARGET_COPY_OUT_PRODUCT)/lib/libdiag_system.so \
vendor/oppo/OP4A89/proprietary/product/lib/libdpmctmgr.so:$(TARGET_COPY_OUT_PRODUCT)/lib/libdpmctmgr.so \
vendor/oppo/OP4A89/proprietary/product/lib/libdpmfdmgr.so:$(TARGET_COPY_OUT_PRODUCT)/lib/libdpmfdmgr.so \
vendor/oppo/OP4A89/proprietary/product/lib/libdpmframework.so:$(TARGET_COPY_OUT_PRODUCT)/lib/libdpmframework.so \
vendor/oppo/OP4A89/proprietary/product/lib/libdpmtcm.so:$(TARGET_COPY_OUT_PRODUCT)/lib/libdpmtcm.so \
vendor/oppo/OP4A89/proprietary/product/lib/libimscamera_jni.so:$(TARGET_COPY_OUT_PRODUCT)/lib/libimscamera_jni.so \
vendor/oppo/OP4A89/proprietary/product/lib/libimsmedia_jni.so:$(TARGET_COPY_OUT_PRODUCT)/lib/libimsmedia_jni.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.display.color@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.display.color@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.display.color@1.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.display.color@1.1.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.display.color@1.2.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.display.color@1.2.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.display.color@1.3.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.display.color@1.3.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.display.postproc@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.display.postproc@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.data.factory@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.data.factory@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.data.factory@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.data.factory@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.data.cne.internal.api@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.data.cne.internal.api@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.data.cne.internal.constants@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.data.cne.internal.constants@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.data.cne.internal.server@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.data.cne.internal.server@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.data.connection@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.data.connection@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.data.connection@1.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.data.connection@1.1.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.data.dynamicdds@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.data.dynamicdds@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.data.iwlan@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.data.iwlan@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.data.latency@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.data.latency@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.data.qmi@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.data.qmi@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.factory@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.factory@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.factory@1.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.factory@1.1.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.fm@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.fm@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.perf@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.perf@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.scve.objecttracker@1.0-adapter-helper.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.scve.objecttracker@1.0-adapter-helper.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.scve.objecttracker@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.scve.objecttracker@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.scve.panorama@1.0-adapter-helper.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.scve.panorama@1.0-adapter-helper.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.scve.panorama@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.scve.panorama@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.vpp@1.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.vpp@1.1.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.vpp@1.2.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.vpp@1.2.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.hardware.vpp@1.3.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.hardware.vpp@1.3.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.ims.callinfo@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.ims.callinfo@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.ims.rcsconfig@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.ims.rcsconfig@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.imsrtpservice@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.imsrtpservice@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.imsrtpservice@2.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.imsrtpservice@2.1.so \
vendor/oppo/OP4A89/proprietary/product/lib/vendor.qti.latency@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib/vendor.qti.latency@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.qualcomm.qti.ant@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.qualcomm.qti.ant@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.qualcomm.qti.dpm.api@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.qualcomm.qti.dpm.api@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.qualcomm.qti.imscmservice@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.qualcomm.qti.imscmservice@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.qualcomm.qti.imscmservice@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.qualcomm.qti.imscmservice@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.qualcomm.qti.imscmservice@2.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.qualcomm.qti.imscmservice@2.1.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.qualcomm.qti.imscmservice@2.2.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.qualcomm.qti.imscmservice@2.2.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.qualcomm.qti.uceservice@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.qualcomm.qti.uceservice@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.qualcomm.qti.uceservice@2.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.qualcomm.qti.uceservice@2.1.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.quicinc.cne.api@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.quicinc.cne.api@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.quicinc.cne.api@1.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.quicinc.cne.api@1.1.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.quicinc.cne.constants@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.quicinc.cne.constants@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.quicinc.cne.constants@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.quicinc.cne.constants@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/com.quicinc.cne.constants@2.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/com.quicinc.cne.constants@2.1.so \
vendor/oppo/OP4A89/proprietary/product/lib64/lib-imsvideocodec.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/lib-imsvideocodec.so \
vendor/oppo/OP4A89/proprietary/product/lib64/lib-imsvt.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/lib-imsvt.so \
vendor/oppo/OP4A89/proprietary/product/lib64/lib-imsvtextutils.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/lib-imsvtextutils.so \
vendor/oppo/OP4A89/proprietary/product/lib64/lib-imsvtutils.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/lib-imsvtutils.so \
vendor/oppo/OP4A89/proprietary/product/lib64/libdiag_system.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/libdiag_system.so \
vendor/oppo/OP4A89/proprietary/product/lib64/libdpmctmgr.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/libdpmctmgr.so \
vendor/oppo/OP4A89/proprietary/product/lib64/libdpmfdmgr.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/libdpmfdmgr.so \
vendor/oppo/OP4A89/proprietary/product/lib64/libdpmframework.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/libdpmframework.so \
vendor/oppo/OP4A89/proprietary/product/lib64/libdpmtcm.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/libdpmtcm.so \
vendor/oppo/OP4A89/proprietary/product/lib64/libimscamera_jni.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/libimscamera_jni.so \
vendor/oppo/OP4A89/proprietary/product/lib64/libimsmedia_jni.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/libimsmedia_jni.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.display.color@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.display.color@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.display.color@1.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.display.color@1.1.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.display.color@1.2.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.display.color@1.2.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.display.color@1.3.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.display.color@1.3.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.display.postproc@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.display.postproc@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.data.factory@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.data.factory@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.data.factory@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.data.factory@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.data.cne.internal.api@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.data.cne.internal.api@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.data.cne.internal.constants@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.data.cne.internal.constants@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.data.cne.internal.server@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.data.cne.internal.server@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.data.connection@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.data.connection@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.data.connection@1.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.data.connection@1.1.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.data.dynamicdds@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.data.dynamicdds@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.data.iwlan@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.data.iwlan@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.data.latency@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.data.latency@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.data.qmi@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.data.qmi@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.factory@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.factory@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.factory@1.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.factory@1.1.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.fm@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.fm@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.perf@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.perf@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.scve.objecttracker@1.0-adapter-helper.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.scve.objecttracker@1.0-adapter-helper.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.scve.objecttracker@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.scve.objecttracker@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.scve.panorama@1.0-adapter-helper.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.scve.panorama@1.0-adapter-helper.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.scve.panorama@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.scve.panorama@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.soter@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.soter@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.vpp@1.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.vpp@1.1.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.vpp@1.2.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.vpp@1.2.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.hardware.vpp@1.3.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.hardware.vpp@1.3.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.ims.callinfo@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.ims.callinfo@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.ims.rcsconfig@1.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.ims.rcsconfig@1.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.imsrtpservice@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.imsrtpservice@2.0.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.imsrtpservice@2.1.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.imsrtpservice@2.1.so \
vendor/oppo/OP4A89/proprietary/product/lib64/vendor.qti.latency@2.0.so:$(TARGET_COPY_OUT_PRODUCT)/lib64/vendor.qti.latency@2.0.so \
vendor/oppo/OP4A89/proprietary/system_ext/bin/wfdservice:$(TARGET_COPY_OUT_SYSTEM_EXT)/bin/wfdservice \
vendor/oppo/OP4A89/proprietary/system_ext/etc/init/com.qualcomm.qti.sigma_miracast@1.0-service.rc:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/init/com.qualcomm.qti.sigma_miracast@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/system_ext/etc/init/wfdservice.rc:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/init/wfdservice.rc \
vendor/oppo/OP4A89/proprietary/system_ext/etc/wfdconfigsink.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/wfdconfigsink.xml \
vendor/oppo/OP4A89/proprietary/system_ext/lib/com.qualcomm.qti.wifidisplayhal@1.0.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/com.qualcomm.qti.wifidisplayhal@1.0.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/hw/vendor.qti.hardware.sigma_miracast@1.0-impl.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/hw/vendor.qti.hardware.sigma_miracast@1.0-impl.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libmiracastsystem.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmiracastsystem.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libmmosal.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmmosal.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libmmparser_lite.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmmparser_lite.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libmmrtpdecoder.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmmrtpdecoder.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libmmrtpencoder.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libmmrtpencoder.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdaac.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdaac.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdavenhancements.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdavenhancements.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdclient.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdclient.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdcommonutils.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdcommonutils.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdconfigutils.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdconfigutils.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfddisplayconfig.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfddisplayconfig.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdmminterface.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdmminterface.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdmmsink.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdmmsink.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdmmsrc_system.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdmmsrc_system.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdnative.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdnative.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdrtsp.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdrtsp.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdservice.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdservice.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfdsinksm.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfdsinksm.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfduibcinterface.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfduibcinterface.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfduibcsink.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfduibcsink.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfduibcsinkinterface.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfduibcsinkinterface.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfduibcsrc.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfduibcsrc.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/libwfduibcsrcinterface.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/libwfduibcsrcinterface.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/vendor.qti.hardware.sigma_miracast@1.0-halimpl.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/vendor.qti.hardware.sigma_miracast@1.0-halimpl.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/vendor.qti.hardware.sigma_miracast@1.0.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/vendor.qti.hardware.sigma_miracast@1.0.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib/vendor.qti.hardware.wifidisplaysession@1.0.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib/vendor.qti.hardware.wifidisplaysession@1.0.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/hw/vendor.qti.hardware.sigma_miracast@1.0-impl.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/hw/vendor.qti.hardware.sigma_miracast@1.0-impl.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libmiracastsystem.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmiracastsystem.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libmmosal.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmosal.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libmmparser_lite.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmparser_lite.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libmmrtpdecoder.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmrtpdecoder.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libmmrtpencoder.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libmmrtpencoder.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfdclient.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfdclient.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfdcommonutils.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfdcommonutils.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfdconfigutils.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfdconfigutils.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfddisplayconfig.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfddisplayconfig.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfdmminterface.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfdmminterface.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfdmmsink.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfdmmsink.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfdnative.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfdnative.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfdrtsp.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfdrtsp.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfdsinksm.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfdsinksm.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfduibcinterface.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfduibcinterface.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfduibcsink.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfduibcsink.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfduibcsinkinterface.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfduibcsinkinterface.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfduibcsrc.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfduibcsrc.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/libwfduibcsrcinterface.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/libwfduibcsrcinterface.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/vendor.qti.hardware.sigma_miracast@1.0-halimpl.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/vendor.qti.hardware.sigma_miracast@1.0-halimpl.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/vendor.qti.hardware.sigma_miracast@1.0.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/vendor.qti.hardware.sigma_miracast@1.0.so \
vendor/oppo/OP4A89/proprietary/system_ext/lib64/vendor.qti.hardware.wifidisplaysession@1.0.so:$(TARGET_COPY_OUT_SYSTEM_EXT)/lib64/vendor.qti.hardware.wifidisplaysession@1.0.so \
vendor/oppo/OP4A89/proprietary/vendor/app/QDMA-UI/lib/arm64/libvndfwk_detect_jni.qti.so:$(TARGET_COPY_OUT_VENDOR)/app/QDMA-UI/lib/arm64/libvndfwk_detect_jni.qti.so \
vendor/oppo/OP4A89/proprietary/vendor/app/QDMA/lib/arm64/libvndfwk_detect_jni.qti.so:$(TARGET_COPY_OUT_VENDOR)/app/QDMA/lib/arm64/libvndfwk_detect_jni.qti.so \
vendor/oppo/OP4A89/proprietary/vendor/bin/ATFWD-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/ATFWD-daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/KmInstallKeybox:$(TARGET_COPY_OUT_VENDOR)/bin/KmInstallKeybox \
vendor/oppo/OP4A89/proprietary/vendor/bin/OppoKeybox:$(TARGET_COPY_OUT_VENDOR)/bin/OppoKeybox \
vendor/oppo/OP4A89/proprietary/vendor/bin/PktRspTest:$(TARGET_COPY_OUT_VENDOR)/bin/PktRspTest \
vendor/oppo/OP4A89/proprietary/vendor/bin/adpl:$(TARGET_COPY_OUT_VENDOR)/bin/adpl \
vendor/oppo/OP4A89/proprietary/vendor/bin/adsprpcd:$(TARGET_COPY_OUT_VENDOR)/bin/adsprpcd \
vendor/oppo/OP4A89/proprietary/vendor/bin/athdiag:$(TARGET_COPY_OUT_VENDOR)/bin/athdiag \
vendor/oppo/OP4A89/proprietary/vendor/bin/audioflacapp:$(TARGET_COPY_OUT_VENDOR)/bin/audioflacapp \
vendor/oppo/OP4A89/proprietary/vendor/bin/bc:$(TARGET_COPY_OUT_VENDOR)/bin/bc \
vendor/oppo/OP4A89/proprietary/vendor/bin/ccid_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/ccid_daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/cdsprpcd:$(TARGET_COPY_OUT_VENDOR)/bin/cdsprpcd \
vendor/oppo/OP4A89/proprietary/vendor/bin/chre:$(TARGET_COPY_OUT_VENDOR)/bin/chre \
vendor/oppo/OP4A89/proprietary/vendor/bin/cnd:$(TARGET_COPY_OUT_VENDOR)/bin/cnd \
vendor/oppo/OP4A89/proprietary/vendor/bin/cnss-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/cnss-daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/cnss_diag:$(TARGET_COPY_OUT_VENDOR)/bin/cnss_diag \
vendor/oppo/OP4A89/proprietary/vendor/bin/cplay:$(TARGET_COPY_OUT_VENDOR)/bin/cplay \
vendor/oppo/OP4A89/proprietary/vendor/bin/devmem:$(TARGET_COPY_OUT_VENDOR)/bin/devmem \
vendor/oppo/OP4A89/proprietary/vendor/bin/diag_callback_sample:$(TARGET_COPY_OUT_VENDOR)/bin/diag_callback_sample \
vendor/oppo/OP4A89/proprietary/vendor/bin/diag_dci_sample:$(TARGET_COPY_OUT_VENDOR)/bin/diag_dci_sample \
vendor/oppo/OP4A89/proprietary/vendor/bin/diag_klog:$(TARGET_COPY_OUT_VENDOR)/bin/diag_klog \
vendor/oppo/OP4A89/proprietary/vendor/bin/diag_mdlog:$(TARGET_COPY_OUT_VENDOR)/bin/diag_mdlog \
vendor/oppo/OP4A89/proprietary/vendor/bin/diag_socket_log:$(TARGET_COPY_OUT_VENDOR)/bin/diag_socket_log \
vendor/oppo/OP4A89/proprietary/vendor/bin/diag_uart_log:$(TARGET_COPY_OUT_VENDOR)/bin/diag_uart_log \
vendor/oppo/OP4A89/proprietary/vendor/bin/dpmQmiMgr:$(TARGET_COPY_OUT_VENDOR)/bin/dpmQmiMgr \
vendor/oppo/OP4A89/proprietary/vendor/bin/dumpsys:$(TARGET_COPY_OUT_VENDOR)/bin/dumpsys \
vendor/oppo/OP4A89/proprietary/vendor/bin/e_loop:$(TARGET_COPY_OUT_VENDOR)/bin/e_loop \
vendor/oppo/OP4A89/proprietary/vendor/bin/fm_qsoc_patches:$(TARGET_COPY_OUT_VENDOR)/bin/fm_qsoc_patches \
vendor/oppo/OP4A89/proprietary/vendor/bin/fmconfig:$(TARGET_COPY_OUT_VENDOR)/bin/fmconfig \
vendor/oppo/OP4A89/proprietary/vendor/bin/fmfactorytest:$(TARGET_COPY_OUT_VENDOR)/bin/fmfactorytest \
vendor/oppo/OP4A89/proprietary/vendor/bin/fmfactorytestserver:$(TARGET_COPY_OUT_VENDOR)/bin/fmfactorytestserver \
vendor/oppo/OP4A89/proprietary/vendor/bin/fstman:$(TARGET_COPY_OUT_VENDOR)/bin/fstman \
vendor/oppo/OP4A89/proprietary/vendor/bin/fsync:$(TARGET_COPY_OUT_VENDOR)/bin/fsync \
vendor/oppo/OP4A89/proprietary/vendor/bin/ftm_flows_test:$(TARGET_COPY_OUT_VENDOR)/bin/ftm_flows_test \
vendor/oppo/OP4A89/proprietary/vendor/bin/ftmdaemon:$(TARGET_COPY_OUT_VENDOR)/bin/ftmdaemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/ftmtest:$(TARGET_COPY_OUT_VENDOR)/bin/ftmtest \
vendor/oppo/OP4A89/proprietary/vendor/bin/garden_app:$(TARGET_COPY_OUT_VENDOR)/bin/garden_app \
vendor/oppo/OP4A89/proprietary/vendor/bin/getconf:$(TARGET_COPY_OUT_VENDOR)/bin/getconf \
vendor/oppo/OP4A89/proprietary/vendor/bin/hal_proxy_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/hal_proxy_daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/hbtp_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/hbtp_daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/host_manager_11ad:$(TARGET_COPY_OUT_VENDOR)/bin/host_manager_11ad \
vendor/oppo/OP4A89/proprietary/vendor/bin/hvdcp_opti:$(TARGET_COPY_OUT_VENDOR)/bin/hvdcp_opti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/android.hardware.atrace@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.atrace@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/android.hardware.bluetooth@1.0-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.bluetooth@1.0-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/android.hardware.drm@1.2-service.widevine:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.drm@1.2-service.widevine \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/android.hardware.gatekeeper@1.0-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.gatekeeper@1.0-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/android.hardware.gnss@2.0-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.gnss@2.0-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/android.hardware.health@2.1-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.health@2.1-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/android.hardware.keymaster@3.0-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.keymaster@3.0-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/android.hardware.keymaster@4.0-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.keymaster@4.0-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/android.hardware.keymaster@4.0-strongbox-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.keymaster@4.0-strongbox-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/android.hardware.neuralnetworks@1.3-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/android.hardware.neuralnetworks@1.3-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/capabilityconfigstoretest:$(TARGET_COPY_OUT_VENDOR)/bin/hw/capabilityconfigstoretest \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/qcrild:$(TARGET_COPY_OUT_VENDOR)/bin/hw/qcrild \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.display.color@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.display.color@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.dolby.hardware.dms@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.dolby.hardware.dms@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.nxp.hardware.nfc@1.2-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.nxp.hardware.nfc@1.2-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.engnative.engineer@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.engnative.engineer@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.engnative.engsensor@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.engnative.engsensor@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.hardware.biometrics.fingerprint@2.1-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.hardware.biometrics.fingerprint@2.1-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.hardware.biometrics.fingerprintpay@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.hardware.biometrics.fingerprintpay@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.hardware.cryptoeng@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.hardware.cryptoeng@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.hardware.eid@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.hardware.eid@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.hardware.hypnus@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.hardware.hypnus@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.hardware.ktv@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.hardware.ktv@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.hardware.mmdisplayfeature@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.hardware.mmdisplayfeature@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.hardware.nfc@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.hardware.nfc@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.hardware.oiface@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.hardware.oiface@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.oppo.wifi.sniffer@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.oppo.wifi.sniffer@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.esepowermanager@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.esepowermanager@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.alarm@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.alarm@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.bluetooth_dun@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.bluetooth_dun@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.capabilityconfigstore@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.capabilityconfigstore@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.cryptfshw@1.0-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.cryptfshw@1.0-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.cvp@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.cvp@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.factory@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.factory@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.perf@2.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.perf@2.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.qdutils_disp@1.0-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.qdutils_disp@1.0-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.qseecom@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.qseecom@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.qteeconnector@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.qteeconnector@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.scve.objecttracker@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.scve.objecttracker@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.scve.panorama@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.scve.panorama@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.seccam@1.0-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.seccam@1.0-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.sensorscalibrate@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.sensorscalibrate@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.soter@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.soter@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.hardware.tui_comm@1.0-service-qti:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.hardware.tui_comm@1.0-service-qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.media.c2@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.media.c2@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.power.pasrmanager@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.power.pasrmanager@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor.qti.secure_element@1.0-service:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor.qti.secure_element@1.0-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/hw/vendor_transfer:$(TARGET_COPY_OUT_VENDOR)/bin/hw/vendor_transfer \
vendor/oppo/OP4A89/proprietary/vendor/bin/i2cdetect:$(TARGET_COPY_OUT_VENDOR)/bin/i2cdetect \
vendor/oppo/OP4A89/proprietary/vendor/bin/i2cdump:$(TARGET_COPY_OUT_VENDOR)/bin/i2cdump \
vendor/oppo/OP4A89/proprietary/vendor/bin/i2cget:$(TARGET_COPY_OUT_VENDOR)/bin/i2cget \
vendor/oppo/OP4A89/proprietary/vendor/bin/i2cset:$(TARGET_COPY_OUT_VENDOR)/bin/i2cset \
vendor/oppo/OP4A89/proprietary/vendor/bin/iconv:$(TARGET_COPY_OUT_VENDOR)/bin/iconv \
vendor/oppo/OP4A89/proprietary/vendor/bin/ims_rtp_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/ims_rtp_daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/imsdatadaemon:$(TARGET_COPY_OUT_VENDOR)/bin/imsdatadaemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/imsqmidaemon:$(TARGET_COPY_OUT_VENDOR)/bin/imsqmidaemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/imsrcsd:$(TARGET_COPY_OUT_VENDOR)/bin/imsrcsd \
vendor/oppo/OP4A89/proprietary/vendor/bin/install:$(TARGET_COPY_OUT_VENDOR)/bin/install \
vendor/oppo/OP4A89/proprietary/vendor/bin/ipacm-diag:$(TARGET_COPY_OUT_VENDOR)/bin/ipacm-diag \
vendor/oppo/OP4A89/proprietary/vendor/bin/irsc_util:$(TARGET_COPY_OUT_VENDOR)/bin/irsc_util \
vendor/oppo/OP4A89/proprietary/vendor/bin/iwpriv_vendor:$(TARGET_COPY_OUT_VENDOR)/bin/iwpriv_vendor \
vendor/oppo/OP4A89/proprietary/vendor/bin/ks:$(TARGET_COPY_OUT_VENDOR)/bin/ks \
vendor/oppo/OP4A89/proprietary/vendor/bin/loadalgo:$(TARGET_COPY_OUT_VENDOR)/bin/loadalgo \
vendor/oppo/OP4A89/proprietary/vendor/bin/loc_launcher:$(TARGET_COPY_OUT_VENDOR)/bin/loc_launcher \
vendor/oppo/OP4A89/proprietary/vendor/bin/lowi-server:$(TARGET_COPY_OUT_VENDOR)/bin/lowi-server \
vendor/oppo/OP4A89/proprietary/vendor/bin/mdm_helper:$(TARGET_COPY_OUT_VENDOR)/bin/mdm_helper \
vendor/oppo/OP4A89/proprietary/vendor/bin/mdm_helper_proxy:$(TARGET_COPY_OUT_VENDOR)/bin/mdm_helper_proxy \
vendor/oppo/OP4A89/proprietary/vendor/bin/mlid:$(TARGET_COPY_OUT_VENDOR)/bin/mlid \
vendor/oppo/OP4A89/proprietary/vendor/bin/mm-audio-ftm:$(TARGET_COPY_OUT_VENDOR)/bin/mm-audio-ftm \
vendor/oppo/OP4A89/proprietary/vendor/bin/mm-vidc-omx-test:$(TARGET_COPY_OUT_VENDOR)/bin/mm-vidc-omx-test \
vendor/oppo/OP4A89/proprietary/vendor/bin/mmid:$(TARGET_COPY_OUT_VENDOR)/bin/mmid \
vendor/oppo/OP4A89/proprietary/vendor/bin/msm_irqbalance:$(TARGET_COPY_OUT_VENDOR)/bin/msm_irqbalance \
vendor/oppo/OP4A89/proprietary/vendor/bin/myftm:$(TARGET_COPY_OUT_VENDOR)/bin/myftm \
vendor/oppo/OP4A89/proprietary/vendor/bin/nc:$(TARGET_COPY_OUT_VENDOR)/bin/nc \
vendor/oppo/OP4A89/proprietary/vendor/bin/netcat:$(TARGET_COPY_OUT_VENDOR)/bin/netcat \
vendor/oppo/OP4A89/proprietary/vendor/bin/netmgrd:$(TARGET_COPY_OUT_VENDOR)/bin/netmgrd \
vendor/oppo/OP4A89/proprietary/vendor/bin/nproc:$(TARGET_COPY_OUT_VENDOR)/bin/nproc \
vendor/oppo/OP4A89/proprietary/vendor/bin/npu_launcher:$(TARGET_COPY_OUT_VENDOR)/bin/npu_launcher \
vendor/oppo/OP4A89/proprietary/vendor/bin/nsenter:$(TARGET_COPY_OUT_VENDOR)/bin/nsenter \
vendor/oppo/OP4A89/proprietary/vendor/bin/oemnvbkdaemon:$(TARGET_COPY_OUT_VENDOR)/bin/oemnvbkdaemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/opposysd:$(TARGET_COPY_OUT_VENDOR)/bin/opposysd \
vendor/oppo/OP4A89/proprietary/vendor/bin/pcba_diag:$(TARGET_COPY_OUT_VENDOR)/bin/pcba_diag \
vendor/oppo/OP4A89/proprietary/vendor/bin/pd-mapper:$(TARGET_COPY_OUT_VENDOR)/bin/pd-mapper \
vendor/oppo/OP4A89/proprietary/vendor/bin/phio:$(TARGET_COPY_OUT_VENDOR)/bin/phio \
vendor/oppo/OP4A89/proprietary/vendor/bin/pktlogconf:$(TARGET_COPY_OUT_VENDOR)/bin/pktlogconf \
vendor/oppo/OP4A89/proprietary/vendor/bin/pm-proxy:$(TARGET_COPY_OUT_VENDOR)/bin/pm-proxy \
vendor/oppo/OP4A89/proprietary/vendor/bin/pm-service:$(TARGET_COPY_OUT_VENDOR)/bin/pm-service \
vendor/oppo/OP4A89/proprietary/vendor/bin/pnscr:$(TARGET_COPY_OUT_VENDOR)/bin/pnscr \
vendor/oppo/OP4A89/proprietary/vendor/bin/port-bridge:$(TARGET_COPY_OUT_VENDOR)/bin/port-bridge \
vendor/oppo/OP4A89/proprietary/vendor/bin/power_off_alarm:$(TARGET_COPY_OUT_VENDOR)/bin/power_off_alarm \
vendor/oppo/OP4A89/proprietary/vendor/bin/ppd:$(TARGET_COPY_OUT_VENDOR)/bin/ppd \
vendor/oppo/OP4A89/proprietary/vendor/bin/qdcmss:$(TARGET_COPY_OUT_VENDOR)/bin/qdcmss \
vendor/oppo/OP4A89/proprietary/vendor/bin/qfp-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/qfp-daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/qmi_simple_ril_test:$(TARGET_COPY_OUT_VENDOR)/bin/qmi_simple_ril_test \
vendor/oppo/OP4A89/proprietary/vendor/bin/qrtr-cfg:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-cfg \
vendor/oppo/OP4A89/proprietary/vendor/bin/qrtr-lookup:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-lookup \
vendor/oppo/OP4A89/proprietary/vendor/bin/qrtr-ns:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-ns \
vendor/oppo/OP4A89/proprietary/vendor/bin/qseecom_sample_client:$(TARGET_COPY_OUT_VENDOR)/bin/qseecom_sample_client \
vendor/oppo/OP4A89/proprietary/vendor/bin/qseecomd:$(TARGET_COPY_OUT_VENDOR)/bin/qseecomd \
vendor/oppo/OP4A89/proprietary/vendor/bin/qti:$(TARGET_COPY_OUT_VENDOR)/bin/qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/rmt_storage:$(TARGET_COPY_OUT_VENDOR)/bin/rmt_storage \
vendor/oppo/OP4A89/proprietary/vendor/bin/rpmbengclient_test:$(TARGET_COPY_OUT_VENDOR)/bin/rpmbengclient_test \
vendor/oppo/OP4A89/proprietary/vendor/bin/secure_ui_sample_client:$(TARGET_COPY_OUT_VENDOR)/bin/secure_ui_sample_client \
vendor/oppo/OP4A89/proprietary/vendor/bin/self-init:$(TARGET_COPY_OUT_VENDOR)/bin/self-init \
vendor/oppo/OP4A89/proprietary/vendor/bin/sensors.qti:$(TARGET_COPY_OUT_VENDOR)/bin/sensors.qti \
vendor/oppo/OP4A89/proprietary/vendor/bin/shell_11ad:$(TARGET_COPY_OUT_VENDOR)/bin/shell_11ad \
vendor/oppo/OP4A89/proprietary/vendor/bin/sigma_dut:$(TARGET_COPY_OUT_VENDOR)/bin/sigma_dut \
vendor/oppo/OP4A89/proprietary/vendor/bin/slim_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/slim_daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/spdaemon:$(TARGET_COPY_OUT_VENDOR)/bin/spdaemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/spectraltool:$(TARGET_COPY_OUT_VENDOR)/bin/spectraltool \
vendor/oppo/OP4A89/proprietary/vendor/bin/sscrpcd:$(TARGET_COPY_OUT_VENDOR)/bin/sscrpcd \
vendor/oppo/OP4A89/proprietary/vendor/bin/ssgqmigd:$(TARGET_COPY_OUT_VENDOR)/bin/ssgqmigd \
vendor/oppo/OP4A89/proprietary/vendor/bin/ssgtzd:$(TARGET_COPY_OUT_VENDOR)/bin/ssgtzd \
vendor/oppo/OP4A89/proprietary/vendor/bin/ssr_diag:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_diag \
vendor/oppo/OP4A89/proprietary/vendor/bin/ssr_setup:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_setup \
vendor/oppo/OP4A89/proprietary/vendor/bin/subsystem_ramdump:$(TARGET_COPY_OUT_VENDOR)/bin/subsystem_ramdump \
vendor/oppo/OP4A89/proprietary/vendor/bin/tcpdump_vendor:$(TARGET_COPY_OUT_VENDOR)/bin/tcpdump_vendor \
vendor/oppo/OP4A89/proprietary/vendor/bin/test_diag:$(TARGET_COPY_OUT_VENDOR)/bin/test_diag \
vendor/oppo/OP4A89/proprietary/vendor/bin/tftp_server:$(TARGET_COPY_OUT_VENDOR)/bin/tftp_server \
vendor/oppo/OP4A89/proprietary/vendor/bin/thermal-engine:$(TARGET_COPY_OUT_VENDOR)/bin/thermal-engine \
vendor/oppo/OP4A89/proprietary/vendor/bin/time_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/time_daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/tloc_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/tloc_daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/unlink:$(TARGET_COPY_OUT_VENDOR)/bin/unlink \
vendor/oppo/OP4A89/proprietary/vendor/bin/unshare:$(TARGET_COPY_OUT_VENDOR)/bin/unshare \
vendor/oppo/OP4A89/proprietary/vendor/bin/uuidgen:$(TARGET_COPY_OUT_VENDOR)/bin/uuidgen \
vendor/oppo/OP4A89/proprietary/vendor/bin/vendor.qti.hardware.soter@1.0-provision:$(TARGET_COPY_OUT_VENDOR)/bin/vendor.qti.hardware.soter@1.0-provision \
vendor/oppo/OP4A89/proprietary/vendor/bin/vendor_cmd_tool:$(TARGET_COPY_OUT_VENDOR)/bin/vendor_cmd_tool \
vendor/oppo/OP4A89/proprietary/vendor/bin/vl53l1_daemon_main:$(TARGET_COPY_OUT_VENDOR)/bin/vl53l1_daemon_main \
vendor/oppo/OP4A89/proprietary/vendor/bin/vl53l1_iotest:$(TARGET_COPY_OUT_VENDOR)/bin/vl53l1_iotest \
vendor/oppo/OP4A89/proprietary/vendor/bin/vl53l1_reg:$(TARGET_COPY_OUT_VENDOR)/bin/vl53l1_reg \
vendor/oppo/OP4A89/proprietary/vendor/bin/vppservice:$(TARGET_COPY_OUT_VENDOR)/bin/vppservice \
vendor/oppo/OP4A89/proprietary/vendor/bin/watch:$(TARGET_COPY_OUT_VENDOR)/bin/watch \
vendor/oppo/OP4A89/proprietary/vendor/bin/wdsdaemon:$(TARGET_COPY_OUT_VENDOR)/bin/wdsdaemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/wfdhdcphalservice:$(TARGET_COPY_OUT_VENDOR)/bin/wfdhdcphalservice \
vendor/oppo/OP4A89/proprietary/vendor/bin/wfdhdcphalservice:$(TARGET_COPY_OUT_VENDOR)/bin/wfdhdcphalservice \
vendor/oppo/OP4A89/proprietary/vendor/bin/wfdvndservice:$(TARGET_COPY_OUT_VENDOR)/bin/wfdvndservice \
vendor/oppo/OP4A89/proprietary/vendor/bin/wfdvndservice:$(TARGET_COPY_OUT_VENDOR)/bin/wfdvndservice \
vendor/oppo/OP4A89/proprietary/vendor/bin/wifi_diag:$(TARGET_COPY_OUT_VENDOR)/bin/wifi_diag \
vendor/oppo/OP4A89/proprietary/vendor/bin/wifidisplayhalservice:$(TARGET_COPY_OUT_VENDOR)/bin/wifidisplayhalservice \
vendor/oppo/OP4A89/proprietary/vendor/bin/wififtm:$(TARGET_COPY_OUT_VENDOR)/bin/wififtm \
vendor/oppo/OP4A89/proprietary/vendor/bin/wifilearner:$(TARGET_COPY_OUT_VENDOR)/bin/wifilearner \
vendor/oppo/OP4A89/proprietary/vendor/bin/wifisar:$(TARGET_COPY_OUT_VENDOR)/bin/wifisar \
vendor/oppo/OP4A89/proprietary/vendor/bin/wifistopftmtest:$(TARGET_COPY_OUT_VENDOR)/bin/wifistopftmtest \
vendor/oppo/OP4A89/proprietary/vendor/bin/wigig_wiburn:$(TARGET_COPY_OUT_VENDOR)/bin/wigig_wiburn \
vendor/oppo/OP4A89/proprietary/vendor/bin/wigighalsvc:$(TARGET_COPY_OUT_VENDOR)/bin/wigighalsvc \
vendor/oppo/OP4A89/proprietary/vendor/bin/wigignpt:$(TARGET_COPY_OUT_VENDOR)/bin/wigignpt \
vendor/oppo/OP4A89/proprietary/vendor/bin/xtra-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/xtra-daemon \
vendor/oppo/OP4A89/proprietary/vendor/bin/xtwifi-client:$(TARGET_COPY_OUT_VENDOR)/bin/xtwifi-client \
vendor/oppo/OP4A89/proprietary/vendor/bin/xtwifi-inet-agent:$(TARGET_COPY_OUT_VENDOR)/bin/xtwifi-inet-agent \
vendor/oppo/OP4A89/proprietary/vendor/etc/DxHDCP.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/DxHDCP.cfg \
vendor/oppo/OP4A89/proprietary/vendor/etc/OPPO_OLED_19081_AD_calib.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/OPPO_OLED_19081_AD_calib.cfg \
vendor/oppo/OP4A89/proprietary/vendor/etc/OPPO_OLED_AD_calib.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/OPPO_OLED_AD_calib.cfg \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18115/Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18115/Bluetooth_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18115/Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18115/Codec_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18115/General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18115/General_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18115/Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18115/Global_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18115/Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18115/Handset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18115/Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18115/Hdmi_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18115/Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18115/Headset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18115/Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18115/Speaker_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18501/Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18501/Bluetooth_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18501/Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18501/Codec_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18501/General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18501/General_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18501/Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18501/Global_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18501/Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18501/Handset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18501/Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18501/Hdmi_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18501/Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18501/Headset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18501/Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18501/Speaker_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18503/Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18503/Bluetooth_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18503/Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18503/Codec_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18503/General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18503/General_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18503/Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18503/Global_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18503/Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18503/Handset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18503/Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18503/Hdmi_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18503/Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18503/Headset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/18503/Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/18503/Speaker_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/Bluetooth_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/CMCC/Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/CMCC/Bluetooth_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/CMCC/Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/CMCC/Codec_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/CMCC/General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/CMCC/General_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/CMCC/Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/CMCC/Global_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/CMCC/Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/CMCC/Handset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/CMCC/Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/CMCC/Hdmi_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/CMCC/Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/CMCC/Headset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/CMCC/Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/CMCC/Speaker_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/Codec_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/GD/Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/GD/Bluetooth_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/GD/Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/GD/Codec_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/GD/General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/GD/General_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/GD/Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/GD/Global_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/GD/Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/GD/Handset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/GD/Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/GD/Hdmi_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/GD/Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/GD/Headset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/GD/Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/GD/Speaker_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/General_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/Global_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/Handset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/Hdmi_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/Headset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/19081/Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/19081/Speaker_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/CDP/CDP_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Bluetooth_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/CDP/CDP_Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Codec_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/CDP/CDP_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_General_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/CDP/CDP_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Global_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/CDP/CDP_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Handset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/CDP/CDP_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Hdmi_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/CDP/CDP_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Headset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/CDP/CDP_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_Speaker_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/CDP/CDP_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/CDP/CDP_workspaceFile.qwsp \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/MTP/MTP_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Bluetooth_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/MTP/MTP_Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Codec_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/MTP/MTP_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_General_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/MTP/MTP_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Global_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/MTP/MTP_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Handset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/MTP/MTP_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Hdmi_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/MTP/MTP_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Headset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/MTP/MTP_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Speaker_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/MTP/MTP_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_workspaceFile.qwsp \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/QRD/QRD_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Bluetooth_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/QRD/QRD_Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Codec_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/QRD/QRD_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_General_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/QRD/QRD_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Global_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/QRD/QRD_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Handset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/QRD/QRD_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Hdmi_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/QRD/QRD_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Headset_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/QRD/QRD_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Speaker_cal.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/QRD/QRD_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_workspaceFile.qwsp \
vendor/oppo/OP4A89/proprietary/vendor/etc/acdbdata/adsp_avs_config.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/adsp_avs_config.acdb \
vendor/oppo/OP4A89/proprietary/vendor/etc/asd/class.dlc:$(TARGET_COPY_OUT_VENDOR)/etc/asd/class.dlc \
vendor/oppo/OP4A89/proprietary/vendor/etc/asd/detect.dlc:$(TARGET_COPY_OUT_VENDOR)/etc/asd/detect.dlc \
vendor/oppo/OP4A89/proprietary/vendor/etc/cacert_location.pem:$(TARGET_COPY_OUT_VENDOR)/etc/cacert_location.pem \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/Charming.cng:$(TARGET_COPY_OUT_VENDOR)/etc/camera/Charming.cng \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/M_Attribute_Gender_Age_1.0.model.hardcode:$(TARGET_COPY_OUT_VENDOR)/etc/camera/M_Attribute_Gender_Age_1.0.model.hardcode \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/M_Verify_Faster_Common_4.0.0_wp.model:$(TARGET_COPY_OUT_VENDOR)/etc/camera/M_Verify_Faster_Common_4.0.0_wp.model \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/darksight/darksight_main.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/darksight/darksight_main.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/darksight/darksight_ultrawide.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/darksight/darksight_ultrawide.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/distortionParams.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/distortionParams.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/faceBeautyParam/fb_default:$(TARGET_COPY_OUT_VENDOR)/etc/camera/faceBeautyParam/fb_default \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/faceTpl0.rgb32:$(TARGET_COPY_OUT_VENDOR)/etc/camera/faceTpl0.rgb32 \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/faceTpl1.rgb32:$(TARGET_COPY_OUT_VENDOR)/etc/camera/faceTpl1.rgb32 \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/000.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/000.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/000_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/000_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/001.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/001.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/001_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/001_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/002.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/002.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/002_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/002_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/003.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/003.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/003_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/003_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/010.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/010.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/010_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/010_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/011.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/011.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/011_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/011_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/012.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/012.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/012_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/012_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/013.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/013.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/100.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/100.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/100_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/100_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/101.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/101.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/101_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/101_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/102.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/102.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/102_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/102_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/103.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/103.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/103_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/103_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/110.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/110.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/110_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/110_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/111.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/111.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/111_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/111_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/112.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/112.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/112_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/112_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/113.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/113.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/200.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/200.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/200_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/200_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/201.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/201.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/201_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/201_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/202.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/202.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/202_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/202_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/203.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/203.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/203_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/203_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/210.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/210.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/210_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/210_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/211.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/211.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/211_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/211_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/212.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/212.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/212_pre.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/212_pre.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/213.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/213.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/PreNoFaceBinary.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/PreNoFaceBinary.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/PreNormalBinary.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/PreNormalBinary.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/skin_CCT.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/skin_CCT.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/skin_back.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/skin_back.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/skin_dark.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/skin_dark.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/skin_indian.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/skin_indian.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/skin_normal.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/skin_normal.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/skinmask.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/skinmask.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/fb_model/skinmask.png:$(TARGET_COPY_OUT_VENDOR)/etc/camera/fb_model/skinmask.png \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/gasryuv.model:$(TARGET_COPY_OUT_VENDOR)/etc/camera/gasryuv.model \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/imx319:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx319 \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/imx471:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx471 \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/imx586:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx586 \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/megvii/cache:$(TARGET_COPY_OUT_VENDOR)/etc/camera/megvii/cache \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/megvii/merged_model_post:$(TARGET_COPY_OUT_VENDOR)/etc/camera/megvii/merged_model_post \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/megvii/siq_ocl_cache:$(TARGET_COPY_OUT_VENDOR)/etc/camera/megvii/siq_ocl_cache \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/megvii/superiq_model:$(TARGET_COPY_OUT_VENDOR)/etc/camera/megvii/superiq_model \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/mtStereoParams.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/mtStereoParams.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/mwStereoParams.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/mwStereoParams.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/oppo_camera_algo_switch_config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/oppo_camera_algo_switch_config \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/oppo_camera_config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/oppo_camera_config \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/oppo_camera_zoom_config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/oppo_camera_zoom_config \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/s5k3m5sx:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3m5sx \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/skinSeg.model:$(TARGET_COPY_OUT_VENDOR)/etc/camera/skinSeg.model \
vendor/oppo/OP4A89/proprietary/vendor/etc/camera/vidhance_calibration:$(TARGET_COPY_OUT_VENDOR)/etc/camera/vidhance_calibration \
vendor/oppo/OP4A89/proprietary/vendor/etc/charger_fstab.qti:$(TARGET_COPY_OUT_VENDOR)/etc/charger_fstab.qti \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile1.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile2.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile3.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile4.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile5.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile6.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile1.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile15.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile15.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile16.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile16.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile17.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile17.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile18.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile18.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile19.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile19.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile2.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile20.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile20.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile21.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile21.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile3.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile32.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile32.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile4.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile5.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile6.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile7.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile7.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile1.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile2.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile3.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile4.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile5.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile6.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/configstore/vpp.configstore.xml:$(TARGET_COPY_OUT_VENDOR)/etc/configstore/vpp.configstore.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/configstore/wigig.xml:$(TARGET_COPY_OUT_VENDOR)/etc/configstore/wigig.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/data/dsi_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/data/dsi_config.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/data/netmgr_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/data/netmgr_config.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/ftm_test_config_qrd:$(TARGET_COPY_OUT_VENDOR)/etc/ftm_test_config_qrd \
vendor/oppo/OP4A89/proprietary/vendor/etc/gpfspath_oem_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gpfspath_oem_config.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/hbtp/hbtpcfg_sdm855_801s_4k.dat:$(TARGET_COPY_OUT_VENDOR)/etc/hbtp/hbtpcfg_sdm855_801s_4k.dat \
vendor/oppo/OP4A89/proprietary/vendor/etc/hbtp/loader.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/hbtp/loader.cfg \
vendor/oppo/OP4A89/proprietary/vendor/etc/hbtp/qtc801s.bin:$(TARGET_COPY_OUT_VENDOR)/etc/hbtp/qtc801s.bin \
vendor/oppo/OP4A89/proprietary/vendor/etc/hostapd/hostapd.accept:$(TARGET_COPY_OUT_VENDOR)/etc/hostapd/hostapd.accept \
vendor/oppo/OP4A89/proprietary/vendor/etc/hostapd/hostapd.deny:$(TARGET_COPY_OUT_VENDOR)/etc/hostapd/hostapd.deny \
vendor/oppo/OP4A89/proprietary/vendor/etc/hostapd/hostapd_default.conf:$(TARGET_COPY_OUT_VENDOR)/etc/hostapd/hostapd_default.conf \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/android.hardware.atrace@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.atrace@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/android.hardware.bluetooth@1.0-service-qti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.bluetooth@1.0-service-qti.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/android.hardware.drm@1.1-service.wfdhdcp.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.drm@1.1-service.wfdhdcp.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/android.hardware.drm@1.2-service.widevine.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.drm@1.2-service.widevine.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/android.hardware.gatekeeper@1.0-service-qti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.gatekeeper@1.0-service-qti.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/android.hardware.gnss@2.0-service-qti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.gnss@2.0-service-qti.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/android.hardware.health@2.1-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.health@2.1-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/android.hardware.keymaster@4.0-service-qti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.keymaster@4.0-service-qti.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/android.hardware.neuralnetworks@1.3-service-qti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.neuralnetworks@1.3-service-qti.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/cnd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/cnd.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/dataadpl.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/dataadpl.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/dataqti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/dataqti.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/dpmQmiMgr.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/dpmQmiMgr.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/hw/init.oppo.vendor.motor.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.oppo.vendor.motor.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/hw/init.oppo.vendor.steppermotor.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.oppo.vendor.steppermotor.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/ims_rtp_daemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/ims_rtp_daemon.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/imsdatadaemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/imsdatadaemon.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/imsqmidaemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/imsqmidaemon.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/imsrcsd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/imsrcsd.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/init-qcril-data.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init-qcril-data.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/init.oppo.connectivity.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.oppo.connectivity.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/init.qdmastats.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.qdmastats.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/init.spdaemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.spdaemon.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/init.time_daemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.time_daemon.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/ipa_fws.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/ipa_fws.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/ipacm-diag.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/ipacm-diag.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/ipacm.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/ipacm.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/netmgrd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/netmgrd.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/port-bridge.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/port-bridge.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/qcrild.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/qcrild.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/qdcmss.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/qdcmss.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/qseecomd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/qseecomd.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/self-init.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/self-init.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/tloc_daemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/tloc_daemon.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.display.color@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.display.color@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.dolby.hardware.dms@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.dolby.hardware.dms@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.nxp.hardware.nfc@1.2-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.nxp.hardware.nfc@1.2-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.engnative.engineer@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.engnative.engineer@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.engnative.engsensor@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.engnative.engsensor@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.hardware.biometrics.fingerprint@2.1-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.hardware.biometrics.fingerprint@2.1-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.hardware.biometrics.fingerprintpay@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.hardware.biometrics.fingerprintpay@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.hardware.cryptoeng@1.0-service_FDE.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.hardware.cryptoeng@1.0-service_FDE.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.hardware.eid@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.hardware.eid@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.hardware.hypnus@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.hardware.hypnus@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.hardware.ktv@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.hardware.ktv@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.hardware.mmdisplayfeature@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.hardware.mmdisplayfeature@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.hardware.nfc@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.hardware.nfc@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.hardware.oiface@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.hardware.oiface@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.oppo.wifi.sniffer@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.oppo.wifi.sniffer@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.adsprpc-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.adsprpc-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.esepowermanager@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.esepowermanager@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.alarm@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.alarm@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.bluetooth_dun@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.bluetooth_dun@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.capabilityconfigstore@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.capabilityconfigstore@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.charger_monitor@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.charger_monitor@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.cryptfshw@1.0-service-qti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.cryptfshw@1.0-service-qti.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.cvp@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.cvp@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.factory@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.factory@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.perf@2.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.perf@2.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.qdutils_disp@1.0-service-qti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.qdutils_disp@1.0-service-qti.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.qseecom@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.qseecom@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.qteeconnector@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.qteeconnector@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.scve.objecttracker@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.scve.objecttracker@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.scve.panorama@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.scve.panorama@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.seccam@1.0-service-qti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.seccam@1.0-service-qti.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.sensorscalibrate@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.sensorscalibrate@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.soter@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.soter@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.tui_comm@1.0-service-qti.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.tui_comm@1.0-service-qti.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.wifi.wifilearner@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.wifi.wifilearner@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.hardware.wigig.supptunnel@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.hardware.wigig.supptunnel@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.media.c2@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.media.c2@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.power.pasrmanager@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.power.pasrmanager@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor.qti.secure_element@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.qti.secure_element@1.0-service.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor_engineermode.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor_engineermode.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vendor_transfer.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor_transfer.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/vppservice.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vppservice.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/wfdvndservice.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/wfdvndservice.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/init/wfdvndservice.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/wfdvndservice.rc \
vendor/oppo/OP4A89/proprietary/vendor/etc/libnfc-nci.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nci.conf \
vendor/oppo/OP4A89/proprietary/vendor/etc/libnfc-nxp-pnscr.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nxp-pnscr.conf \
vendor/oppo/OP4A89/proprietary/vendor/etc/media_codecs_dolby_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_dolby_audio.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19040:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19040 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19065:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19065 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19066:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19066 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19101:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19101 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19161:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19161 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19362_JP:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19362_JP \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19501:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19501 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-mtp-SN100.conf_19521:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-mtp-SN100.conf_19521 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_18073:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_18073 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_18593:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_18593 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19011:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19011 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19040:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19040 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19065:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19065 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19066:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19066 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19101:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19101 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19161:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19161 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19305:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19305 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19354:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19354 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19362_JP:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19362_JP \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19501:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19501 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nci.conf_19521:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nci.conf_19521 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nxp.conf_18073:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nxp.conf_18073 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nxp.conf_18593:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nxp.conf_18593 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nxp.conf_19011:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nxp.conf_19011 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nxp.conf_19305:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nxp.conf_19305 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nxp.conf_19354:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nxp.conf_19354 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nxp_RF.conf_18073:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nxp_RF.conf_18073 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nxp_RF.conf_18593:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nxp_RF.conf_18593 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nxp_RF.conf_19011:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nxp_RF.conf_19011 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nxp_RF.conf_19305:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nxp_RF.conf_19305 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc-nxp_RF.conf_19354:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc-nxp_RF.conf_19354 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_18073:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_18073 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19011:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19011 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19040:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19040 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19065:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19065 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19066:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19066 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19101:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19101 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19161:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19161 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19354:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19354 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19501:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19501 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_beijing_config.conf_19521:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_beijing_config.conf_19521 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_changchun_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_changchun_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_changsha_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_changsha_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_changsha_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_changsha_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_changsha_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_changsha_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_changsha_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_changsha_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_chongqing_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_chongqing_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_chongqing_config.conf_19066:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_chongqing_config.conf_19066 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_chongqing_config.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_chongqing_config.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_chongqing_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_chongqing_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_chongqing_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_chongqing_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_chongqing_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_chongqing_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_dalian_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_dalian_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_default_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_default_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_default_config.conf_19040:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_default_config.conf_19040 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_default_config.conf_19065:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_default_config.conf_19065 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_default_config.conf_19066:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_default_config.conf_19066 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_default_config.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_default_config.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_default_config.conf_19101:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_default_config.conf_19101 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_default_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_default_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_default_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_default_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_default_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_default_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_default_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_default_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_18073:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_18073 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19011:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19011 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19040:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19040 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19065:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19065 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19066:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19066 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19101:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19101 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19161:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19161 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19354:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19354 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19501:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19501 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_guangzhou_config.conf_19521:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_guangzhou_config.conf_19521 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_haerbin_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_haerbin_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_hefei_config.conf_19101:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_hefei_config.conf_19101 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_menjincard_config.conf_19065:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_menjincard_config.conf_19065 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_menjincard_config.conf_19066:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_menjincard_config.conf_19066 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_menjincard_config.conf_19101:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_menjincard_config.conf_19101 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_menjincard_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_menjincard_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_nanjing_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_nanjing_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_nanning_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_nanning_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_nanning_config.conf_19065:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_nanning_config.conf_19065 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_nanning_config.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_nanning_config.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_nanning_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_nanning_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_nanning_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_nanning_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_nanning_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_nanning_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_qingdao_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_qingdao_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_qingdao_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_qingdao_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shanghai_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shanghai_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shanghai_config.conf_19065:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shanghai_config.conf_19065 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shanghai_config.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shanghai_config.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shanghai_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shanghai_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shanghai_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shanghai_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_18073:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_18073 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19011:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19011 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19040:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19040 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19065:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19065 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19066:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19066 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19101:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19101 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19161:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19161 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19354:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19354 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19501:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19501 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_shenzhen_config.conf_19521:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_shenzhen_config.conf_19521 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_suzhou_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_suzhou_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_suzhou_config.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_suzhou_config.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_suzhou_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_suzhou_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_suzhou_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_suzhou_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_taizhou_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_taizhou_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_taizhou_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_taizhou_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_xiamen_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_xiamen_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_xiamen_config.conf_19065:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_xiamen_config.conf_19065 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_xiamen_config.conf_19066:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_xiamen_config.conf_19066 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_xiamen_config.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_xiamen_config.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_xiamen_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_xiamen_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_xiamen_config.conf_19125:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_xiamen_config.conf_19125 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_xiamen_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_xiamen_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_xiamen_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_xiamen_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_zhengzhou_config.conf_19031:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_zhengzhou_config.conf_19031 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_zhengzhou_config.conf_19081:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_zhengzhou_config.conf_19081 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_zhengzhou_config.conf_19111:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_zhengzhou_config.conf_19111 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_zhengzhou_config.conf_19165:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_zhengzhou_config.conf_19165 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/libnfc_zhengzhou_config.conf_19331:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/libnfc_zhengzhou_config.conf_19331 \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/nfc_chipset_ref:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/nfc_chipset_ref \
vendor/oppo/OP4A89/proprietary/vendor/etc/nfc/nfc_conf_ref:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/nfc_conf_ref \
vendor/oppo/OP4A89/proprietary/vendor/etc/perf/commonresourceconfigs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/commonresourceconfigs.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/perf/perfboostsconfig.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perfboostsconfig.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/perf/perfconfigstore.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perfconfigstore.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/perf/targetconfig.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/targetconfig.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/perf/targetresourceconfigs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/targetresourceconfigs.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/permissions/android.software.nfc.beam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.nfc.beam.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/permissions/com.android.nfc_extras.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.android.nfc_extras.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/permissions/com.nxp.mifare.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.nxp.mifare.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/permissions/com.nxp.nfc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.nxp.nfc.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/permissions/qti_fingerprint_interface.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/qti_fingerprint_interface.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/permissions/vendor-oppo-engnative-engineer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/vendor-oppo-engnative-engineer.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/permissions/vendor-oppo-engnative-engsensor.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/vendor-oppo-engnative-engsensor.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/permissions/vendor-oppo-hardware.biometrics.fingerprintpay.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/vendor-oppo-hardware.biometrics.fingerprintpay.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/permissions/vendor-oppo-hardware.cryptoeng.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/vendor-oppo-hardware.cryptoeng.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/permissions/vendor-qti-hardware-sensorscalibrate.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/vendor-qti-hardware-sensorscalibrate.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/powerhint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/powerhint.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/qdcm_calib_data_samsung_sofef03f_m_amoled_fhd+_panel_with_DSC.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qdcm_calib_data_samsung_sofef03f_m_amoled_fhd+_panel_with_DSC.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/scve/facereco/gModel.dat:$(TARGET_COPY_OUT_VENDOR)/etc/scve/facereco/gModel.dat \
vendor/oppo/OP4A89/proprietary/vendor/etc/seccomp_policy/wfdhdcphalservice.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/wfdhdcphalservice.policy \
vendor/oppo/OP4A89/proprietary/vendor/etc/seccomp_policy/wfdvndservice.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/wfdvndservice.policy \
vendor/oppo/OP4A89/proprietary/vendor/etc/seccomp_policy/wifidisplayhalservice.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/wifidisplayhalservice.policy \
vendor/oppo/OP4A89/proprietary/vendor/etc/self_init_config/common/self_init_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/self_init_config/common/self_init_config.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/ak991x_polling_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/ak991x_polling_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/default_sensors.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/default_sensors.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/devinfo_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/devinfo_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/lsm6ds3c_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/lsm6ds3c_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/lsm6dsm_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/lsm6dsm_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/mmc5603nj_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/mmc5603nj_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_ak991x_19081.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_ak991x_19081.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_hdk_ak991x_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_hdk_ak991x_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_hdk_lsm6dso_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_hdk_lsm6dso_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_irq.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_irq.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_lsm6ds3c_19081.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_lsm6ds3c_19081.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_lsm6dsm_18115.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_lsm6dsm_18115.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_lsm6dsm_18501.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_lsm6dsm_18501.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_lsm6dsm_19071.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_lsm6dsm_19071.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_mmc5603nj_18115.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_mmc5603nj_18115.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_mmc5603nj_18501.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_mmc5603nj_18501.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_mmc5603nj_19071.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_mmc5603nj_19071.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_mmc5603nj_19081.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_mmc5603nj_19081.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_power_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_power_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_qrd_2_lsm6dso_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_qrd_2_lsm6dso_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_qrd_lsm6dso_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_qrd_lsm6dso_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_qrd_tmd2725_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_qrd_tmd2725_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_stk2x2x_18115.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_stk2x2x_18115.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_stk2x2x_18501.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_stk2x2x_18501.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_stk2x2x_19071.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_stk2x2x_19071.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_stk2x3x_19081.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_stk2x3x_19081.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_stk3331_19081.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_stk3331_19081.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_sx932x_18115.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_sx932x_18115.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_sx932x_18501.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_sx932x_18501.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/msmnile_tmd2725_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/msmnile_tmd2725_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_amd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_amd.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_amd_sw_disabled.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_amd_sw_disabled.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_amd_sw_enabled.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_amd_sw_enabled.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_aont.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_aont.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_basic_gestures.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_basic_gestures.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_bring_to_ear.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_bring_to_ear.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_ccd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_ccd.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_ccd_v2_walk.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_ccd_v2_walk.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_ccd_v3_walk.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_ccd_v3_walk.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_cm.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_cm.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_dae.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_dae.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_device_orient.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_device_orient.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_diag_filter.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_diag_filter.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_distance_bound.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_distance_bound.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_dpc.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_dpc.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_facing.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_facing.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_fmv.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_fmv.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_geomag_rv.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_geomag_rv.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_gyro_cal.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_gyro_cal.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_heart_rate.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_heart_rate.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_mag_cal.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_mag_cal.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_mag_cal_legacy.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_mag_cal_legacy.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_multishake.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_multishake.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_pedometer.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_pedometer.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_rmd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_rmd.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_rotv.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_rotv.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_smd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_smd.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_tilt.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_tilt.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_tilt_sw_disabled.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_tilt_sw_disabled.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_tilt_sw_enabled.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_tilt_sw_enabled.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_tilt_to_wake.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_tilt_to_wake.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sns_wrist_pedo.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sns_wrist_pedo.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/stk2x2x_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/stk2x2x_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/stk2x3x_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/stk2x3x_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/stk3331_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/stk3331_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/config/sx932x_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/config/sx932x_0.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/sensors/sns_reg_config:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/sns_reg_config \
vendor/oppo/OP4A89/proprietary/vendor/etc/sll.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sll.conf \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_bootup.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_bootup.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_ese_disableIso.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_ese_disableIso.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_ese_disableIsoRead.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_ese_disableIsoRead.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_nfcon.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_nfcon.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_chr.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_chr.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_cui.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_cui.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_ese_3.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_ese_3.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_ese_aclog.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_ese_aclog.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_ese_cplc.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_ese_cplc.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_ese_fabkey.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_ese_fabkey.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_ese_free.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_ese_free.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_ese_keyset.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_ese_keyset.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_ese_sn.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_ese_sn.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_ndi.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_ndi.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_pcv.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_pcv.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/sn100u_pnx_sst.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_sst.pnscr \
vendor/oppo/OP4A89/proprietary/vendor/etc/ssg/ta_config.json:$(TARGET_COPY_OUT_VENDOR)/etc/ssg/ta_config.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/ssg/tz_whitelist.json:$(TARGET_COPY_OUT_VENDOR)/etc/ssg/tz_whitelist.json \
vendor/oppo/OP4A89/proprietary/vendor/etc/system_properties.xml:$(TARGET_COPY_OUT_VENDOR)/etc/system_properties.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/thermal-engine.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal-engine.conf \
vendor/oppo/OP4A89/proprietary/vendor/etc/tunings.txt:$(TARGET_COPY_OUT_VENDOR)/etc/tunings.txt \
vendor/oppo/OP4A89/proprietary/vendor/etc/wfdconfig.xml:$(TARGET_COPY_OUT_VENDOR)/etc/wfdconfig.xml \
vendor/oppo/OP4A89/proprietary/vendor/etc/xtra_root_cert.pem:$(TARGET_COPY_OUT_VENDOR)/etc/xtra_root_cert.pem \
vendor/oppo/OP4A89/proprietary/vendor/firmware/CAMERA_ICP.elf:$(TARGET_COPY_OUT_VENDOR)/firmware/CAMERA_ICP.elf \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a225_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a225_pfp.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a225_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a225_pm4.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a225p5_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a225p5_pm4.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a300_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a300_pfp.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a300_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a300_pm4.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a330_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a330_pfp.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a330_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a330_pm4.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a420_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a420_pfp.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a420_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a420_pm4.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a530_gpmu.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a530_gpmu.fw2 \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a530_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530_pfp.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a530_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530_pm4.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a530v1_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v1_pfp.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a530v1_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v1_pm4.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a530v2_seq.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v2_seq.fw2 \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a530v3_gpmu.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v3_gpmu.fw2 \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a530v3_seq.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v3_seq.fw2 \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a540_gpmu.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a540_gpmu.fw2 \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a612_rgmu.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/a612_rgmu.bin \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a630_gmu.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/a630_gmu.bin \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a630_sqe.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a630_sqe.fw \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a640_gmu.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/a640_gmu.bin \
vendor/oppo/OP4A89/proprietary/vendor/firmware/a640_zap.b00:$(TARGET_COPY_OUT_VENDOR)/firmware/a640_zap.b00 \