-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjudyp-vendor.mk
2246 lines (2243 loc) · 287 KB
/
judyp-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
# Copyright (C) 2020 The LineageOS Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This file is generated by device/lge/judyp/setup-makefiles.sh
PRODUCT_COPY_FILES += \
vendor/lge/judyp/proprietary/bin/wfdservice:system/bin/wfdservice \
vendor/lge/judyp/proprietary/etc/cne/SwimConfig.xml:system/etc/cne/SwimConfig.xml \
vendor/lge/judyp/proprietary/etc/cne/andsfCne.xml:system/etc/cne/andsfCne.xml \
vendor/lge/judyp/proprietary/etc/dpm/dpm.conf:system/etc/dpm/dpm.conf \
vendor/lge/judyp/proprietary/etc/firmware/nvm_tlv.bin:system/etc/firmware/nvm_tlv.bin \
vendor/lge/judyp/proprietary/etc/firmware/nvm_tlv_1.3.bin:system/etc/firmware/nvm_tlv_1.3.bin \
vendor/lge/judyp/proprietary/etc/firmware/nvm_tlv_2.1.bin:system/etc/firmware/nvm_tlv_2.1.bin \
vendor/lge/judyp/proprietary/etc/firmware/nvm_tlv_3.0.bin:system/etc/firmware/nvm_tlv_3.0.bin \
vendor/lge/judyp/proprietary/etc/firmware/nvm_tlv_3.2.bin:system/etc/firmware/nvm_tlv_3.2.bin \
vendor/lge/judyp/proprietary/etc/firmware/rampatch_tlv.img:system/etc/firmware/rampatch_tlv.img \
vendor/lge/judyp/proprietary/etc/firmware/rampatch_tlv_1.3.tlv:system/etc/firmware/rampatch_tlv_1.3.tlv \
vendor/lge/judyp/proprietary/etc/firmware/rampatch_tlv_2.1.tlv:system/etc/firmware/rampatch_tlv_2.1.tlv \
vendor/lge/judyp/proprietary/etc/firmware/rampatch_tlv_3.0.tlv:system/etc/firmware/rampatch_tlv_3.0.tlv \
vendor/lge/judyp/proprietary/etc/firmware/rampatch_tlv_3.2.tlv:system/etc/firmware/rampatch_tlv_3.2.tlv \
vendor/lge/judyp/proprietary/etc/init/wfdservice.rc:system/etc/init/wfdservice.rc \
vendor/lge/judyp/proprietary/etc/permissions/audiosphere.xml:system/etc/permissions/audiosphere.xml \
vendor/lge/judyp/proprietary/etc/permissions/cneapiclient.xml:system/etc/permissions/cneapiclient.xml \
vendor/lge/judyp/proprietary/etc/permissions/com.qti.dpmframework.xml:system/etc/permissions/com.qti.dpmframework.xml \
vendor/lge/judyp/proprietary/etc/permissions/com.qti.location.sdk.xml:system/etc/permissions/com.qti.location.sdk.xml \
vendor/lge/judyp/proprietary/etc/permissions/com.qualcomm.location.xml:system/etc/permissions/com.qualcomm.location.xml \
vendor/lge/judyp/proprietary/etc/permissions/com.quicinc.cne.xml:system/etc/permissions/com.quicinc.cne.xml \
vendor/lge/judyp/proprietary/etc/permissions/dpmapi.xml:system/etc/permissions/dpmapi.xml \
vendor/lge/judyp/proprietary/etc/permissions/izat.xt.srv.xml:system/etc/permissions/izat.xt.srv.xml \
vendor/lge/judyp/proprietary/etc/permissions/privapp-permissions-com.qualcomm.location.xml:system/etc/permissions/privapp-permissions-com.qualcomm.location.xml \
vendor/lge/judyp/proprietary/etc/permissions/qcrilhook.xml:system/etc/permissions/qcrilhook.xml \
vendor/lge/judyp/proprietary/etc/permissions/qti_permissions.xml:system/etc/permissions/qti_permissions.xml \
vendor/lge/judyp/proprietary/etc/permissions/telephonyservice.xml:system/etc/permissions/telephonyservice.xml \
vendor/lge/judyp/proprietary/etc/sysconfig/qti_whitelist.xml:system/etc/sysconfig/qti_whitelist.xml \
vendor/lge/judyp/proprietary/etc/wfdconfig.xml:system/etc/wfdconfig.xml \
vendor/lge/judyp/proprietary/etc/wfdconfigsink.xml:system/etc/wfdconfigsink.xml \
vendor/lge/judyp/proprietary/framework/QtiTelephonyServicelibrary.jar:system/framework/QtiTelephonyServicelibrary.jar \
vendor/lge/judyp/proprietary/framework/audiosphere.jar:system/framework/audiosphere.jar \
vendor/lge/judyp/proprietary/framework/cneapiclient.jar:system/framework/cneapiclient.jar \
vendor/lge/judyp/proprietary/framework/com.qti.dpmframework.jar:system/framework/com.qti.dpmframework.jar \
vendor/lge/judyp/proprietary/framework/com.qti.location.sdk.jar:system/framework/com.qti.location.sdk.jar \
vendor/lge/judyp/proprietary/framework/com.quicinc.cne.api-V1.0-java.jar:system/framework/com.quicinc.cne.api-V1.0-java.jar \
vendor/lge/judyp/proprietary/framework/com.quicinc.cne.jar:system/framework/com.quicinc.cne.jar \
vendor/lge/judyp/proprietary/framework/dpmapi.jar:system/framework/dpmapi.jar \
vendor/lge/judyp/proprietary/framework/embmslibrary.jar:system/framework/embmslibrary.jar \
vendor/lge/judyp/proprietary/framework/izat.xt.srv.jar:system/framework/izat.xt.srv.jar \
vendor/lge/judyp/proprietary/framework/qcrilhook.jar:system/framework/qcrilhook.jar \
vendor/lge/judyp/proprietary/framework/qti-telephony-common.jar:system/framework/qti-telephony-common.jar \
vendor/lge/judyp/proprietary/framework/tcmclient.jar:system/framework/tcmclient.jar \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/fm_helium.so:system/lib/fm_helium.so \
vendor/lge/judyp/proprietary/lib/lib-imsvideocodec.so:system/lib/lib-imsvideocodec.so \
vendor/lge/judyp/proprietary/lib/lib-imsvt.so:system/lib/lib-imsvt.so \
vendor/lge/judyp/proprietary/lib/lib-imsvtextutils.so:system/lib/lib-imsvtextutils.so \
vendor/lge/judyp/proprietary/lib/lib-imsvtutils.so:system/lib/lib-imsvtutils.so \
vendor/lge/judyp/proprietary/lib/libFileMux.so:system/lib/libFileMux.so \
vendor/lge/judyp/proprietary/lib/libOmxMux.so:system/lib/libOmxMux.so \
vendor/lge/judyp/proprietary/lib/libaptX_encoder.so:system/lib/libaptX_encoder.so \
vendor/lge/judyp/proprietary/lib/libchromaflash.so:system/lib/libchromaflash.so \
vendor/lge/judyp/proprietary/lib/libdiag_system.so:system/lib/libdiag_system.so \
vendor/lge/judyp/proprietary/lib/libdpmctmgr.so:system/lib/libdpmctmgr.so \
vendor/lge/judyp/proprietary/lib/libdpmfdmgr.so:system/lib/libdpmfdmgr.so \
vendor/lge/judyp/proprietary/lib/libdpmframework.so:system/lib/libdpmframework.so \
vendor/lge/judyp/proprietary/lib/libdpmnsrm.so:system/lib/libdpmnsrm.so \
vendor/lge/judyp/proprietary/lib/libdpmtcm.so:system/lib/libdpmtcm.so \
vendor/lge/judyp/proprietary/lib/libfm-hci.so:system/lib/libfm-hci.so \
vendor/lge/judyp/proprietary/lib/libimscamera_jni.so:system/lib/libimscamera_jni.so \
vendor/lge/judyp/proprietary/lib/libimsmedia_jni.so:system/lib/libimsmedia_jni.so \
vendor/lge/judyp/proprietary/lib/libmmosal.so:system/lib/libmmosal.so \
vendor/lge/judyp/proprietary/lib/libmmparser_lite.so:system/lib/libmmparser_lite.so \
vendor/lge/judyp/proprietary/lib/libmmrtpdecoder.so:system/lib/libmmrtpdecoder.so \
vendor/lge/judyp/proprietary/lib/libmmrtpencoder.so:system/lib/libmmrtpencoder.so \
vendor/lge/judyp/proprietary/lib/libqti-perfd-client_system.so:system/lib/libqti-perfd-client_system.so \
vendor/lge/judyp/proprietary/lib/libqti-util_system.so:system/lib/libqti-util_system.so \
vendor/lge/judyp/proprietary/lib/libqti_performance.so:system/lib/libqti_performance.so \
vendor/lge/judyp/proprietary/lib/librcc.so:system/lib/librcc.so \
vendor/lge/judyp/proprietary/lib/libscveBlobDescriptor.so:system/lib/libscveBlobDescriptor.so \
vendor/lge/judyp/proprietary/lib/libscveBlobDescriptor_stub.so:system/lib/libscveBlobDescriptor_stub.so \
vendor/lge/judyp/proprietary/lib/libscveCommon.so:system/lib/libscveCommon.so \
vendor/lge/judyp/proprietary/lib/libscveCommon_stub.so:system/lib/libscveCommon_stub.so \
vendor/lge/judyp/proprietary/lib/libscveFaceLandmarks.so:system/lib/libscveFaceLandmarks.so \
vendor/lge/judyp/proprietary/lib/libscveFaceRecognition.so:system/lib/libscveFaceRecognition.so \
vendor/lge/judyp/proprietary/lib/libscveImageCorrection.so:system/lib/libscveImageCorrection.so \
vendor/lge/judyp/proprietary/lib/libscveObjectSegmentation.so:system/lib/libscveObjectSegmentation.so \
vendor/lge/judyp/proprietary/lib/libscveObjectTracker.so:system/lib/libscveObjectTracker.so \
vendor/lge/judyp/proprietary/lib/libscveObjectTracker_stub.so:system/lib/libscveObjectTracker_stub.so \
vendor/lge/judyp/proprietary/lib/libscvePanorama.so:system/lib/libscvePanorama.so \
vendor/lge/judyp/proprietary/lib/libscvePanorama_lite.so:system/lib/libscvePanorama_lite.so \
vendor/lge/judyp/proprietary/lib/libscveScan3D.so:system/lib/libscveScan3D.so \
vendor/lge/judyp/proprietary/lib/libwfd_remoteif.so:system/lib/libwfd_remoteif.so \
vendor/lge/judyp/proprietary/lib/libwfdavenhancements.so:system/lib/libwfdavenhancements.so \
vendor/lge/judyp/proprietary/lib/libwfdcodecv4l2.so:system/lib/libwfdcodecv4l2.so \
vendor/lge/judyp/proprietary/lib/libwfdcommonutils.so:system/lib/libwfdcommonutils.so \
vendor/lge/judyp/proprietary/lib/libwfdconfigutils.so:system/lib/libwfdconfigutils.so \
vendor/lge/judyp/proprietary/lib/libwfdjni_common.so:system/lib/libwfdjni_common.so \
vendor/lge/judyp/proprietary/lib/libwfdjni_remotedisplay.so:system/lib/libwfdjni_remotedisplay.so \
vendor/lge/judyp/proprietary/lib/libwfdmminterface.so:system/lib/libwfdmminterface.so \
vendor/lge/judyp/proprietary/lib/libwfdmmsink.so:system/lib/libwfdmmsink.so \
vendor/lge/judyp/proprietary/lib/libwfdmmsrc.so:system/lib/libwfdmmsrc.so \
vendor/lge/judyp/proprietary/lib/libwfdnative.so:system/lib/libwfdnative.so \
vendor/lge/judyp/proprietary/lib/libwfdrtsp.so:system/lib/libwfdrtsp.so \
vendor/lge/judyp/proprietary/lib/libwfdservice.so:system/lib/libwfdservice.so \
vendor/lge/judyp/proprietary/lib/libwfdsm.so:system/lib/libwfdsm.so \
vendor/lge/judyp/proprietary/lib/libwfduibcinterface.so:system/lib/libwfduibcinterface.so \
vendor/lge/judyp/proprietary/lib/libwfduibcsink.so:system/lib/libwfduibcsink.so \
vendor/lge/judyp/proprietary/lib/libwfduibcsinkinterface.so:system/lib/libwfduibcsinkinterface.so \
vendor/lge/judyp/proprietary/lib/libwfduibcsrc.so:system/lib/libwfduibcsrc.so \
vendor/lge/judyp/proprietary/lib/libwfduibcsrcinterface.so:system/lib/libwfduibcsrcinterface.so \
vendor/lge/judyp/proprietary/lib/rfsa/adsp/libscveBlobDescriptor_skel.so:system/lib/rfsa/adsp/libscveBlobDescriptor_skel.so \
vendor/lge/judyp/proprietary/lib/rfsa/adsp/libscveT2T_skel.so:system/lib/rfsa/adsp/libscveT2T_skel.so \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/fm_helium.so:system/lib64/fm_helium.so \
vendor/lge/judyp/proprietary/lib64/lib-imsvideocodec.so:system/lib64/lib-imsvideocodec.so \
vendor/lge/judyp/proprietary/lib64/lib-imsvt.so:system/lib64/lib-imsvt.so \
vendor/lge/judyp/proprietary/lib64/lib-imsvtextutils.so:system/lib64/lib-imsvtextutils.so \
vendor/lge/judyp/proprietary/lib64/lib-imsvtutils.so:system/lib64/lib-imsvtutils.so \
vendor/lge/judyp/proprietary/lib64/libFileMux.so:system/lib64/libFileMux.so \
vendor/lge/judyp/proprietary/lib64/libOmxMux.so:system/lib64/libOmxMux.so \
vendor/lge/judyp/proprietary/lib64/libaptXHD_encoder.so:system/lib64/libaptXHD_encoder.so \
vendor/lge/judyp/proprietary/lib64/libaptX_encoder.so:system/lib64/libaptX_encoder.so \
vendor/lge/judyp/proprietary/lib64/libdiag_system.so:system/lib64/libdiag_system.so \
vendor/lge/judyp/proprietary/lib64/libdpmctmgr.so:system/lib64/libdpmctmgr.so \
vendor/lge/judyp/proprietary/lib64/libdpmfdmgr.so:system/lib64/libdpmfdmgr.so \
vendor/lge/judyp/proprietary/lib64/libdpmframework.so:system/lib64/libdpmframework.so \
vendor/lge/judyp/proprietary/lib64/libdpmnsrm.so:system/lib64/libdpmnsrm.so \
vendor/lge/judyp/proprietary/lib64/libdpmtcm.so:system/lib64/libdpmtcm.so \
vendor/lge/judyp/proprietary/lib64/libfm-hci.so:system/lib64/libfm-hci.so \
vendor/lge/judyp/proprietary/lib64/libimscamera_jni.so:system/lib64/libimscamera_jni.so \
vendor/lge/judyp/proprietary/lib64/libimsmedia_jni.so:system/lib64/libimsmedia_jni.so \
vendor/lge/judyp/proprietary/lib64/liblocationservice_jni.so:system/lib64/liblocationservice_jni.so \
vendor/lge/judyp/proprietary/lib64/libmmosal.so:system/lib64/libmmosal.so \
vendor/lge/judyp/proprietary/lib64/libmmparser_lite.so:system/lib64/libmmparser_lite.so \
vendor/lge/judyp/proprietary/lib64/libmmrtpdecoder.so:system/lib64/libmmrtpdecoder.so \
vendor/lge/judyp/proprietary/lib64/libmmrtpencoder.so:system/lib64/libmmrtpencoder.so \
vendor/lge/judyp/proprietary/lib64/libqti-perfd-client_system.so:system/lib64/libqti-perfd-client_system.so \
vendor/lge/judyp/proprietary/lib64/libqti-util_system.so:system/lib64/libqti-util_system.so \
vendor/lge/judyp/proprietary/lib64/libqti_performance.so:system/lib64/libqti_performance.so \
vendor/lge/judyp/proprietary/lib64/librcc.so:system/lib64/librcc.so \
vendor/lge/judyp/proprietary/lib64/libscveBlobDescriptor.so:system/lib64/libscveBlobDescriptor.so \
vendor/lge/judyp/proprietary/lib64/libscveBlobDescriptor_stub.so:system/lib64/libscveBlobDescriptor_stub.so \
vendor/lge/judyp/proprietary/lib64/libscveCommon.so:system/lib64/libscveCommon.so \
vendor/lge/judyp/proprietary/lib64/libscveCommon_stub.so:system/lib64/libscveCommon_stub.so \
vendor/lge/judyp/proprietary/lib64/libscveFaceLandmarks.so:system/lib64/libscveFaceLandmarks.so \
vendor/lge/judyp/proprietary/lib64/libscveFaceRecognition.so:system/lib64/libscveFaceRecognition.so \
vendor/lge/judyp/proprietary/lib64/libscveImageCorrection.so:system/lib64/libscveImageCorrection.so \
vendor/lge/judyp/proprietary/lib64/libscveObjectSegmentation.so:system/lib64/libscveObjectSegmentation.so \
vendor/lge/judyp/proprietary/lib64/libscveObjectTracker.so:system/lib64/libscveObjectTracker.so \
vendor/lge/judyp/proprietary/lib64/libscveObjectTracker_stub.so:system/lib64/libscveObjectTracker_stub.so \
vendor/lge/judyp/proprietary/lib64/libscvePanorama.so:system/lib64/libscvePanorama.so \
vendor/lge/judyp/proprietary/lib64/libscvePanorama_lite.so:system/lib64/libscvePanorama_lite.so \
vendor/lge/judyp/proprietary/lib64/libscveScan3D.so:system/lib64/libscveScan3D.so \
vendor/lge/judyp/proprietary/lib64/libseemore.so:system/lib64/libseemore.so \
vendor/lge/judyp/proprietary/lib64/libwfd_remoteif.so:system/lib64/libwfd_remoteif.so \
vendor/lge/judyp/proprietary/lib64/libwfdavenhancements.so:system/lib64/libwfdavenhancements.so \
vendor/lge/judyp/proprietary/lib64/libwfdcodecv4l2.so:system/lib64/libwfdcodecv4l2.so \
vendor/lge/judyp/proprietary/lib64/libwfdcommonutils.so:system/lib64/libwfdcommonutils.so \
vendor/lge/judyp/proprietary/lib64/libwfdconfigutils.so:system/lib64/libwfdconfigutils.so \
vendor/lge/judyp/proprietary/lib64/libwfdjni_common.so:system/lib64/libwfdjni_common.so \
vendor/lge/judyp/proprietary/lib64/libwfdjni_remotedisplay.so:system/lib64/libwfdjni_remotedisplay.so \
vendor/lge/judyp/proprietary/lib64/libwfdmminterface.so:system/lib64/libwfdmminterface.so \
vendor/lge/judyp/proprietary/lib64/libwfdmmsink.so:system/lib64/libwfdmmsink.so \
vendor/lge/judyp/proprietary/lib64/libwfdmmsrc.so:system/lib64/libwfdmmsrc.so \
vendor/lge/judyp/proprietary/lib64/libwfdnative.so:system/lib64/libwfdnative.so \
vendor/lge/judyp/proprietary/lib64/libwfdrtsp.so:system/lib64/libwfdrtsp.so \
vendor/lge/judyp/proprietary/lib64/libwfdservice.so:system/lib64/libwfdservice.so \
vendor/lge/judyp/proprietary/lib64/libwfdsm.so:system/lib64/libwfdsm.so \
vendor/lge/judyp/proprietary/lib64/libwfduibcinterface.so:system/lib64/libwfduibcinterface.so \
vendor/lge/judyp/proprietary/lib64/libwfduibcsink.so:system/lib64/libwfduibcsink.so \
vendor/lge/judyp/proprietary/lib64/libwfduibcsinkinterface.so:system/lib64/libwfduibcsinkinterface.so \
vendor/lge/judyp/proprietary/lib64/libwfduibcsrc.so:system/lib64/libwfduibcsrc.so \
vendor/lge/judyp/proprietary/lib64/libwfduibcsrcinterface.so:system/lib64/libwfduibcsrcinterface.so \
vendor/lge/judyp/proprietary/lib64/libxt_native.so:system/lib64/libxt_native.so \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/ATFWD-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/ATFWD-daemon \
vendor/lge/judyp/proprietary/vendor/bin/DR_AP_Service:$(TARGET_COPY_OUT_VENDOR)/bin/DR_AP_Service \
vendor/lge/judyp/proprietary/vendor/bin/KmInstallKeybox:$(TARGET_COPY_OUT_VENDOR)/bin/KmInstallKeybox \
vendor/lge/judyp/proprietary/vendor/bin/KmVerifyKeybox:$(TARGET_COPY_OUT_VENDOR)/bin/KmVerifyKeybox \
vendor/lge/judyp/proprietary/vendor/bin/PktRspTest:$(TARGET_COPY_OUT_VENDOR)/bin/PktRspTest \
vendor/lge/judyp/proprietary/vendor/bin/SoterProvisioningTool:$(TARGET_COPY_OUT_VENDOR)/bin/SoterProvisioningTool \
vendor/lge/judyp/proprietary/vendor/bin/WifiLogger_app:$(TARGET_COPY_OUT_VENDOR)/bin/WifiLogger_app \
vendor/lge/judyp/proprietary/vendor/bin/adsprpcd:$(TARGET_COPY_OUT_VENDOR)/bin/adsprpcd \
vendor/lge/judyp/proprietary/vendor/bin/atd:$(TARGET_COPY_OUT_VENDOR)/bin/atd \
vendor/lge/judyp/proprietary/vendor/bin/athdiag:$(TARGET_COPY_OUT_VENDOR)/bin/athdiag \
vendor/lge/judyp/proprietary/vendor/bin/audioflacapp:$(TARGET_COPY_OUT_VENDOR)/bin/audioflacapp \
vendor/lge/judyp/proprietary/vendor/bin/bdaddr_loader:$(TARGET_COPY_OUT_VENDOR)/bin/bdaddr_loader \
vendor/lge/judyp/proprietary/vendor/bin/btnvtool:$(TARGET_COPY_OUT_VENDOR)/bin/btnvtool \
vendor/lge/judyp/proprietary/vendor/bin/cdsprpcd:$(TARGET_COPY_OUT_VENDOR)/bin/cdsprpcd \
vendor/lge/judyp/proprietary/vendor/bin/chargerlogo:$(TARGET_COPY_OUT_VENDOR)/bin/chargerlogo \
vendor/lge/judyp/proprietary/vendor/bin/chre:$(TARGET_COPY_OUT_VENDOR)/bin/chre \
vendor/lge/judyp/proprietary/vendor/bin/cnd:$(TARGET_COPY_OUT_VENDOR)/bin/cnd \
vendor/lge/judyp/proprietary/vendor/bin/cnss-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/cnss-daemon \
vendor/lge/judyp/proprietary/vendor/bin/cnss_diag:$(TARGET_COPY_OUT_VENDOR)/bin/cnss_diag \
vendor/lge/judyp/proprietary/vendor/bin/cpfirmware:$(TARGET_COPY_OUT_VENDOR)/bin/cpfirmware \
vendor/lge/judyp/proprietary/vendor/bin/dhcpcd/dhcpcd-hooks/20-dns.conf:$(TARGET_COPY_OUT_VENDOR)/bin/dhcpcd/dhcpcd-hooks/20-dns.conf \
vendor/lge/judyp/proprietary/vendor/bin/dhcpcd/dhcpcd-hooks/95-configured:$(TARGET_COPY_OUT_VENDOR)/bin/dhcpcd/dhcpcd-hooks/95-configured \
vendor/lge/judyp/proprietary/vendor/bin/dhcpcd/dhcpcd-run-hooks:$(TARGET_COPY_OUT_VENDOR)/bin/dhcpcd/dhcpcd-run-hooks \
vendor/lge/judyp/proprietary/vendor/bin/dhcpcd/dhcpcd.conf:$(TARGET_COPY_OUT_VENDOR)/bin/dhcpcd/dhcpcd.conf \
vendor/lge/judyp/proprietary/vendor/bin/diag_callback_sample:$(TARGET_COPY_OUT_VENDOR)/bin/diag_callback_sample \
vendor/lge/judyp/proprietary/vendor/bin/diag_dci_sample:$(TARGET_COPY_OUT_VENDOR)/bin/diag_dci_sample \
vendor/lge/judyp/proprietary/vendor/bin/diag_klog:$(TARGET_COPY_OUT_VENDOR)/bin/diag_klog \
vendor/lge/judyp/proprietary/vendor/bin/diag_mdlog:$(TARGET_COPY_OUT_VENDOR)/bin/diag_mdlog \
vendor/lge/judyp/proprietary/vendor/bin/diag_socket_log:$(TARGET_COPY_OUT_VENDOR)/bin/diag_socket_log \
vendor/lge/judyp/proprietary/vendor/bin/diag_uart_log:$(TARGET_COPY_OUT_VENDOR)/bin/diag_uart_log \
vendor/lge/judyp/proprietary/vendor/bin/diagd:$(TARGET_COPY_OUT_VENDOR)/bin/diagd \
vendor/lge/judyp/proprietary/vendor/bin/dpmQmiMgr:$(TARGET_COPY_OUT_VENDOR)/bin/dpmQmiMgr \
vendor/lge/judyp/proprietary/vendor/bin/dumpsys:$(TARGET_COPY_OUT_VENDOR)/bin/dumpsys \
vendor/lge/judyp/proprietary/vendor/bin/e_loop:$(TARGET_COPY_OUT_VENDOR)/bin/e_loop \
vendor/lge/judyp/proprietary/vendor/bin/frstd:$(TARGET_COPY_OUT_VENDOR)/bin/frstd \
vendor/lge/judyp/proprietary/vendor/bin/fstman:$(TARGET_COPY_OUT_VENDOR)/bin/fstman \
vendor/lge/judyp/proprietary/vendor/bin/ftm_backup:$(TARGET_COPY_OUT_VENDOR)/bin/ftm_backup \
vendor/lge/judyp/proprietary/vendor/bin/ftmdaemon:$(TARGET_COPY_OUT_VENDOR)/bin/ftmdaemon \
vendor/lge/judyp/proprietary/vendor/bin/gamed:$(TARGET_COPY_OUT_VENDOR)/bin/gamed \
vendor/lge/judyp/proprietary/vendor/bin/garden_app:$(TARGET_COPY_OUT_VENDOR)/bin/garden_app \
vendor/lge/judyp/proprietary/vendor/bin/gbmd:$(TARGET_COPY_OUT_VENDOR)/bin/gbmd \
vendor/lge/judyp/proprietary/vendor/bin/grep_vendor:$(TARGET_COPY_OUT_VENDOR)/bin/grep_vendor \
vendor/lge/judyp/proprietary/vendor/bin/hal_proxy_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/hal_proxy_daemon \
vendor/lge/judyp/proprietary/vendor/bin/hbtp_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/hbtp_daemon \
vendor/lge/judyp/proprietary/vendor/bin/hci_qcomm_init:$(TARGET_COPY_OUT_VENDOR)/bin/hci_qcomm_init \
vendor/lge/judyp/proprietary/vendor/bin/hdcp1prov:$(TARGET_COPY_OUT_VENDOR)/bin/hdcp1prov \
vendor/lge/judyp/proprietary/vendor/bin/hdcp2p2prov:$(TARGET_COPY_OUT_VENDOR)/bin/hdcp2p2prov \
vendor/lge/judyp/proprietary/vendor/bin/hvdcp_opti:$(TARGET_COPY_OUT_VENDOR)/bin/hvdcp_opti \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/rild:$(TARGET_COPY_OUT_VENDOR)/bin/hw/rild \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/lge/judyp/proprietary/vendor/bin/hw/wlan_ril:$(TARGET_COPY_OUT_VENDOR)/bin/hw/wlan_ril \
vendor/lge/judyp/proprietary/vendor/bin/icm:$(TARGET_COPY_OUT_VENDOR)/bin/icm \
vendor/lge/judyp/proprietary/vendor/bin/immvibed:$(TARGET_COPY_OUT_VENDOR)/bin/immvibed \
vendor/lge/judyp/proprietary/vendor/bin/ims_rtp_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/ims_rtp_daemon \
vendor/lge/judyp/proprietary/vendor/bin/imsdatadaemon:$(TARGET_COPY_OUT_VENDOR)/bin/imsdatadaemon \
vendor/lge/judyp/proprietary/vendor/bin/imsqmidaemon:$(TARGET_COPY_OUT_VENDOR)/bin/imsqmidaemon \
vendor/lge/judyp/proprietary/vendor/bin/ipacm-diag:$(TARGET_COPY_OUT_VENDOR)/bin/ipacm-diag \
vendor/lge/judyp/proprietary/vendor/bin/ipd:$(TARGET_COPY_OUT_VENDOR)/bin/ipd \
vendor/lge/judyp/proprietary/vendor/bin/irsc_util:$(TARGET_COPY_OUT_VENDOR)/bin/irsc_util \
vendor/lge/judyp/proprietary/vendor/bin/iw:$(TARGET_COPY_OUT_VENDOR)/bin/iw \
vendor/lge/judyp/proprietary/vendor/bin/iwlist:$(TARGET_COPY_OUT_VENDOR)/bin/iwlist \
vendor/lge/judyp/proprietary/vendor/bin/latd:$(TARGET_COPY_OUT_VENDOR)/bin/latd \
vendor/lge/judyp/proprietary/vendor/bin/loc_launcher:$(TARGET_COPY_OUT_VENDOR)/bin/loc_launcher \
vendor/lge/judyp/proprietary/vendor/bin/lowi-server:$(TARGET_COPY_OUT_VENDOR)/bin/lowi-server \
vendor/lge/judyp/proprietary/vendor/bin/midd:$(TARGET_COPY_OUT_VENDOR)/bin/midd \
vendor/lge/judyp/proprietary/vendor/bin/mlid:$(TARGET_COPY_OUT_VENDOR)/bin/mlid \
vendor/lge/judyp/proprietary/vendor/bin/mm-audio-ftm:$(TARGET_COPY_OUT_VENDOR)/bin/mm-audio-ftm \
vendor/lge/judyp/proprietary/vendor/bin/mm-pp-dpps:$(TARGET_COPY_OUT_VENDOR)/bin/mm-pp-dpps \
vendor/lge/judyp/proprietary/vendor/bin/mmi:$(TARGET_COPY_OUT_VENDOR)/bin/mmi \
vendor/lge/judyp/proprietary/vendor/bin/mmi_agent32:$(TARGET_COPY_OUT_VENDOR)/bin/mmi_agent32 \
vendor/lge/judyp/proprietary/vendor/bin/mmi_agent64:$(TARGET_COPY_OUT_VENDOR)/bin/mmi_agent64 \
vendor/lge/judyp/proprietary/vendor/bin/mmi_debug:$(TARGET_COPY_OUT_VENDOR)/bin/mmi_debug \
vendor/lge/judyp/proprietary/vendor/bin/mmi_diag:$(TARGET_COPY_OUT_VENDOR)/bin/mmi_diag \
vendor/lge/judyp/proprietary/vendor/bin/msm_irqbalance:$(TARGET_COPY_OUT_VENDOR)/bin/msm_irqbalance \
vendor/lge/judyp/proprietary/vendor/bin/mtsd:$(TARGET_COPY_OUT_VENDOR)/bin/mtsd \
vendor/lge/judyp/proprietary/vendor/bin/myftm:$(TARGET_COPY_OUT_VENDOR)/bin/myftm \
vendor/lge/judyp/proprietary/vendor/bin/netmgrd:$(TARGET_COPY_OUT_VENDOR)/bin/netmgrd \
vendor/lge/judyp/proprietary/vendor/bin/netmgrd_spr/netmgrd:$(TARGET_COPY_OUT_VENDOR)/bin/netmgrd_spr/netmgrd \
vendor/lge/judyp/proprietary/vendor/bin/pd-mapper:$(TARGET_COPY_OUT_VENDOR)/bin/pd-mapper \
vendor/lge/judyp/proprietary/vendor/bin/pm-proxy:$(TARGET_COPY_OUT_VENDOR)/bin/pm-proxy \
vendor/lge/judyp/proprietary/vendor/bin/pm-service:$(TARGET_COPY_OUT_VENDOR)/bin/pm-service \
vendor/lge/judyp/proprietary/vendor/bin/prmd:$(TARGET_COPY_OUT_VENDOR)/bin/prmd \
vendor/lge/judyp/proprietary/vendor/bin/pstore_backup:$(TARGET_COPY_OUT_VENDOR)/bin/pstore_backup \
vendor/lge/judyp/proprietary/vendor/bin/qmi_simple_ril_test:$(TARGET_COPY_OUT_VENDOR)/bin/qmi_simple_ril_test \
vendor/lge/judyp/proprietary/vendor/bin/qni:$(TARGET_COPY_OUT_VENDOR)/bin/qni \
vendor/lge/judyp/proprietary/vendor/bin/qseecom_sample_client:$(TARGET_COPY_OUT_VENDOR)/bin/qseecom_sample_client \
vendor/lge/judyp/proprietary/vendor/bin/qseecomd:$(TARGET_COPY_OUT_VENDOR)/bin/qseecomd \
vendor/lge/judyp/proprietary/vendor/bin/qti:$(TARGET_COPY_OUT_VENDOR)/bin/qti \
vendor/lge/judyp/proprietary/vendor/bin/qvop-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/qvop-daemon \
vendor/lge/judyp/proprietary/vendor/bin/rmt_storage:$(TARGET_COPY_OUT_VENDOR)/bin/rmt_storage \
vendor/lge/judyp/proprietary/vendor/bin/secure_ui_sample_client:$(TARGET_COPY_OUT_VENDOR)/bin/secure_ui_sample_client \
vendor/lge/judyp/proprietary/vendor/bin/seemp_healthd:$(TARGET_COPY_OUT_VENDOR)/bin/seemp_healthd \
vendor/lge/judyp/proprietary/vendor/bin/sensors.qcom:$(TARGET_COPY_OUT_VENDOR)/bin/sensors.qcom \
vendor/lge/judyp/proprietary/vendor/bin/slim_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/slim_daemon \
vendor/lge/judyp/proprietary/vendor/bin/sns_sensor_test_cpp:$(TARGET_COPY_OUT_VENDOR)/bin/sns_sensor_test_cpp \
vendor/lge/judyp/proprietary/vendor/bin/sreadahead_check:$(TARGET_COPY_OUT_VENDOR)/bin/sreadahead_check \
vendor/lge/judyp/proprietary/vendor/bin/ssr_diag:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_diag \
vendor/lge/judyp/proprietary/vendor/bin/ssr_setup:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_setup \
vendor/lge/judyp/proprietary/vendor/bin/subsystem_ramdump:$(TARGET_COPY_OUT_VENDOR)/bin/subsystem_ramdump \
vendor/lge/judyp/proprietary/vendor/bin/test_diag:$(TARGET_COPY_OUT_VENDOR)/bin/test_diag \
vendor/lge/judyp/proprietary/vendor/bin/tftp_server:$(TARGET_COPY_OUT_VENDOR)/bin/tftp_server \
vendor/lge/judyp/proprietary/vendor/bin/thermal-engine:$(TARGET_COPY_OUT_VENDOR)/bin/thermal-engine \
vendor/lge/judyp/proprietary/vendor/bin/time_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/time_daemon \
vendor/lge/judyp/proprietary/vendor/bin/tloc_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/tloc_daemon \
vendor/lge/judyp/proprietary/vendor/bin/toolbox_vendor:$(TARGET_COPY_OUT_VENDOR)/bin/toolbox_vendor \
vendor/lge/judyp/proprietary/vendor/bin/treadahead:$(TARGET_COPY_OUT_VENDOR)/bin/treadahead \
vendor/lge/judyp/proprietary/vendor/bin/triton:$(TARGET_COPY_OUT_VENDOR)/bin/triton \
vendor/lge/judyp/proprietary/vendor/bin/vendor_cmd_tool:$(TARGET_COPY_OUT_VENDOR)/bin/vendor_cmd_tool \
vendor/lge/judyp/proprietary/vendor/bin/vppservice:$(TARGET_COPY_OUT_VENDOR)/bin/vppservice \
vendor/lge/judyp/proprietary/vendor/bin/wcnss_filter:$(TARGET_COPY_OUT_VENDOR)/bin/wcnss_filter \
vendor/lge/judyp/proprietary/vendor/bin/wdsdaemon:$(TARGET_COPY_OUT_VENDOR)/bin/wdsdaemon \
vendor/lge/judyp/proprietary/vendor/bin/wifidisplayhalservice:$(TARGET_COPY_OUT_VENDOR)/bin/wifidisplayhalservice \
vendor/lge/judyp/proprietary/vendor/bin/wififtmd:$(TARGET_COPY_OUT_VENDOR)/bin/wififtmd \
vendor/lge/judyp/proprietary/vendor/bin/wififtmd1:$(TARGET_COPY_OUT_VENDOR)/bin/wififtmd1 \
vendor/lge/judyp/proprietary/vendor/bin/wififtmd2:$(TARGET_COPY_OUT_VENDOR)/bin/wififtmd2 \
vendor/lge/judyp/proprietary/vendor/bin/wlan_logger:$(TARGET_COPY_OUT_VENDOR)/bin/wlan_logger \
vendor/lge/judyp/proprietary/vendor/bin/xtra-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/xtra-daemon \
vendor/lge/judyp/proprietary/vendor/bin/xtwifi-client:$(TARGET_COPY_OUT_VENDOR)/bin/xtwifi-client \
vendor/lge/judyp/proprietary/vendor/bin/xtwifi-inet-agent:$(TARGET_COPY_OUT_VENDOR)/bin/xtwifi-inet-agent \
vendor/lge/judyp/proprietary/vendor/compatibility_matrix.xml:$(TARGET_COPY_OUT_VENDOR)/compatibility_matrix.xml \
vendor/lge/judyp/proprietary/vendor/etc/ArmHDCP_Qualcomm_Android.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/ArmHDCP_Qualcomm_Android.cfg \
vendor/lge/judyp/proprietary/vendor/etc/LGE/appmanager.conf:$(TARGET_COPY_OUT_VENDOR)/etc/LGE/appmanager.conf \
vendor/lge/judyp/proprietary/vendor/etc/acdbdata/Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/Bluetooth_cal.acdb \
vendor/lge/judyp/proprietary/vendor/etc/acdbdata/Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/Codec_cal.acdb \
vendor/lge/judyp/proprietary/vendor/etc/acdbdata/General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/General_cal.acdb \
vendor/lge/judyp/proprietary/vendor/etc/acdbdata/Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/Global_cal.acdb \
vendor/lge/judyp/proprietary/vendor/etc/acdbdata/Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/Handset_cal.acdb \
vendor/lge/judyp/proprietary/vendor/etc/acdbdata/Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/Hdmi_cal.acdb \
vendor/lge/judyp/proprietary/vendor/etc/acdbdata/Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/Headset_cal.acdb \
vendor/lge/judyp/proprietary/vendor/etc/acdbdata/Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/Speaker_cal.acdb \
vendor/lge/judyp/proprietary/vendor/etc/cacert_location.pem:$(TARGET_COPY_OUT_VENDOR)/etc/cacert_location.pem \
vendor/lge/judyp/proprietary/vendor/etc/call_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/call_volumes.xml \
vendor/lge/judyp/proprietary/vendor/etc/camera/camera_tune_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/camera_tune_config.xml \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/10_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/10_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/10_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/10_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/10_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/10_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/10_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/10_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/11_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/11_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/11_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/11_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/11_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/11_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/11_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/11_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/12_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/12_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/12_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/12_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/12_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/12_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/13_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/13_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/13_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/13_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/13_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/13_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/14_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/14_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/14_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/14_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/14_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/14_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/15_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/15_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/15_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/15_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/15_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/15_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/16_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/16_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/16_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/16_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/16_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/16_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/17_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/17_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/18_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/18_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/19_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/19_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/1_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/1_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/1_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/1_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/1_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/1_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/1_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/1_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/20_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/20_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/21_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/21_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/2_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/2_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/2_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/2_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/2_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/2_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/2_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/2_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/3_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/3_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/3_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/3_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/3_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/3_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/3_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/3_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/4_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/4_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/4_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/4_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/4_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/4_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/4_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/4_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/5_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/5_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/5_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/5_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/5_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/5_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/5_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/5_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/6_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/6_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/6_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/6_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/6_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/6_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/6_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/6_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/7_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/7_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/7_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/7_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/7_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/7_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/7_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/7_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/8_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/8_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/8_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/8_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/8_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/8_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/8_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/8_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/9_cine-max.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/9_cine-max.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/9_cine-min.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/9_cine-min.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/9_cine_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/9_cine_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/9_vignette.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/9_vignette.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/cinema/cine_min_10.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/cinema/cine_min_10.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/0_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/0_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/10_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/10_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/1_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/1_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/2_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/2_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/3_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/3_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/4_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/4_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/5_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/5_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/6_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/6_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/7_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/7_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/8_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/8_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/film/9_film.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/film/9_film.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/food/1_food.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/food/1_food.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/makeup/Natural.cng:$(TARGET_COPY_OUT_VENDOR)/etc/camera/makeup/Natural.cng \
vendor/lge/judyp/proprietary/vendor/etc/camera/makeup/Rose.cng:$(TARGET_COPY_OUT_VENDOR)/etc/camera/makeup/Rose.cng \
vendor/lge/judyp/proprietary/vendor/etc/camera/makeup/Smoky.cng:$(TARGET_COPY_OUT_VENDOR)/etc/camera/makeup/Smoky.cng \
vendor/lge/judyp/proprietary/vendor/etc/camera/makeup/SoftBloom.cng:$(TARGET_COPY_OUT_VENDOR)/etc/camera/makeup/SoftBloom.cng \
vendor/lge/judyp/proprietary/vendor/etc/camera/makeup/Velvet.cng:$(TARGET_COPY_OUT_VENDOR)/etc/camera/makeup/Velvet.cng \
vendor/lge/judyp/proprietary/vendor/etc/camera/outfocus/deepportrait_snapshot.dlce:$(TARGET_COPY_OUT_VENDOR)/etc/camera/outfocus/deepportrait_snapshot.dlce \
vendor/lge/judyp/proprietary/vendor/etc/camera/selfie/1_selfie.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/selfie/1_selfie.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/selfie/2_selfie.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/selfie/2_selfie.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/selfie/3_selfie.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/selfie/3_selfie.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/selfie/4_selfie.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/selfie/4_selfie.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/selfie/5_selfie.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/selfie/5_selfie.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/selfie/6_selfie.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/selfie/6_selfie.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/selfie/7_selfie.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/selfie/7_selfie.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/selfie/8_selfie.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/selfie/8_selfie.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/selfie/9_selfie.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/selfie/9_selfie.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/0_smartcam.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/0_smartcam.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/10_smartcam_food.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/10_smartcam_food.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/11_smartcam_food.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/11_smartcam_food.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/12_smartcam_food.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/12_smartcam_food.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/13_smartcam_person_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/13_smartcam_person_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/14_smartcam_person_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/14_smartcam_person_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/15_smartcam_person_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/15_smartcam_person_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/16_smartcam_person_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/16_smartcam_person_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/17_smartcam_landscape.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/17_smartcam_landscape.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/18_smartcam_landscape.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/18_smartcam_landscape.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/19_smartcam_landscape.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/19_smartcam_landscape.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/1_smartcam_pet.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/1_smartcam_pet.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/20_smartcam_landscape.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/20_smartcam_landscape.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/21_smartcam_sunset_sunrise.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/21_smartcam_sunset_sunrise.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/22_smartcam_sunset_sunrise.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/22_smartcam_sunset_sunrise.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/23_smartcam_sunset_sunrise.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/23_smartcam_sunset_sunrise.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/24_smartcam_sunset_sunrise.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/24_smartcam_sunset_sunrise.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/25_smartcam_flower.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/25_smartcam_flower.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/26_smartcam_flower.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/26_smartcam_flower.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/27_smartcam_flower.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/27_smartcam_flower.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/28_smartcam_flower.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/28_smartcam_flower.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/29_smartcam_people_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/29_smartcam_people_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/2_smartcam_pet.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/2_smartcam_pet.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/30_smartcam_people_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/30_smartcam_people_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/31_smartcam_people_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/31_smartcam_people_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/32_smartcam_people_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/32_smartcam_people_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/33_smartcam_baby_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/33_smartcam_baby_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/34_smartcam_baby_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/34_smartcam_baby_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/35_smartcam_baby_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/35_smartcam_baby_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/36_smartcam_baby_rear.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/36_smartcam_baby_rear.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/37_smartcam_animal.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/37_smartcam_animal.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/38_smartcam_animal.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/38_smartcam_animal.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/39_smartcam_animal.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/39_smartcam_animal.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/3_smartcam_pet.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/3_smartcam_pet.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/40_smartcam_animal.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/40_smartcam_animal.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/41_smartcam_beverage.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/41_smartcam_beverage.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/42_smartcam_beverage.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/42_smartcam_beverage.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/43_smartcam_beverage.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/43_smartcam_beverage.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/44_smartcam_beverage.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/44_smartcam_beverage.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/45_smartcam_fruit.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/45_smartcam_fruit.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/46_smartcam_fruit.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/46_smartcam_fruit.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/47_smartcam_fruit.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/47_smartcam_fruit.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/48_smartcam_fruit.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/48_smartcam_fruit.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/49_smartcam_snow.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/49_smartcam_snow.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/4_smartcam_pet.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/4_smartcam_pet.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/50_smartcam_snow.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/50_smartcam_snow.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/51_smartcam_snow.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/51_smartcam_snow.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/52_smartcam_snow.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/52_smartcam_snow.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/53_smartcam_sky.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/53_smartcam_sky.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/54_smartcam_sky.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/54_smartcam_sky.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/55_smartcam_sky.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/55_smartcam_sky.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/56_smartcam_sky.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/56_smartcam_sky.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/57_smartcam_beach.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/57_smartcam_beach.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/58_smartcam_beach.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/58_smartcam_beach.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/59_smartcam_beach.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/59_smartcam_beach.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/5_smartcam_city.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/5_smartcam_city.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/60_smartcam_beach.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/60_smartcam_beach.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/61_smartcam_lowlight.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/61_smartcam_lowlight.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/62_smartcam_lowlight.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/62_smartcam_lowlight.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/63_smartcam_lowlight.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/63_smartcam_lowlight.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/64_smartcam_lowlight.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/64_smartcam_lowlight.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/65_smartcam_person_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/65_smartcam_person_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/66_smartcam_person_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/66_smartcam_person_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/67_smartcam_person_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/67_smartcam_person_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/68_smartcam_person_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/68_smartcam_person_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/69_smartcam_people_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/69_smartcam_people_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/6_smartcam_city.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/6_smartcam_city.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/70_smartcam_people_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/70_smartcam_people_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/71_smartcam_people_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/71_smartcam_people_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/72_smartcam_people_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/72_smartcam_people_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/73_smartcam_baby_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/73_smartcam_baby_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/74_smartcam_baby_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/74_smartcam_baby_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/75_smartcam_baby_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/75_smartcam_baby_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/76_smartcam_baby_front.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/76_smartcam_baby_front.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/7_smartcam_city.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/7_smartcam_city.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/8_smartcam_city.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/8_smartcam_city.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/91_smartcam_basic_01.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/91_smartcam_basic_01.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/92_smartcam_basic_02.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/92_smartcam_basic_02.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/93_smartcam_basic_03.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/93_smartcam_basic_03.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/94_smartcam_basic_04.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/94_smartcam_basic_04.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/smartcam/9_smartcam_food.dat:$(TARGET_COPY_OUT_VENDOR)/etc/camera/smartcam/9_smartcam_food.dat \
vendor/lge/judyp/proprietary/vendor/etc/camera/vnr/SJ_VideoNR_LUT.bin:$(TARGET_COPY_OUT_VENDOR)/etc/camera/vnr/SJ_VideoNR_LUT.bin \
vendor/lge/judyp/proprietary/vendor/etc/camera/wb_graph_imx351.pb:$(TARGET_COPY_OUT_VENDOR)/etc/camera/wb_graph_imx351.pb \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_charging_base.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_charging_base.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_charging_blink.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_charging_blink.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_charging_complete.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_charging_complete.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_charging_dummy.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_charging_dummy.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_charging_exclam.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_charging_exclam.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_charging_img.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_charging_img.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_charging_question.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_charging_question.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_charging_stop_img.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_charging_stop_img.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_invalid_01.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_invalid_01.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_invalid_02.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_invalid_02.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_moisture.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_moisture.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent_0.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent_0.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent_1.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent_1.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent_2.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent_2.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent_3.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent_3.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent_4.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent_4.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent_5.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent_5.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent_6.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent_6.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent_7.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent_7.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent_8.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent_8.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_percent_9.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_percent_9.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_warning_temperature.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_warning_temperature.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/battery_wireless_small.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/battery_wireless_small.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/black_bg.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/black_bg.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/chargerlogo.ini:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/chargerlogo.ini \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_01.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_01.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_02.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_02.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_03.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_03.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_04.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_04.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_05.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_05.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_06.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_06.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_07.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_07.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_08.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_08.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_09.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_09.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_10.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_10.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_11.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_11.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_12.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_12.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_13.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_13.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_14.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_14.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_15.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_15.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_16.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_16.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_17.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_17.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_18.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_18.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_19.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_19.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_20.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_20.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_21.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_21.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_22.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_22.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_23.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_23.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_24.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_24.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_25.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_25.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_26.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_26.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_27.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_27.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_28.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_28.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/effect_none.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/effect_none.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_001.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_001.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_002.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_002.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_003.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_003.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_004.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_004.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_005.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_005.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_006.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_006.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_007.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_007.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_008.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_008.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_009.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_009.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_010.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_010.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_011.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_011.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_012.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_012.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_013.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_013.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_014.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_014.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_015.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_015.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_016.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_016.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_017.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_017.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_018.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_018.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_019.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_019.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_020.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_020.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_021.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_021.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_022.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_022.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_023.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_023.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_024.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_024.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_025.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_025.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_026.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_026.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_027.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_027.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_028.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_028.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_029.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_029.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_030.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_030.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_031.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_031.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_032.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_032.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_033.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_033.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_034.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_034.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_035.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_035.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_036.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_036.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_037.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_037.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_038.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_038.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_039.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_039.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_040.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_040.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_041.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_041.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_042.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_042.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_043.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_043.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_044.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_044.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_045.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_045.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_046.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_046.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_047.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_047.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_048.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_048.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_049.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_049.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_050.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_050.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_051.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_051.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_052.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_052.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_053.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_053.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_054.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_054.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_055.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_055.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_056.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_056.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_057.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_057.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_058.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_058.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_059.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_059.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_060.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_060.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_061.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_061.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_062.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_062.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_063.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_063.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_064.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_064.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_065.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_065.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_066.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_066.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_067.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_067.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_068.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_068.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_069.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_069.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_070.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_070.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_071.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_071.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_072.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_072.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_073.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_073.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_074.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_074.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_075.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_075.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_076.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_076.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_077.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_077.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_078.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_078.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_079.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_079.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_080.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_080.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_081.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_081.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_082.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_082.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_083.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_083.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_084.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_084.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_085.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_085.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_086.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_086.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_087.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_087.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_088.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_088.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_089.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_089.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_090.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_090.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_091.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_091.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_092.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_092.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_093.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_093.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_094.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_094.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_095.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_095.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_096.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_096.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_097.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_097.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_098.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_098.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_099.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_099.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/number_100.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/number_100.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_001.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_001.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_002.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_002.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_003.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_003.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_004.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_004.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_005.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_005.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_006.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_006.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_007.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_007.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_008.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_008.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_009.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_009.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_010.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_010.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_011.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_011.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_012.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_012.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_013.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_013.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_014.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_014.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/COMMON/warn_number_015.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/COMMON/warn_number_015.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/KR/battery_charging_warning.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/KR/battery_charging_warning.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/KR/battery_charging_warning_1.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/KR/battery_charging_warning_1.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/US/ATT/chargerlogo.ini:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/US/ATT/chargerlogo.ini \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/US/battery_charging_incompatible_vzw.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/US/battery_charging_incompatible_vzw.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/US/battery_charging_warning.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/US/battery_charging_warning.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/US/battery_charging_warning_1.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/US/battery_charging_warning_1.png \
vendor/lge/judyp/proprietary/vendor/etc/chargerimages/US/battery_charging_warning_slow_charging.png:$(TARGET_COPY_OUT_VENDOR)/etc/chargerimages/US/battery_charging_warning_slow_charging.png \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile1.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile2.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile3.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile4.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile5.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile6.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile1.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile2.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile3.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile4.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile5.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile6.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile7.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile7.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile1.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile2.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile3.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile4.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile5.xml \
vendor/lge/judyp/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile6.xml \
vendor/lge/judyp/proprietary/vendor/etc/data/dsi_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/data/dsi_config.xml \
vendor/lge/judyp/proprietary/vendor/etc/data/netmgr_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/data/netmgr_config.xml \
vendor/lge/judyp/proprietary/vendor/etc/fstab.factory:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.factory \
vendor/lge/judyp/proprietary/vendor/etc/fstab.judyp:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.judyp \
vendor/lge/judyp/proprietary/vendor/etc/gpfspath_oem_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gpfspath_oem_config.xml \
vendor/lge/judyp/proprietary/vendor/etc/hbtp/hbtpcfg.dat:$(TARGET_COPY_OUT_VENDOR)/etc/hbtp/hbtpcfg.dat \
vendor/lge/judyp/proprietary/vendor/etc/hbtp/hbtpcfg_sdm845_800h_qhd.dat:$(TARGET_COPY_OUT_VENDOR)/etc/hbtp/hbtpcfg_sdm845_800h_qhd.dat \
vendor/lge/judyp/proprietary/vendor/etc/hbtp/hbtpcfg_sdm845_800s_4k.dat:$(TARGET_COPY_OUT_VENDOR)/etc/hbtp/hbtpcfg_sdm845_800s_4k.dat \
vendor/lge/judyp/proprietary/vendor/etc/hbtp/hbtpcfg_sdm845_800s_qhd.dat:$(TARGET_COPY_OUT_VENDOR)/etc/hbtp/hbtpcfg_sdm845_800s_qhd.dat \
vendor/lge/judyp/proprietary/vendor/etc/hbtp/loader.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/hbtp/loader.cfg \
vendor/lge/judyp/proprietary/vendor/etc/hbtp/qtc800s_dsp.bin:$(TARGET_COPY_OUT_VENDOR)/etc/hbtp/qtc800s_dsp.bin \
vendor/lge/judyp/proprietary/vendor/etc/hdr_tm_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/hdr_tm_config.xml \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.lge.atd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.lge.atd.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.mid.config.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.mid.config.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.mid.service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.mid.service.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.aat.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.aat.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.atd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.atd.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.config.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.config.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.environ.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.environ.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.h20.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.h20.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.h30.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.h30.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.mfts.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.mfts.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.pre_selfde.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.pre_selfde.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.selfd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.selfd.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.service.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.miniOS.taio.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.miniOS.taio.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/factory/init.sniff.service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/factory/init.sniff.service.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/hw_vari.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw_vari.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/init.lge.audio.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.lge.audio.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/init.lge.fingerprints.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.lge.fingerprints.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/init.lge.fm.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.lge.fm.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/init.lge.ima_sdm845.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.lge.ima_sdm845.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/init.lge.power.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.lge.power.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/init.lge.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.lge.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/init.lge.sensors.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.lge.sensors.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/init.wifi.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.wifi.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/init.wifi.runtime.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.wifi.runtime.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/init.wifi_ext.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.wifi_ext.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/rild.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/rild.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/vendor.lge.power.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.lge.power.rc \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/init/[email protected]:$(TARGET_COPY_OUT_VENDOR)/etc/init/[email protected] \
vendor/lge/judyp/proprietary/vendor/etc/libnfc-brcm.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-brcm.conf \
vendor/lge/judyp/proprietary/vendor/etc/libnfc-nxp-KR.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nxp-KR.conf \
vendor/lge/judyp/proprietary/vendor/etc/libnfc-nxp-US.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nxp-US.conf \
vendor/lge/judyp/proprietary/vendor/etc/libnfc-nxp-hk.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nxp-hk.conf \
vendor/lge/judyp/proprietary/vendor/etc/libnfc-nxp-lg.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nxp-lg.conf \
vendor/lge/judyp/proprietary/vendor/etc/libnfc-nxp.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nxp.conf \
vendor/lge/judyp/proprietary/vendor/etc/lm/ReferenceFeature.xml:$(TARGET_COPY_OUT_VENDOR)/etc/lm/ReferenceFeature.xml \
vendor/lge/judyp/proprietary/vendor/etc/mirrorlink_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/mirrorlink_audio_policy_configuration.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/PublicKey.txt:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/PublicKey.txt \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_AU.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_AU.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_CA.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_CA.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_CN.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_CN.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_CO.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_CO.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_COM.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_COM.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_HK.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_HK.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_IL.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_IL.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_JP.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_JP.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_KR.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_KR.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_NZ.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_NZ.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_PL.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_PL.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_US.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_US.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_nfc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_nfc.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/config_nfcopen.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/config_nfcopen.xml \
vendor/lge/judyp/proprietary/vendor/etc/nfc/target_list.xml:$(TARGET_COPY_OUT_VENDOR)/etc/nfc/target_list.xml \
vendor/lge/judyp/proprietary/vendor/etc/per_app_desc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/per_app_desc.xml \
vendor/lge/judyp/proprietary/vendor/etc/perf/perf-profile0.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile0.conf \
vendor/lge/judyp/proprietary/vendor/etc/perf/perf-profile1.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile1.conf \
vendor/lge/judyp/proprietary/vendor/etc/perf/perf-profile2.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile2.conf \
vendor/lge/judyp/proprietary/vendor/etc/perf/perf-profile210.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile210.conf \
vendor/lge/judyp/proprietary/vendor/etc/perf/perf-profile299.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile299.conf \
vendor/lge/judyp/proprietary/vendor/etc/perf/perf-profile3.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile3.conf \
vendor/lge/judyp/proprietary/vendor/etc/perf/perf-profile4.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile4.conf \
vendor/lge/judyp/proprietary/vendor/etc/perf/perf-profile5.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile5.conf \
vendor/lge/judyp/proprietary/vendor/etc/perf/perf-profile6.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile6.conf \
vendor/lge/judyp/proprietary/vendor/etc/permissions/com.gsma.services.nfc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.gsma.services.nfc.xml \
vendor/lge/judyp/proprietary/vendor/etc/permissions/com.nxp.mifare.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.nxp.mifare.xml \
vendor/lge/judyp/proprietary/vendor/etc/permissions/vendor-qti-hardware-sensorscalibrate.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/vendor-qti-hardware-sensorscalibrate.xml \
vendor/lge/judyp/proprietary/vendor/etc/ph_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ph_config.xml \
vendor/lge/judyp/proprietary/vendor/etc/powerhint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/powerhint.xml \
vendor/lge/judyp/proprietary/vendor/etc/qdcm_calib_data_SW43402_cmd_mode_dsc_dsi_panel.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qdcm_calib_data_SW43402_cmd_mode_dsc_dsi_panel.xml \
vendor/lge/judyp/proprietary/vendor/etc/qdcm_calib_data_SW43408_cmd_mode_dsc_dsi_panel.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qdcm_calib_data_SW43408_cmd_mode_dsc_dsi_panel.xml \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/double_fan_target_3_6/template1.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/double_fan_target_3_6/template1.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/double_fan_target_3_6/template2.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/double_fan_target_3_6/template2.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/double_fan_target_3_6/template3.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/double_fan_target_3_6/template3.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/double_fan_target_3_6/template4.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/double_fan_target_3_6/template4.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/double_fan_target_4_2/template1.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/double_fan_target_4_2/template1.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/double_fan_target_4_2/template2.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/double_fan_target_4_2/template2.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/double_fan_target_4_2/template3.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/double_fan_target_4_2/template3.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/double_fan_target_4_2/template4.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/double_fan_target_4_2/template4.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/fan_target/template1.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/fan_target/template1.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/fan_target/template2.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/fan_target/template2.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/fan_target/template3.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/fan_target/template3.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/fan_target/template4.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/fan_target/template4.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/slanted_target/template1.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/slanted_target/template1.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/slanted_target/template2.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/slanted_target/template2.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/slanted_target/template3.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/slanted_target/template3.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qti_fp/image_quality/templates/slanted_target/template4.pgm:$(TARGET_COPY_OUT_VENDOR)/etc/qti_fp/image_quality/templates/slanted_target/template4.pgm \
vendor/lge/judyp/proprietary/vendor/etc/qvaconfig.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qvaconfig.xml \
vendor/lge/judyp/proprietary/vendor/etc/qvop/antispoofing.bin:$(TARGET_COPY_OUT_VENDOR)/etc/qvop/antispoofing.bin \
vendor/lge/judyp/proprietary/vendor/etc/qvop/cmudict.bin:$(TARGET_COPY_OUT_VENDOR)/etc/qvop/cmudict.bin \
vendor/lge/judyp/proprietary/vendor/etc/qvop/noisesample.bin:$(TARGET_COPY_OUT_VENDOR)/etc/qvop/noisesample.bin \
vendor/lge/judyp/proprietary/vendor/etc/qvop/poc_64_hmm.gmm:$(TARGET_COPY_OUT_VENDOR)/etc/qvop/poc_64_hmm.gmm \
vendor/lge/judyp/proprietary/vendor/etc/qvr/ov7251_640x480_cam_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qvr/ov7251_640x480_cam_config.xml \
vendor/lge/judyp/proprietary/vendor/etc/qvr/ov9282_stereo_1280x400_cam_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qvr/ov9282_stereo_1280x400_cam_config.xml \
vendor/lge/judyp/proprietary/vendor/etc/qvr/ov9282_stereo_2560x800_cam_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qvr/ov9282_stereo_2560x800_cam_config.xml \
vendor/lge/judyp/proprietary/vendor/etc/qvr/qvrservice_6dof_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qvr/qvrservice_6dof_config.xml \
vendor/lge/judyp/proprietary/vendor/etc/qvr/qvrservice_6dof_config_stereo.xml:$(TARGET_COPY_OUT_VENDOR)/etc/qvr/qvrservice_6dof_config_stereo.xml \
vendor/lge/judyp/proprietary/vendor/etc/qvr/qvrservice_config.txt:$(TARGET_COPY_OUT_VENDOR)/etc/qvr/qvrservice_config.txt \
vendor/lge/judyp/proprietary/vendor/etc/scve/facereco/gModel.dat:$(TARGET_COPY_OUT_VENDOR)/etc/scve/facereco/gModel.dat \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/ak991x_dri_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/ak991x_dri_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/apds9939_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/apds9939_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/bmp285_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/bmp285_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/etc_version:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/etc_version \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/icm4x6xx_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/icm4x6xx_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/icm4x6xx_0_rev02.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/icm4x6xx_0_rev02.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/lsm6ds3_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/lsm6ds3_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/lsm6dsm_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/lsm6dsm_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sdm845_ak991x_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sdm845_ak991x_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sdm845_apds9939_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sdm845_apds9939_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sdm845_bmp285_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sdm845_bmp285_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sdm845_icm4x6xx_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sdm845_icm4x6xx_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sdm845_icm4x6xx_0_rev02.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sdm845_icm4x6xx_0_rev02.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sdm845_icm4x6xx_0_rev03.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sdm845_icm4x6xx_0_rev03.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sdm845_lsm6dsm_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sdm845_lsm6dsm_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sdm845_power_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sdm845_power_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sdm845_spl06_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sdm845_spl06_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sdm845_tmd4704_rev03.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sdm845_tmd4704_rev03.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sensors_list.txt:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sensors_list.txt \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_amd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_amd.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_basic_gestures.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_basic_gestures.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_bring_to_ear.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_bring_to_ear.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_cm.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_cm.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_device_orient.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_device_orient.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_diag_filter.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_diag_filter.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_distance_bound.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_distance_bound.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_dpc.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_dpc.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_facing.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_facing.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_fmv.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_fmv.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_geomag_rv.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_geomag_rv.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_gyro_cal.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_gyro_cal.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_lg_filtered_pressure.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_lg_filtered_pressure.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_lg_gated_gyro.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_lg_gated_gyro.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_mag_cal.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_mag_cal.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_multishake.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_multishake.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_pedometer.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_pedometer.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_rmd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_rmd.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_rotv.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_rotv.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_smd.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_smd.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_tilt.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_tilt.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/sns_tilt_to_wake.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/sns_tilt_to_wake.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/spl06_0.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/spl06_0.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/config/tmd4704_rev03.json:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/config/tmd4704_rev03.json \
vendor/lge/judyp/proprietary/vendor/etc/sensors/registry/registry/sensors_settings:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/registry/registry/sensors_settings \
vendor/lge/judyp/proprietary/vendor/etc/thermal-engine-845.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal-engine-845.conf \
vendor/lge/judyp/proprietary/vendor/etc/thermal-engine-default.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal-engine-default.conf \
vendor/lge/judyp/proprietary/vendor/etc/thermal-engine.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal-engine.conf \
vendor/lge/judyp/proprietary/vendor/etc/vib_white_list_packages.xml:$(TARGET_COPY_OUT_VENDOR)/etc/vib_white_list_packages.xml \
vendor/lge/judyp/proprietary/vendor/etc/whitelistedplayerapps.xml:$(TARGET_COPY_OUT_VENDOR)/etc/whitelistedplayerapps.xml \
vendor/lge/judyp/proprietary/vendor/etc/xtra_root_cert.pem:$(TARGET_COPY_OUT_VENDOR)/etc/xtra_root_cert.pem \
vendor/lge/judyp/proprietary/vendor/ffu/FFUSKHYNIX_H28S7Q302BMR_A002.bin:$(TARGET_COPY_OUT_VENDOR)/ffu/FFUSKHYNIX_H28S7Q302BMR_A002.bin \
vendor/lge/judyp/proprietary/vendor/ffu/FFUSKHYNIX_H28U62301AMR_D003.bin:$(TARGET_COPY_OUT_VENDOR)/ffu/FFUSKHYNIX_H28U62301AMR_D003.bin \
vendor/lge/judyp/proprietary/vendor/ffu/FFUTOSHIBA_THGAF8G9T43BAIRB_0300.bin:$(TARGET_COPY_OUT_VENDOR)/ffu/FFUTOSHIBA_THGAF8G9T43BAIRB_0300.bin \
vendor/lge/judyp/proprietary/vendor/firmware/CAMERA_ICP.elf:$(TARGET_COPY_OUT_VENDOR)/firmware/CAMERA_ICP.elf \
vendor/lge/judyp/proprietary/vendor/firmware/Tfa9872.cnt:$(TARGET_COPY_OUT_VENDOR)/firmware/Tfa9872.cnt \
vendor/lge/judyp/proprietary/vendor/firmware/a225_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a225_pfp.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a225_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a225_pm4.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a225p5_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a225p5_pm4.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a300_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a300_pfp.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a300_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a300_pm4.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a330_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a330_pfp.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a330_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a330_pm4.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a420_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a420_pfp.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a420_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a420_pm4.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a530_gpmu.fw2:$(TARGET_COPY_OUT_VENDOR)/firmware/a530_gpmu.fw2 \
vendor/lge/judyp/proprietary/vendor/firmware/a530_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530_pfp.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a530_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530_pm4.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a530v1_pfp.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v1_pfp.fw \
vendor/lge/judyp/proprietary/vendor/firmware/a530v1_pm4.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/a530v1_pm4.fw \