-
Notifications
You must be signed in to change notification settings - Fork 0
/
croissant-vendor.mk
3614 lines (3611 loc) · 504 KB
/
croissant-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/asus/croissant/setup-makefiles.sh
PRODUCT_COPY_FILES += \
vendor/asus/croissant/proprietary/bin/dpmd:system/bin/dpmd \
vendor/asus/croissant/proprietary/bin/wfdservice:system/bin/wfdservice \
vendor/asus/croissant/proprietary/etc/dpm/dpm.conf:system/etc/dpm/dpm.conf \
vendor/asus/croissant/proprietary/etc/firmware/tru2life/ADInitParam.xml:system/etc/firmware/tru2life/ADInitParam.xml \
vendor/asus/croissant/proprietary/etc/init/dpmd.rc:system/etc/init/dpmd.rc \
vendor/asus/croissant/proprietary/etc/init/wfdservice.rc:system/etc/init/wfdservice.rc \
vendor/asus/croissant/proprietary/etc/permissions/audiosphere.xml:system/etc/permissions/audiosphere.xml \
vendor/asus/croissant/proprietary/etc/permissions/cneapiclient.xml:system/etc/permissions/cneapiclient.xml \
vendor/asus/croissant/proprietary/etc/permissions/com.qti.dpmframework.xml:system/etc/permissions/com.qti.dpmframework.xml \
vendor/asus/croissant/proprietary/etc/permissions/com.qti.location.sdk.xml:system/etc/permissions/com.qti.location.sdk.xml \
vendor/asus/croissant/proprietary/etc/permissions/com.qualcomm.location.xml:system/etc/permissions/com.qualcomm.location.xml \
vendor/asus/croissant/proprietary/etc/permissions/com.qualcomm.qti.imscmservice-V2.0-java.xml:system/etc/permissions/com.qualcomm.qti.imscmservice-V2.0-java.xml \
vendor/asus/croissant/proprietary/etc/permissions/com.qualcomm.qti.imscmservice-V2.1-java.xml:system/etc/permissions/com.qualcomm.qti.imscmservice-V2.1-java.xml \
vendor/asus/croissant/proprietary/etc/permissions/com.qualcomm.qti.imscmservice.xml:system/etc/permissions/com.qualcomm.qti.imscmservice.xml \
vendor/asus/croissant/proprietary/etc/permissions/com.quicinc.cne.xml:system/etc/permissions/com.quicinc.cne.xml \
vendor/asus/croissant/proprietary/etc/permissions/dpmapi.xml:system/etc/permissions/dpmapi.xml \
vendor/asus/croissant/proprietary/etc/permissions/embms.xml:system/etc/permissions/embms.xml \
vendor/asus/croissant/proprietary/etc/permissions/izat.xt.srv.xml:system/etc/permissions/izat.xt.srv.xml \
vendor/asus/croissant/proprietary/etc/permissions/privapp-permissions-com.qualcomm.location.xml:system/etc/permissions/privapp-permissions-com.qualcomm.location.xml \
vendor/asus/croissant/proprietary/etc/permissions/privapp-permissions-qti.xml:system/etc/permissions/privapp-permissions-qti.xml \
vendor/asus/croissant/proprietary/etc/permissions/qcrilhook.xml:system/etc/permissions/qcrilhook.xml \
vendor/asus/croissant/proprietary/etc/permissions/qti_libpermissions.xml:system/etc/permissions/qti_libpermissions.xml \
vendor/asus/croissant/proprietary/etc/permissions/qti_permissions.xml:system/etc/permissions/qti_permissions.xml \
vendor/asus/croissant/proprietary/etc/permissions/telephonyservice.xml:system/etc/permissions/telephonyservice.xml \
vendor/asus/croissant/proprietary/etc/sysconfig/qti_whitelist.xml:system/etc/sysconfig/qti_whitelist.xml \
vendor/asus/croissant/proprietary/etc/wfdconfig.xml:system/etc/wfdconfig.xml \
vendor/asus/croissant/proprietary/etc/wfdconfig_720.xml:system/etc/wfdconfig_720.xml \
vendor/asus/croissant/proprietary/etc/wfdconfig_MI.xml:system/etc/wfdconfig_MI.xml \
vendor/asus/croissant/proprietary/etc/wfdconfigsink.xml:system/etc/wfdconfigsink.xml \
vendor/asus/croissant/proprietary/framework/QtiTelephonyServicelibrary.jar:system/framework/QtiTelephonyServicelibrary.jar \
vendor/asus/croissant/proprietary/framework/audiosphere.jar:system/framework/audiosphere.jar \
vendor/asus/croissant/proprietary/framework/cneapiclient.jar:system/framework/cneapiclient.jar \
vendor/asus/croissant/proprietary/framework/com.qti.dpmframework.jar:system/framework/com.qti.dpmframework.jar \
vendor/asus/croissant/proprietary/framework/com.qti.location.sdk.jar:system/framework/com.qti.location.sdk.jar \
vendor/asus/croissant/proprietary/framework/com.qualcomm.qti.imscmservice-V2.0-java.jar:system/framework/com.qualcomm.qti.imscmservice-V2.0-java.jar \
vendor/asus/croissant/proprietary/framework/com.qualcomm.qti.imscmservice-V2.1-java.jar:system/framework/com.qualcomm.qti.imscmservice-V2.1-java.jar \
vendor/asus/croissant/proprietary/framework/com.qualcomm.qti.uceservice-V2.0-java.jar:system/framework/com.qualcomm.qti.uceservice-V2.0-java.jar \
vendor/asus/croissant/proprietary/framework/com.quicinc.cne.api-V1.0-java.jar:system/framework/com.quicinc.cne.api-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/com.quicinc.cne.api-V1.1-java.jar:system/framework/com.quicinc.cne.api-V1.1-java.jar \
vendor/asus/croissant/proprietary/framework/com.quicinc.cne.constants-V1.0-java.jar:system/framework/com.quicinc.cne.constants-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/com.quicinc.cne.constants-V2.0-java.jar:system/framework/com.quicinc.cne.constants-V2.0-java.jar \
vendor/asus/croissant/proprietary/framework/com.quicinc.cne.constants-V2.1-java.jar:system/framework/com.quicinc.cne.constants-V2.1-java.jar \
vendor/asus/croissant/proprietary/framework/com.quicinc.cne.jar:system/framework/com.quicinc.cne.jar \
vendor/asus/croissant/proprietary/framework/com.quicinc.cne.server-V1.0-java.jar:system/framework/com.quicinc.cne.server-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/com.quicinc.cne.server-V2.0-java.jar:system/framework/com.quicinc.cne.server-V2.0-java.jar \
vendor/asus/croissant/proprietary/framework/com.quicinc.cne.server-V2.1-java.jar:system/framework/com.quicinc.cne.server-V2.1-java.jar \
vendor/asus/croissant/proprietary/framework/com.quicinc.cne.server-V2.2-java.jar:system/framework/com.quicinc.cne.server-V2.2-java.jar \
vendor/asus/croissant/proprietary/framework/dpmapi.jar:system/framework/dpmapi.jar \
vendor/asus/croissant/proprietary/framework/embmslibrary.jar:system/framework/embmslibrary.jar \
vendor/asus/croissant/proprietary/framework/izat.xt.srv.jar:system/framework/izat.xt.srv.jar \
vendor/asus/croissant/proprietary/framework/qcrilhook.jar:system/framework/qcrilhook.jar \
vendor/asus/croissant/proprietary/framework/qti-telephony-common.jar:system/framework/qti-telephony-common.jar \
vendor/asus/croissant/proprietary/framework/tcmclient.jar:system/framework/tcmclient.jar \
vendor/asus/croissant/proprietary/framework/vendor.qti.data.factory-V1.0-java.jar:system/framework/vendor.qti.data.factory-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/vendor.qti.hardware.alarm-V1.0-java.jar:system/framework/vendor.qti.hardware.alarm-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/vendor.qti.hardware.data.dynamicdds-V1.0-java.jar:system/framework/vendor.qti.hardware.data.dynamicdds-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/vendor.qti.hardware.data.latency-V1.0-java.jar:system/framework/vendor.qti.hardware.data.latency-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/vendor.qti.hardware.data.qmi-V1.0-java.jar:system/framework/vendor.qti.hardware.data.qmi-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/vendor.qti.hardware.soter-V1.0-java.jar:system/framework/vendor.qti.hardware.soter-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/vendor.qti.ims.callinfo-V1.0-java.jar:system/framework/vendor.qti.ims.callinfo-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/vendor.qti.ims.rcsconfig-V1.0-java.jar:system/framework/vendor.qti.ims.rcsconfig-V1.0-java.jar \
vendor/asus/croissant/proprietary/framework/vendor.qti.latency-V2.0-java.jar:system/framework/vendor.qti.latency-V2.0-java.jar \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/extractors/libmmparser.so:system/lib/extractors/libmmparser.so \
vendor/asus/croissant/proprietary/lib/fm_helium.so:system/lib/fm_helium.so \
vendor/asus/croissant/proprietary/lib/lib-imscamera.so:system/lib/lib-imscamera.so \
vendor/asus/croissant/proprietary/lib/lib-imsvideocodec.so:system/lib/lib-imsvideocodec.so \
vendor/asus/croissant/proprietary/lib/lib-imsvt.so:system/lib/lib-imsvt.so \
vendor/asus/croissant/proprietary/lib/lib-imsvtextutils.so:system/lib/lib-imsvtextutils.so \
vendor/asus/croissant/proprietary/lib/lib-imsvtutils.so:system/lib/lib-imsvtutils.so \
vendor/asus/croissant/proprietary/lib/libFileMux.so:system/lib/libFileMux.so \
vendor/asus/croissant/proprietary/lib/libOmxMux.so:system/lib/libOmxMux.so \
vendor/asus/croissant/proprietary/lib/libdiag_system.so:system/lib/libdiag_system.so \
vendor/asus/croissant/proprietary/lib/libdpmctmgr.so:system/lib/libdpmctmgr.so \
vendor/asus/croissant/proprietary/lib/libdpmfdmgr.so:system/lib/libdpmfdmgr.so \
vendor/asus/croissant/proprietary/lib/libdpmframework.so:system/lib/libdpmframework.so \
vendor/asus/croissant/proprietary/lib/libdpmtcm.so:system/lib/libdpmtcm.so \
vendor/asus/croissant/proprietary/lib/libfm-hci.so:system/lib/libfm-hci.so \
vendor/asus/croissant/proprietary/lib/libimscamera_jni.so:system/lib/libimscamera_jni.so \
vendor/asus/croissant/proprietary/lib/libimsmedia_jni.so:system/lib/libimsmedia_jni.so \
vendor/asus/croissant/proprietary/lib/libmmosal.so:system/lib/libmmosal.so \
vendor/asus/croissant/proprietary/lib/libmmparser_lite.so:system/lib/libmmparser_lite.so \
vendor/asus/croissant/proprietary/lib/libmmrtpdecoder.so:system/lib/libmmrtpdecoder.so \
vendor/asus/croissant/proprietary/lib/libmmrtpencoder.so:system/lib/libmmrtpencoder.so \
vendor/asus/croissant/proprietary/lib/librcc.so:system/lib/librcc.so \
vendor/asus/croissant/proprietary/lib/libwfdavenhancements.so:system/lib/libwfdavenhancements.so \
vendor/asus/croissant/proprietary/lib/libwfdclient.so:system/lib/libwfdclient.so \
vendor/asus/croissant/proprietary/lib/libwfdcodecv4l2.so:system/lib/libwfdcodecv4l2.so \
vendor/asus/croissant/proprietary/lib/libwfdcommonutils.so:system/lib/libwfdcommonutils.so \
vendor/asus/croissant/proprietary/lib/libwfdconfigutils.so:system/lib/libwfdconfigutils.so \
vendor/asus/croissant/proprietary/lib/libwfdmminterface.so:system/lib/libwfdmminterface.so \
vendor/asus/croissant/proprietary/lib/libwfdmmsink.so:system/lib/libwfdmmsink.so \
vendor/asus/croissant/proprietary/lib/libwfdmmsrc.so:system/lib/libwfdmmsrc.so \
vendor/asus/croissant/proprietary/lib/libwfdnative.so:system/lib/libwfdnative.so \
vendor/asus/croissant/proprietary/lib/libwfdrtsp.so:system/lib/libwfdrtsp.so \
vendor/asus/croissant/proprietary/lib/libwfdservice.so:system/lib/libwfdservice.so \
vendor/asus/croissant/proprietary/lib/libwfdsm.so:system/lib/libwfdsm.so \
vendor/asus/croissant/proprietary/lib/libwfduibcinterface.so:system/lib/libwfduibcinterface.so \
vendor/asus/croissant/proprietary/lib/libwfduibcsink.so:system/lib/libwfduibcsink.so \
vendor/asus/croissant/proprietary/lib/libwfduibcsinkinterface.so:system/lib/libwfduibcsinkinterface.so \
vendor/asus/croissant/proprietary/lib/libwfduibcsrc.so:system/lib/libwfduibcsrc.so \
vendor/asus/croissant/proprietary/lib/libwfduibcsrcinterface.so:system/lib/libwfduibcsrcinterface.so \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib/[email protected]:system/lib/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/extractors/libmmparser.so:system/lib64/extractors/libmmparser.so \
vendor/asus/croissant/proprietary/lib64/fm_helium.so:system/lib64/fm_helium.so \
vendor/asus/croissant/proprietary/lib64/lib-imscamera.so:system/lib64/lib-imscamera.so \
vendor/asus/croissant/proprietary/lib64/lib-imsvideocodec.so:system/lib64/lib-imsvideocodec.so \
vendor/asus/croissant/proprietary/lib64/lib-imsvt.so:system/lib64/lib-imsvt.so \
vendor/asus/croissant/proprietary/lib64/lib-imsvtextutils.so:system/lib64/lib-imsvtextutils.so \
vendor/asus/croissant/proprietary/lib64/lib-imsvtutils.so:system/lib64/lib-imsvtutils.so \
vendor/asus/croissant/proprietary/lib64/libFileMux.so:system/lib64/libFileMux.so \
vendor/asus/croissant/proprietary/lib64/libOmxMux.so:system/lib64/libOmxMux.so \
vendor/asus/croissant/proprietary/lib64/libaptXHD_encoder.so:system/lib64/libaptXHD_encoder.so \
vendor/asus/croissant/proprietary/lib64/libaptX_encoder.so:system/lib64/libaptX_encoder.so \
vendor/asus/croissant/proprietary/lib64/libdiag_system.so:system/lib64/libdiag_system.so \
vendor/asus/croissant/proprietary/lib64/libdpmctmgr.so:system/lib64/libdpmctmgr.so \
vendor/asus/croissant/proprietary/lib64/libdpmfdmgr.so:system/lib64/libdpmfdmgr.so \
vendor/asus/croissant/proprietary/lib64/libdpmframework.so:system/lib64/libdpmframework.so \
vendor/asus/croissant/proprietary/lib64/libdpmtcm.so:system/lib64/libdpmtcm.so \
vendor/asus/croissant/proprietary/lib64/libfm-hci.so:system/lib64/libfm-hci.so \
vendor/asus/croissant/proprietary/lib64/libimscamera_jni.so:system/lib64/libimscamera_jni.so \
vendor/asus/croissant/proprietary/lib64/libimsmedia_jni.so:system/lib64/libimsmedia_jni.so \
vendor/asus/croissant/proprietary/lib64/liblocationservice_jni.so:system/lib64/liblocationservice_jni.so \
vendor/asus/croissant/proprietary/lib64/libmmosal.so:system/lib64/libmmosal.so \
vendor/asus/croissant/proprietary/lib64/libmmparser_lite.so:system/lib64/libmmparser_lite.so \
vendor/asus/croissant/proprietary/lib64/libmmrtpdecoder.so:system/lib64/libmmrtpdecoder.so \
vendor/asus/croissant/proprietary/lib64/libmmrtpencoder.so:system/lib64/libmmrtpencoder.so \
vendor/asus/croissant/proprietary/lib64/librcc.so:system/lib64/librcc.so \
vendor/asus/croissant/proprietary/lib64/libseemore.so:system/lib64/libseemore.so \
vendor/asus/croissant/proprietary/lib64/libwfdclient.so:system/lib64/libwfdclient.so \
vendor/asus/croissant/proprietary/lib64/libwfdnative.so:system/lib64/libwfdnative.so \
vendor/asus/croissant/proprietary/lib64/libxt_native.so:system/lib64/libxt_native.so \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/lib64/[email protected]:system/lib64/[email protected] \
vendor/asus/croissant/proprietary/vendor/app/AsusCamera/lib/arm/libasuscameraext_jpeg_hw_encoder.so:$(TARGET_COPY_OUT_VENDOR)/app/AsusCamera/lib/arm/libasuscameraext_jpeg_hw_encoder.so \
vendor/asus/croissant/proprietary/vendor/app/AsusCamera/oat/arm/AsusCamera.odex:$(TARGET_COPY_OUT_VENDOR)/app/AsusCamera/oat/arm/AsusCamera.odex \
vendor/asus/croissant/proprietary/vendor/app/AsusCamera/oat/arm/AsusCamera.vdex:$(TARGET_COPY_OUT_VENDOR)/app/AsusCamera/oat/arm/AsusCamera.vdex \
vendor/asus/croissant/proprietary/vendor/app/ConnectionSecurityService/oat/arm64/ConnectionSecurityService.odex:$(TARGET_COPY_OUT_VENDOR)/app/ConnectionSecurityService/oat/arm64/ConnectionSecurityService.odex \
vendor/asus/croissant/proprietary/vendor/app/ConnectionSecurityService/oat/arm64/ConnectionSecurityService.vdex:$(TARGET_COPY_OUT_VENDOR)/app/ConnectionSecurityService/oat/arm64/ConnectionSecurityService.vdex \
vendor/asus/croissant/proprietary/vendor/app/SSGTelemetryService/oat/arm64/SSGTelemetryService.odex:$(TARGET_COPY_OUT_VENDOR)/app/SSGTelemetryService/oat/arm64/SSGTelemetryService.odex \
vendor/asus/croissant/proprietary/vendor/app/SSGTelemetryService/oat/arm64/SSGTelemetryService.vdex:$(TARGET_COPY_OUT_VENDOR)/app/SSGTelemetryService/oat/arm64/SSGTelemetryService.vdex \
vendor/asus/croissant/proprietary/vendor/app/TimeService/oat/arm64/TimeService.odex:$(TARGET_COPY_OUT_VENDOR)/app/TimeService/oat/arm64/TimeService.odex \
vendor/asus/croissant/proprietary/vendor/app/TimeService/oat/arm64/TimeService.vdex:$(TARGET_COPY_OUT_VENDOR)/app/TimeService/oat/arm64/TimeService.vdex \
vendor/asus/croissant/proprietary/vendor/app/TrustZoneAccessService/oat/arm64/TrustZoneAccessService.odex:$(TARGET_COPY_OUT_VENDOR)/app/TrustZoneAccessService/oat/arm64/TrustZoneAccessService.odex \
vendor/asus/croissant/proprietary/vendor/app/TrustZoneAccessService/oat/arm64/TrustZoneAccessService.vdex:$(TARGET_COPY_OUT_VENDOR)/app/TrustZoneAccessService/oat/arm64/TrustZoneAccessService.vdex \
vendor/asus/croissant/proprietary/vendor/bin/ALSPS_sensor_module_number:$(TARGET_COPY_OUT_VENDOR)/bin/ALSPS_sensor_module_number \
vendor/asus/croissant/proprietary/vendor/bin/CameraModule:$(TARGET_COPY_OUT_VENDOR)/bin/CameraModule \
vendor/asus/croissant/proprietary/vendor/bin/CameraResolution:$(TARGET_COPY_OUT_VENDOR)/bin/CameraResolution \
vendor/asus/croissant/proprietary/vendor/bin/CameraTest:$(TARGET_COPY_OUT_VENDOR)/bin/CameraTest \
vendor/asus/croissant/proprietary/vendor/bin/Camera_EIS:$(TARGET_COPY_OUT_VENDOR)/bin/Camera_EIS \
vendor/asus/croissant/proprietary/vendor/bin/Camera_OIS:$(TARGET_COPY_OUT_VENDOR)/bin/Camera_OIS \
vendor/asus/croissant/proprietary/vendor/bin/Camera_OIS_GyroCal:$(TARGET_COPY_OUT_VENDOR)/bin/Camera_OIS_GyroCal \
vendor/asus/croissant/proprietary/vendor/bin/Camera_OIS_Power:$(TARGET_COPY_OUT_VENDOR)/bin/Camera_OIS_Power \
vendor/asus/croissant/proprietary/vendor/bin/Camera_OIS_Rdata:$(TARGET_COPY_OUT_VENDOR)/bin/Camera_OIS_Rdata \
vendor/asus/croissant/proprietary/vendor/bin/Camera_OIS_Read:$(TARGET_COPY_OUT_VENDOR)/bin/Camera_OIS_Read \
vendor/asus/croissant/proprietary/vendor/bin/Camera_OIS_Update_FW:$(TARGET_COPY_OUT_VENDOR)/bin/Camera_OIS_Update_FW \
vendor/asus/croissant/proprietary/vendor/bin/Camera_OIS_Write:$(TARGET_COPY_OUT_VENDOR)/bin/Camera_OIS_Write \
vendor/asus/croissant/proprietary/vendor/bin/Camera_YUV:$(TARGET_COPY_OUT_VENDOR)/bin/Camera_YUV \
vendor/asus/croissant/proprietary/vendor/bin/DR_AP_Service:$(TARGET_COPY_OUT_VENDOR)/bin/DR_AP_Service \
vendor/asus/croissant/proprietary/vendor/bin/DualCamera:$(TARGET_COPY_OUT_VENDOR)/bin/DualCamera \
vendor/asus/croissant/proprietary/vendor/bin/FrontRGB_status:$(TARGET_COPY_OUT_VENDOR)/bin/FrontRGB_status \
vendor/asus/croissant/proprietary/vendor/bin/KillMediaserver:$(TARGET_COPY_OUT_VENDOR)/bin/KillMediaserver \
vendor/asus/croissant/proprietary/vendor/bin/PktRspTest:$(TARGET_COPY_OUT_VENDOR)/bin/PktRspTest \
vendor/asus/croissant/proprietary/vendor/bin/ProximityCalibration:$(TARGET_COPY_OUT_VENDOR)/bin/ProximityCalibration \
vendor/asus/croissant/proprietary/vendor/bin/RGBSensor_cal:$(TARGET_COPY_OUT_VENDOR)/bin/RGBSensor_cal \
vendor/asus/croissant/proprietary/vendor/bin/RGBSensor_get_golden:$(TARGET_COPY_OUT_VENDOR)/bin/RGBSensor_get_golden \
vendor/asus/croissant/proprietary/vendor/bin/RGBSensor_value:$(TARGET_COPY_OUT_VENDOR)/bin/RGBSensor_value \
vendor/asus/croissant/proprietary/vendor/bin/ReceiverCalibration:$(TARGET_COPY_OUT_VENDOR)/bin/ReceiverCalibration \
vendor/asus/croissant/proprietary/vendor/bin/ScreenRefresh:$(TARGET_COPY_OUT_VENDOR)/bin/ScreenRefresh \
vendor/asus/croissant/proprietary/vendor/bin/SpeakerCalibration:$(TARGET_COPY_OUT_VENDOR)/bin/SpeakerCalibration \
vendor/asus/croissant/proprietary/vendor/bin/StoreKeybox:$(TARGET_COPY_OUT_VENDOR)/bin/StoreKeybox \
vendor/asus/croissant/proprietary/vendor/bin/ThermalAdspReset:$(TARGET_COPY_OUT_VENDOR)/bin/ThermalAdspReset \
vendor/asus/croissant/proprietary/vendor/bin/VerifyVouchers:$(TARGET_COPY_OUT_VENDOR)/bin/VerifyVouchers \
vendor/asus/croissant/proprietary/vendor/bin/adpl:$(TARGET_COPY_OUT_VENDOR)/bin/adpl \
vendor/asus/croissant/proprietary/vendor/bin/adsprpcd:$(TARGET_COPY_OUT_VENDOR)/bin/adsprpcd \
vendor/asus/croissant/proprietary/vendor/bin/athdiag:$(TARGET_COPY_OUT_VENDOR)/bin/athdiag \
vendor/asus/croissant/proprietary/vendor/bin/audioflacapp:$(TARGET_COPY_OUT_VENDOR)/bin/audioflacapp \
vendor/asus/croissant/proprietary/vendor/bin/btnvtool:$(TARGET_COPY_OUT_VENDOR)/bin/btnvtool \
vendor/asus/croissant/proprietary/vendor/bin/camera_flash:$(TARGET_COPY_OUT_VENDOR)/bin/camera_flash \
vendor/asus/croissant/proprietary/vendor/bin/camera_status:$(TARGET_COPY_OUT_VENDOR)/bin/camera_status \
vendor/asus/croissant/proprietary/vendor/bin/check_emmc_fw:$(TARGET_COPY_OUT_VENDOR)/bin/check_emmc_fw \
vendor/asus/croissant/proprietary/vendor/bin/check_emmc_fw_version:$(TARGET_COPY_OUT_VENDOR)/bin/check_emmc_fw_version \
vendor/asus/croissant/proprietary/vendor/bin/check_emmc_size:$(TARGET_COPY_OUT_VENDOR)/bin/check_emmc_size \
vendor/asus/croissant/proprietary/vendor/bin/check_emmc_status:$(TARGET_COPY_OUT_VENDOR)/bin/check_emmc_status \
vendor/asus/croissant/proprietary/vendor/bin/check_emmc_total_size:$(TARGET_COPY_OUT_VENDOR)/bin/check_emmc_total_size \
vendor/asus/croissant/proprietary/vendor/bin/cnd:$(TARGET_COPY_OUT_VENDOR)/bin/cnd \
vendor/asus/croissant/proprietary/vendor/bin/cnss-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/cnss-daemon \
vendor/asus/croissant/proprietary/vendor/bin/cnss_diag:$(TARGET_COPY_OUT_VENDOR)/bin/cnss_diag \
vendor/asus/croissant/proprietary/vendor/bin/diag_callback_sample:$(TARGET_COPY_OUT_VENDOR)/bin/diag_callback_sample \
vendor/asus/croissant/proprietary/vendor/bin/diag_dci_sample:$(TARGET_COPY_OUT_VENDOR)/bin/diag_dci_sample \
vendor/asus/croissant/proprietary/vendor/bin/diag_klog:$(TARGET_COPY_OUT_VENDOR)/bin/diag_klog \
vendor/asus/croissant/proprietary/vendor/bin/diag_mdlog:$(TARGET_COPY_OUT_VENDOR)/bin/diag_mdlog \
vendor/asus/croissant/proprietary/vendor/bin/diag_socket_log:$(TARGET_COPY_OUT_VENDOR)/bin/diag_socket_log \
vendor/asus/croissant/proprietary/vendor/bin/diag_uart_log:$(TARGET_COPY_OUT_VENDOR)/bin/diag_uart_log \
vendor/asus/croissant/proprietary/vendor/bin/dpmQmiMgr:$(TARGET_COPY_OUT_VENDOR)/bin/dpmQmiMgr \
vendor/asus/croissant/proprietary/vendor/bin/e_loop:$(TARGET_COPY_OUT_VENDOR)/bin/e_loop \
vendor/asus/croissant/proprietary/vendor/bin/energy-awareness:$(TARGET_COPY_OUT_VENDOR)/bin/energy-awareness \
vendor/asus/croissant/proprietary/vendor/bin/external_ISP_status:$(TARGET_COPY_OUT_VENDOR)/bin/external_ISP_status \
vendor/asus/croissant/proprietary/vendor/bin/fm_qsoc_patches:$(TARGET_COPY_OUT_VENDOR)/bin/fm_qsoc_patches \
vendor/asus/croissant/proprietary/vendor/bin/fmconfig:$(TARGET_COPY_OUT_VENDOR)/bin/fmconfig \
vendor/asus/croissant/proprietary/vendor/bin/fmfactorytest:$(TARGET_COPY_OUT_VENDOR)/bin/fmfactorytest \
vendor/asus/croissant/proprietary/vendor/bin/fmfactorytestserver:$(TARGET_COPY_OUT_VENDOR)/bin/fmfactorytestserver \
vendor/asus/croissant/proprietary/vendor/bin/fpseek:$(TARGET_COPY_OUT_VENDOR)/bin/fpseek \
vendor/asus/croissant/proprietary/vendor/bin/frgbsensor_calibration_data:$(TARGET_COPY_OUT_VENDOR)/bin/frgbsensor_calibration_data \
vendor/asus/croissant/proprietary/vendor/bin/frgbsensor_calibration_start:$(TARGET_COPY_OUT_VENDOR)/bin/frgbsensor_calibration_start \
vendor/asus/croissant/proprietary/vendor/bin/frgbsensor_get_div:$(TARGET_COPY_OUT_VENDOR)/bin/frgbsensor_get_div \
vendor/asus/croissant/proprietary/vendor/bin/frgbsensor_get_fcct:$(TARGET_COPY_OUT_VENDOR)/bin/frgbsensor_get_fcct \
vendor/asus/croissant/proprietary/vendor/bin/frgbsensor_get_raw:$(TARGET_COPY_OUT_VENDOR)/bin/frgbsensor_get_raw \
vendor/asus/croissant/proprietary/vendor/bin/fstman:$(TARGET_COPY_OUT_VENDOR)/bin/fstman \
vendor/asus/croissant/proprietary/vendor/bin/ftmdaemon:$(TARGET_COPY_OUT_VENDOR)/bin/ftmdaemon \
vendor/asus/croissant/proprietary/vendor/bin/ftmtest:$(TARGET_COPY_OUT_VENDOR)/bin/ftmtest \
vendor/asus/croissant/proprietary/vendor/bin/garden_app:$(TARGET_COPY_OUT_VENDOR)/bin/garden_app \
vendor/asus/croissant/proprietary/vendor/bin/gsensor_K_restore:$(TARGET_COPY_OUT_VENDOR)/bin/gsensor_K_restore \
vendor/asus/croissant/proprietary/vendor/bin/gsensor_calibration_data:$(TARGET_COPY_OUT_VENDOR)/bin/gsensor_calibration_data \
vendor/asus/croissant/proprietary/vendor/bin/gxFpDaemon:$(TARGET_COPY_OUT_VENDOR)/bin/gxFpDaemon \
vendor/asus/croissant/proprietary/vendor/bin/gx_fpcmd:$(TARGET_COPY_OUT_VENDOR)/bin/gx_fpcmd \
vendor/asus/croissant/proprietary/vendor/bin/hal_proxy_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/hal_proxy_daemon \
vendor/asus/croissant/proprietary/vendor/bin/hallsensor_status:$(TARGET_COPY_OUT_VENDOR)/bin/hallsensor_status \
vendor/asus/croissant/proprietary/vendor/bin/hbtp_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/hbtp_daemon \
vendor/asus/croissant/proprietary/vendor/bin/hci_qcomm_init:$(TARGET_COPY_OUT_VENDOR)/bin/hci_qcomm_init \
vendor/asus/croissant/proprietary/vendor/bin/hdcp1prov:$(TARGET_COPY_OUT_VENDOR)/bin/hdcp1prov \
vendor/asus/croissant/proprietary/vendor/bin/hdcp2p2prov:$(TARGET_COPY_OUT_VENDOR)/bin/hdcp2p2prov \
vendor/asus/croissant/proprietary/vendor/bin/hostapd_cmd:$(TARGET_COPY_OUT_VENDOR)/bin/hostapd_cmd \
vendor/asus/croissant/proprietary/vendor/bin/hvdcp_opti:$(TARGET_COPY_OUT_VENDOR)/bin/hvdcp_opti \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/qcrild:$(TARGET_COPY_OUT_VENDOR)/bin/hw/qcrild \
vendor/asus/croissant/proprietary/vendor/bin/hw/rild:$(TARGET_COPY_OUT_VENDOR)/bin/hw/rild \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/hw/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/hw/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/icm:$(TARGET_COPY_OUT_VENDOR)/bin/icm \
vendor/asus/croissant/proprietary/vendor/bin/ims_rtp_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/ims_rtp_daemon \
vendor/asus/croissant/proprietary/vendor/bin/imsdatadaemon:$(TARGET_COPY_OUT_VENDOR)/bin/imsdatadaemon \
vendor/asus/croissant/proprietary/vendor/bin/imsqmidaemon:$(TARGET_COPY_OUT_VENDOR)/bin/imsqmidaemon \
vendor/asus/croissant/proprietary/vendor/bin/imsrcsd:$(TARGET_COPY_OUT_VENDOR)/bin/imsrcsd \
vendor/asus/croissant/proprietary/vendor/bin/init.asus.thermal_conf.sh:$(TARGET_COPY_OUT_VENDOR)/bin/init.asus.thermal_conf.sh \
vendor/asus/croissant/proprietary/vendor/bin/ipacm-diag:$(TARGET_COPY_OUT_VENDOR)/bin/ipacm-diag \
vendor/asus/croissant/proprietary/vendor/bin/irsc_util:$(TARGET_COPY_OUT_VENDOR)/bin/irsc_util \
vendor/asus/croissant/proprietary/vendor/bin/is_hdcp_valid:$(TARGET_COPY_OUT_VENDOR)/bin/is_hdcp_valid \
vendor/asus/croissant/proprietary/vendor/bin/is_keybox_valid:$(TARGET_COPY_OUT_VENDOR)/bin/is_keybox_valid \
vendor/asus/croissant/proprietary/vendor/bin/is_keybox_valid_titan:$(TARGET_COPY_OUT_VENDOR)/bin/is_keybox_valid_titan \
vendor/asus/croissant/proprietary/vendor/bin/lightsensor_calibration_data:$(TARGET_COPY_OUT_VENDOR)/bin/lightsensor_calibration_data \
vendor/asus/croissant/proprietary/vendor/bin/lightsensor_calibration_start:$(TARGET_COPY_OUT_VENDOR)/bin/lightsensor_calibration_start \
vendor/asus/croissant/proprietary/vendor/bin/lightsensor_get_adc:$(TARGET_COPY_OUT_VENDOR)/bin/lightsensor_get_adc \
vendor/asus/croissant/proprietary/vendor/bin/lightsensor_selection:$(TARGET_COPY_OUT_VENDOR)/bin/lightsensor_selection \
vendor/asus/croissant/proprietary/vendor/bin/lightsensor_status:$(TARGET_COPY_OUT_VENDOR)/bin/lightsensor_status \
vendor/asus/croissant/proprietary/vendor/bin/loc_launcher:$(TARGET_COPY_OUT_VENDOR)/bin/loc_launcher \
vendor/asus/croissant/proprietary/vendor/bin/mlid:$(TARGET_COPY_OUT_VENDOR)/bin/mlid \
vendor/asus/croissant/proprietary/vendor/bin/mm-audio-ftm:$(TARGET_COPY_OUT_VENDOR)/bin/mm-audio-ftm \
vendor/asus/croissant/proprietary/vendor/bin/mm-qcamera-app:$(TARGET_COPY_OUT_VENDOR)/bin/mm-qcamera-app \
vendor/asus/croissant/proprietary/vendor/bin/mm-qjpeg-dec-test:$(TARGET_COPY_OUT_VENDOR)/bin/mm-qjpeg-dec-test \
vendor/asus/croissant/proprietary/vendor/bin/mm-qjpeg-enc-test:$(TARGET_COPY_OUT_VENDOR)/bin/mm-qjpeg-enc-test \
vendor/asus/croissant/proprietary/vendor/bin/mm-qomx-idec-test:$(TARGET_COPY_OUT_VENDOR)/bin/mm-qomx-idec-test \
vendor/asus/croissant/proprietary/vendor/bin/mm-qomx-ienc-test:$(TARGET_COPY_OUT_VENDOR)/bin/mm-qomx-ienc-test \
vendor/asus/croissant/proprietary/vendor/bin/mmid:$(TARGET_COPY_OUT_VENDOR)/bin/mmid \
vendor/asus/croissant/proprietary/vendor/bin/moduleid_read:$(TARGET_COPY_OUT_VENDOR)/bin/moduleid_read \
vendor/asus/croissant/proprietary/vendor/bin/msm_irqbalance:$(TARGET_COPY_OUT_VENDOR)/bin/msm_irqbalance \
vendor/asus/croissant/proprietary/vendor/bin/myftm:$(TARGET_COPY_OUT_VENDOR)/bin/myftm \
vendor/asus/croissant/proprietary/vendor/bin/netmgrd:$(TARGET_COPY_OUT_VENDOR)/bin/netmgrd \
vendor/asus/croissant/proprietary/vendor/bin/nqnfcinfo:$(TARGET_COPY_OUT_VENDOR)/bin/nqnfcinfo \
vendor/asus/croissant/proprietary/vendor/bin/pd-mapper:$(TARGET_COPY_OUT_VENDOR)/bin/pd-mapper \
vendor/asus/croissant/proprietary/vendor/bin/pktlogconf:$(TARGET_COPY_OUT_VENDOR)/bin/pktlogconf \
vendor/asus/croissant/proprietary/vendor/bin/pm-proxy:$(TARGET_COPY_OUT_VENDOR)/bin/pm-proxy \
vendor/asus/croissant/proprietary/vendor/bin/pm-service:$(TARGET_COPY_OUT_VENDOR)/bin/pm-service \
vendor/asus/croissant/proprietary/vendor/bin/port-bridge:$(TARGET_COPY_OUT_VENDOR)/bin/port-bridge \
vendor/asus/croissant/proprietary/vendor/bin/power_off_alarm:$(TARGET_COPY_OUT_VENDOR)/bin/power_off_alarm \
vendor/asus/croissant/proprietary/vendor/bin/proximity_calibration_data:$(TARGET_COPY_OUT_VENDOR)/bin/proximity_calibration_data \
vendor/asus/croissant/proprietary/vendor/bin/proximity_calibration_start:$(TARGET_COPY_OUT_VENDOR)/bin/proximity_calibration_start \
vendor/asus/croissant/proprietary/vendor/bin/proximity_get_proxm:$(TARGET_COPY_OUT_VENDOR)/bin/proximity_get_proxm \
vendor/asus/croissant/proprietary/vendor/bin/proximity_poll_get_proxm:$(TARGET_COPY_OUT_VENDOR)/bin/proximity_poll_get_proxm \
vendor/asus/croissant/proprietary/vendor/bin/proximity_selection:$(TARGET_COPY_OUT_VENDOR)/bin/proximity_selection \
vendor/asus/croissant/proprietary/vendor/bin/proximity_status:$(TARGET_COPY_OUT_VENDOR)/bin/proximity_status \
vendor/asus/croissant/proprietary/vendor/bin/qcfwver:$(TARGET_COPY_OUT_VENDOR)/bin/qcfwver \
vendor/asus/croissant/proprietary/vendor/bin/qjpeg-dma-test:$(TARGET_COPY_OUT_VENDOR)/bin/qjpeg-dma-test \
vendor/asus/croissant/proprietary/vendor/bin/qrtr-cfg:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-cfg \
vendor/asus/croissant/proprietary/vendor/bin/qrtr-lookup:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-lookup \
vendor/asus/croissant/proprietary/vendor/bin/qrtr-ns:$(TARGET_COPY_OUT_VENDOR)/bin/qrtr-ns \
vendor/asus/croissant/proprietary/vendor/bin/qseecom_sample_client:$(TARGET_COPY_OUT_VENDOR)/bin/qseecom_sample_client \
vendor/asus/croissant/proprietary/vendor/bin/qseecomd:$(TARGET_COPY_OUT_VENDOR)/bin/qseecomd \
vendor/asus/croissant/proprietary/vendor/bin/qti:$(TARGET_COPY_OUT_VENDOR)/bin/qti \
vendor/asus/croissant/proprietary/vendor/bin/rgb_ittest:$(TARGET_COPY_OUT_VENDOR)/bin/rgb_ittest \
vendor/asus/croissant/proprietary/vendor/bin/rmt_storage:$(TARGET_COPY_OUT_VENDOR)/bin/rmt_storage \
vendor/asus/croissant/proprietary/vendor/bin/sar_setting:$(TARGET_COPY_OUT_VENDOR)/bin/sar_setting \
vendor/asus/croissant/proprietary/vendor/bin/sensors.qti:$(TARGET_COPY_OUT_VENDOR)/bin/sensors.qti \
vendor/asus/croissant/proprietary/vendor/bin/sigma_dut:$(TARGET_COPY_OUT_VENDOR)/bin/sigma_dut \
vendor/asus/croissant/proprietary/vendor/bin/slim_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/slim_daemon \
vendor/asus/croissant/proprietary/vendor/bin/sns_dump_pm:$(TARGET_COPY_OUT_VENDOR)/bin/sns_dump_pm \
vendor/asus/croissant/proprietary/vendor/bin/sns_dump_request:$(TARGET_COPY_OUT_VENDOR)/bin/sns_dump_request \
vendor/asus/croissant/proprietary/vendor/bin/sns_restart:$(TARGET_COPY_OUT_VENDOR)/bin/sns_restart \
vendor/asus/croissant/proprietary/vendor/bin/spectraltool:$(TARGET_COPY_OUT_VENDOR)/bin/spectraltool \
vendor/asus/croissant/proprietary/vendor/bin/ssgqmigd:$(TARGET_COPY_OUT_VENDOR)/bin/ssgqmigd \
vendor/asus/croissant/proprietary/vendor/bin/ssgtzd:$(TARGET_COPY_OUT_VENDOR)/bin/ssgtzd \
vendor/asus/croissant/proprietary/vendor/bin/ssn:$(TARGET_COPY_OUT_VENDOR)/bin/ssn \
vendor/asus/croissant/proprietary/vendor/bin/ssr_cfg.sh:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_cfg.sh \
vendor/asus/croissant/proprietary/vendor/bin/ssr_diag:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_diag \
vendor/asus/croissant/proprietary/vendor/bin/ssr_setup:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_setup \
vendor/asus/croissant/proprietary/vendor/bin/ssr_ui.sh:$(TARGET_COPY_OUT_VENDOR)/bin/ssr_ui.sh \
vendor/asus/croissant/proprietary/vendor/bin/subsystem_ramdump:$(TARGET_COPY_OUT_VENDOR)/bin/subsystem_ramdump \
vendor/asus/croissant/proprietary/vendor/bin/tbaseLoader:$(TARGET_COPY_OUT_VENDOR)/bin/tbaseLoader \
vendor/asus/croissant/proprietary/vendor/bin/test_diag:$(TARGET_COPY_OUT_VENDOR)/bin/test_diag \
vendor/asus/croissant/proprietary/vendor/bin/test_module_pproc:$(TARGET_COPY_OUT_VENDOR)/bin/test_module_pproc \
vendor/asus/croissant/proprietary/vendor/bin/tftp_server:$(TARGET_COPY_OUT_VENDOR)/bin/tftp_server \
vendor/asus/croissant/proprietary/vendor/bin/thermal-engine:$(TARGET_COPY_OUT_VENDOR)/bin/thermal-engine \
vendor/asus/croissant/proprietary/vendor/bin/thermalAtdTool:$(TARGET_COPY_OUT_VENDOR)/bin/thermalAtdTool \
vendor/asus/croissant/proprietary/vendor/bin/time_daemon:$(TARGET_COPY_OUT_VENDOR)/bin/time_daemon \
vendor/asus/croissant/proprietary/vendor/bin/[email protected]:$(TARGET_COPY_OUT_VENDOR)/bin/[email protected] \
vendor/asus/croissant/proprietary/vendor/bin/vendor_cmd_tool:$(TARGET_COPY_OUT_VENDOR)/bin/vendor_cmd_tool \
vendor/asus/croissant/proprietary/vendor/bin/vga_status:$(TARGET_COPY_OUT_VENDOR)/bin/vga_status \
vendor/asus/croissant/proprietary/vendor/bin/wcnss_filter:$(TARGET_COPY_OUT_VENDOR)/bin/wcnss_filter \
vendor/asus/croissant/proprietary/vendor/bin/wdsdaemon:$(TARGET_COPY_OUT_VENDOR)/bin/wdsdaemon \
vendor/asus/croissant/proprietary/vendor/bin/wifidisplayhalservice:$(TARGET_COPY_OUT_VENDOR)/bin/wifidisplayhalservice \
vendor/asus/croissant/proprietary/vendor/bin/wigighalsvc:$(TARGET_COPY_OUT_VENDOR)/bin/wigighalsvc \
vendor/asus/croissant/proprietary/vendor/bin/wigignpt:$(TARGET_COPY_OUT_VENDOR)/bin/wigignpt \
vendor/asus/croissant/proprietary/vendor/bin/writekey:$(TARGET_COPY_OUT_VENDOR)/bin/writekey \
vendor/asus/croissant/proprietary/vendor/bin/xtra-daemon:$(TARGET_COPY_OUT_VENDOR)/bin/xtra-daemon \
vendor/asus/croissant/proprietary/vendor/camera_sound/self_timer.ogg:$(TARGET_COPY_OUT_VENDOR)/camera_sound/self_timer.ogg \
vendor/asus/croissant/proprietary/vendor/camera_sound/self_timer_fast.ogg:$(TARGET_COPY_OUT_VENDOR)/camera_sound/self_timer_fast.ogg \
vendor/asus/croissant/proprietary/vendor/camera_sound/self_timer_fast_jp.ogg:$(TARGET_COPY_OUT_VENDOR)/camera_sound/self_timer_fast_jp.ogg \
vendor/asus/croissant/proprietary/vendor/camera_sound/self_timer_jp.ogg:$(TARGET_COPY_OUT_VENDOR)/camera_sound/self_timer_jp.ogg \
vendor/asus/croissant/proprietary/vendor/camera_sound/silence.ogg:$(TARGET_COPY_OUT_VENDOR)/camera_sound/silence.ogg \
vendor/asus/croissant/proprietary/vendor/etc/BR/TIM_BR/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/BR/TIM_BR/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/BR/TIM_BR/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/BR/TIM_BR/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/DIT_init.sh:$(TARGET_COPY_OUT_VENDOR)/etc/DIT_init.sh \
vendor/asus/croissant/proprietary/vendor/etc/Generic/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/Generic/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/Generic/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/Generic/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/ID/ASUS/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ID/ASUS/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/ID/ASUS/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ID/ASUS/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/IN/ASUS/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/IN/ASUS/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/IN/ASUS/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/IN/ASUS/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/JP/ACJ/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/JP/ACJ/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/JP/ACJ/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/JP/ACJ/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/RU/ASUS/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/RU/ASUS/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/RU/ASUS/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/RU/ASUS/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/Splendid/LUT/LUT_Rd03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/Splendid/LUT/LUT_Rd03.txt \
vendor/asus/croissant/proprietary/vendor/etc/Splendid/asussplendid_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/Splendid/asussplendid_config.xml \
vendor/asus/croissant/proprietary/vendor/etc/Storage_Benchmark.sh:$(TARGET_COPY_OUT_VENDOR)/etc/Storage_Benchmark.sh \
vendor/asus/croissant/proprietary/vendor/etc/TW/APTG/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/TW/APTG/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/TW/APTG/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/TW/APTG/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/TW/ASUS/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/TW/ASUS/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/TW/ASUS/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/TW/ASUS/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/US/ASUS/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/US/ASUS/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/US/ASUS/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/US/ASUS/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/ASUS/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/ASUS/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/ASUS/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/ASUS/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/H3G/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/H3G/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/H3G/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/H3G/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/SINGTEL/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/SINGTEL/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/SINGTEL/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/SINGTEL/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/TIM/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/TIM/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/TIM/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/TIM/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/VF_IT/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/VF_IT/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/VF_IT/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/VF_IT/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/WIND/Launcher/default_workspace/default_allapp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/WIND/Launcher/default_workspace/default_allapp.xml \
vendor/asus/croissant/proprietary/vendor/etc/WW/WIND/Launcher/default_workspace/phone_workspace.xml:$(TARGET_COPY_OUT_VENDOR)/etc/WW/WIND/Launcher/default_workspace/phone_workspace.xml \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/MTP_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Bluetooth_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/MTP_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_General_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/MTP_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Global_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/MTP_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Handset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/MTP_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Hdmi_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/MTP_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Headset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/MTP_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_Speaker_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/MTP_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/MTP_workspaceFile.qwsp \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Bluetooth_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Codec_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_General_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Global_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Handset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Hdmi_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Headset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_Speaker_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/MTP/sdm660-tavil-snd-card/MTP_WCD9340_workspaceFile.qwsp \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/QRD_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Bluetooth_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/QRD_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_General_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/QRD_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Global_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/QRD_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Handset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/QRD_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Hdmi_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/QRD_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Headset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/QRD_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Speaker_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/QRD_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_workspaceFile.qwsp \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Bluetooth_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_General_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Global_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Handset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Hdmi_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Headset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_Speaker_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-snd-card-skush/QRD_SKUSH_workspaceFile.qwsp \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Bluetooth_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_General_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Global_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Handset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Hdmi_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Headset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_Speaker_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/sdm660-tasha-skus-snd-card/QRD_SKUS_workspaceFile.qwsp \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/ZE554KL/ZE554KL_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/ZE554KL/ZE554KL_Bluetooth_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/ZE554KL/ZE554KL_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/ZE554KL/ZE554KL_General_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/ZE554KL/ZE554KL_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/ZE554KL/ZE554KL_Global_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/ZE554KL/ZE554KL_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/ZE554KL/ZE554KL_Handset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/ZE554KL/ZE554KL_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/ZE554KL/ZE554KL_Hdmi_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/ZE554KL/ZE554KL_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/ZE554KL/ZE554KL_Headset_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/ZE554KL/ZE554KL_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/ZE554KL/ZE554KL_Speaker_cal.acdb \
vendor/asus/croissant/proprietary/vendor/etc/acdbdata/ZE554KL/ZE554KL_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/ZE554KL/ZE554KL_workspaceFile.qwsp \
vendor/asus/croissant/proprietary/vendor/etc/audio/tfa9891_0x34.cnt:$(TARGET_COPY_OUT_VENDOR)/etc/audio/tfa9891_0x34.cnt \
vendor/asus/croissant/proprietary/vendor/etc/audio/tfa9896_0x35.cnt:$(TARGET_COPY_OUT_VENDOR)/etc/audio/tfa9896_0x35.cnt \
vendor/asus/croissant/proprietary/vendor/etc/audio/tfa9896_0x35_24bit.cnt:$(TARGET_COPY_OUT_VENDOR)/etc/audio/tfa9896_0x35_24bit.cnt \
vendor/asus/croissant/proprietary/vendor/etc/bspcapability.xml:$(TARGET_COPY_OUT_VENDOR)/etc/bspcapability.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/Invensense/vstab_db_1080p_video_0.config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/Invensense/vstab_db_1080p_video_0.config \
vendor/asus/croissant/proprietary/vendor/etc/camera/Invensense/vstab_db_1080p_video_1.config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/Invensense/vstab_db_1080p_video_1.config \
vendor/asus/croissant/proprietary/vendor/etc/camera/Invensense/vstab_db_1080p_video_2.config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/Invensense/vstab_db_1080p_video_2.config \
vendor/asus/croissant/proprietary/vendor/etc/camera/Invensense/vstab_db_480p_video_0.config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/Invensense/vstab_db_480p_video_0.config \
vendor/asus/croissant/proprietary/vendor/etc/camera/Invensense/vstab_db_480p_video_1.config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/Invensense/vstab_db_480p_video_1.config \
vendor/asus/croissant/proprietary/vendor/etc/camera/Invensense/vstab_db_480p_video_2.config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/Invensense/vstab_db_480p_video_2.config \
vendor/asus/croissant/proprietary/vendor/etc/camera/Invensense/vstab_db_720p_video_0.config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/Invensense/vstab_db_720p_video_0.config \
vendor/asus/croissant/proprietary/vendor/etc/camera/Invensense/vstab_db_720p_video_1.config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/Invensense/vstab_db_720p_video_1.config \
vendor/asus/croissant/proprietary/vendor/etc/camera/Invensense/vstab_db_720p_video_2.config:$(TARGET_COPY_OUT_VENDOR)/etc/camera/Invensense/vstab_db_720p_video_2.config \
vendor/asus/croissant/proprietary/vendor/etc/camera/camera_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/camera_config.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/csidtg_camera.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/csidtg_camera.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/csidtg_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/csidtg_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx214_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx214_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx230_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx230_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx230_qc2002_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx230_qc2002_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx230_qc2002_with_gyro_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx230_qc2002_with_gyro_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx258_bear_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx258_bear_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx258_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx258_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx258_lc898217xc_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx258_lc898217xc_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx258_mono_bear_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx258_mono_bear_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx258_mono_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx258_mono_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx298_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx298_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx298_gt24c64_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx298_gt24c64_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx318_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx318_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx362_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx362_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx362_chromatix_bear.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx362_chromatix_bear.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx362_gt24c64a_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx362_gt24c64a_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx363_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx363_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx376_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx376_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/imx378_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/imx378_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov12a10_bear_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov12a10_bear_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov12a10_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov12a10_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov13850_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov13850_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov13850_q13v06k_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov13850_q13v06k_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov13855_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov13855_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov13880_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov13880_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov2281_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov2281_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov2680_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov2680_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov4688_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov4688_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov5670_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov5670_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov5670_f5670bq_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov5670_f5670bq_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov5695_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov5695_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov7251_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov7251_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov8856_back_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov8856_back_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov8856_front_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov8856_front_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov8858_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov8858_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/ov8865_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/ov8865_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k2l7_8953_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k2l7_8953_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k2l7_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k2l7_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k2l7sx_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k2l7sx_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k3l8_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3l8_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k3l8_f3l8yam_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3l8_f3l8yam_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k3l8_mono_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3l8_mono_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k3m2xm_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3m2xm_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k3m2xm_chromatix_bear.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3m2xm_chromatix_bear.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k3m2xx_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3m2xx_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k3m3sm_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3m3sm_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k3p3sm_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3p3sm_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/camera/s5k3p8sp_chromatix.xml:$(TARGET_COPY_OUT_VENDOR)/etc/camera/s5k3p8sp_chromatix.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile1.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile2.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile3.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile4.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile5.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ATT/ATT_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ATT/ATT_profile6.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile1.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile15.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile15.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile16.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile16.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile17.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile17.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile18.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile18.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile19.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile19.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile2.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile20.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile20.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile21.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile21.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile3.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile32.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile32.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile4.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile5.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile6.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/ROW/ROW_profile7.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/ROW/ROW_profile7.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile1.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile2.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile3.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile4.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile4.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile5.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile5.xml \
vendor/asus/croissant/proprietary/vendor/etc/cne/wqeclient/VZW/VZW_profile6.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cne/wqeclient/VZW/VZW_profile6.xml \
vendor/asus/croissant/proprietary/vendor/etc/collectfplog.sh:$(TARGET_COPY_OUT_VENDOR)/etc/collectfplog.sh \
vendor/asus/croissant/proprietary/vendor/etc/csc/erase_batinfo.cmd:$(TARGET_COPY_OUT_VENDOR)/etc/csc/erase_batinfo.cmd \
vendor/asus/croissant/proprietary/vendor/etc/csc/flash_batinfo.cmd:$(TARGET_COPY_OUT_VENDOR)/etc/csc/flash_batinfo.cmd \
vendor/asus/croissant/proprietary/vendor/etc/data/dsi_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/data/dsi_config.xml \
vendor/asus/croissant/proprietary/vendor/etc/data/netmgr_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/data/netmgr_config.xml \
vendor/asus/croissant/proprietary/vendor/etc/debug_info.sh:$(TARGET_COPY_OUT_VENDOR)/etc/debug_info.sh \
vendor/asus/croissant/proprietary/vendor/etc/devcfg_630_tzOn.mbn:$(TARGET_COPY_OUT_VENDOR)/etc/devcfg_630_tzOn.mbn \
vendor/asus/croissant/proprietary/vendor/etc/devcfg_660_tzOn.mbn:$(TARGET_COPY_OUT_VENDOR)/etc/devcfg_660_tzOn.mbn \
vendor/asus/croissant/proprietary/vendor/etc/dts/GEQ_configs:$(TARGET_COPY_OUT_VENDOR)/etc/dts/GEQ_configs \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/d30de3a0-b177-4822-9c15-816b79545f82_usb_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/d30de3a0-b177-4822-9c15-816b79545f82_usb_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/d30de3a0-b177-4822-9c15-816b79545f82_usb_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/d30de3a0-b177-4822-9c15-816b79545f82_usb_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a11_bt_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a11_bt_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a11_bt_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a11_bt_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a11_usb_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a11_usb_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a11_usb_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a11_usb_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a11_wh_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a11_wh_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a12_bt_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a12_bt_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a12_bt_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a12_bt_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a12_usb_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a12_usb_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a12_usb_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a12_usb_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a12_wh_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a12_wh_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a13_bt_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a13_bt_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a13_bt_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a13_bt_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a13_usb_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a13_usb_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a13_usb_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a13_usb_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a13_wh_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a13_wh_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a14_bt_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a14_bt_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a14_bt_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a14_bt_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a14_usb_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a14_usb_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a14_usb_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a14_usb_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a14_wh_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a14_wh_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a15_bt_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a15_bt_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a15_bt_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a15_bt_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a15_usb_44.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a15_usb_44.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a15_usb_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a15_usb_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a15_wh_48.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dts/acc/f08a4c48-0887-11e4-9191-0800200c9a15_wh_48.bin \
vendor/asus/croissant/proprietary/vendor/etc/dts/current_bluetooth44k:$(TARGET_COPY_OUT_VENDOR)/etc/dts/current_bluetooth44k \
vendor/asus/croissant/proprietary/vendor/etc/dts/current_bluetooth48k:$(TARGET_COPY_OUT_VENDOR)/etc/dts/current_bluetooth48k \
vendor/asus/croissant/proprietary/vendor/etc/dts/current_lineout:$(TARGET_COPY_OUT_VENDOR)/etc/dts/current_lineout \
vendor/asus/croissant/proprietary/vendor/etc/dts/current_lineout48k:$(TARGET_COPY_OUT_VENDOR)/etc/dts/current_lineout48k \
vendor/asus/croissant/proprietary/vendor/etc/dts/current_speaker48k:$(TARGET_COPY_OUT_VENDOR)/etc/dts/current_speaker48k \
vendor/asus/croissant/proprietary/vendor/etc/dts/current_speaker_off:$(TARGET_COPY_OUT_VENDOR)/etc/dts/current_speaker_off \
vendor/asus/croissant/proprietary/vendor/etc/dts/current_speaker_on:$(TARGET_COPY_OUT_VENDOR)/etc/dts/current_speaker_on \
vendor/asus/croissant/proprietary/vendor/etc/dts/current_usb44k:$(TARGET_COPY_OUT_VENDOR)/etc/dts/current_usb44k \
vendor/asus/croissant/proprietary/vendor/etc/dts/current_usb48k:$(TARGET_COPY_OUT_VENDOR)/etc/dts/current_usb48k \
vendor/asus/croissant/proprietary/vendor/etc/dts/default_config:$(TARGET_COPY_OUT_VENDOR)/etc/dts/default_config \
vendor/asus/croissant/proprietary/vendor/etc/dts/default_speaker48:$(TARGET_COPY_OUT_VENDOR)/etc/dts/default_speaker48 \
vendor/asus/croissant/proprietary/vendor/etc/dts/dts-m6m8-lic.key:$(TARGET_COPY_OUT_VENDOR)/etc/dts/dts-m6m8-lic.key \
vendor/asus/croissant/proprietary/vendor/etc/dts/mode1_speaker48:$(TARGET_COPY_OUT_VENDOR)/etc/dts/mode1_speaker48 \
vendor/asus/croissant/proprietary/vendor/etc/dts/mode2_speaker48:$(TARGET_COPY_OUT_VENDOR)/etc/dts/mode2_speaker48 \
vendor/asus/croissant/proprietary/vendor/etc/dts/mode3_speaker48:$(TARGET_COPY_OUT_VENDOR)/etc/dts/mode3_speaker48 \
vendor/asus/croissant/proprietary/vendor/etc/dts/mode4_speaker48:$(TARGET_COPY_OUT_VENDOR)/etc/dts/mode4_speaker48 \
vendor/asus/croissant/proprietary/vendor/etc/dts/off_speaker48:$(TARGET_COPY_OUT_VENDOR)/etc/dts/off_speaker48 \
vendor/asus/croissant/proprietary/vendor/etc/dts/offline_hptuning.db:$(TARGET_COPY_OUT_VENDOR)/etc/dts/offline_hptuning.db \
vendor/asus/croissant/proprietary/vendor/etc/firmware/Phone_vivid.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/Phone_vivid.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp630.b00:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp630.b00 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp630.b01:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp630.b01 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp630.b02:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp630.b02 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp630.b03:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp630.b03 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp630.b04:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp630.b04 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp630.b05:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp630.b05 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp630.b06:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp630.b06 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp630.b07:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp630.b07 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp630.mdt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp630.mdt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp660.b00:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp660.b00 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp660.b01:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp660.b01 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp660.b02:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp660.b02 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp660.b03:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp660.b03 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp660.b04:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp660.b04 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp660.b05:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp660.b05 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp660.b06:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp660.b06 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp660.b07:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp660.b07 \
vendor/asus/croissant/proprietary/vendor/etc/firmware/goodixfp660.mdt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/goodixfp660.mdt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_C23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_C23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_DEF.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_DEF.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCC23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCC23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCDEF.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCDEF.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMCW23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMCW23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPC23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPC23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPDEF.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPDEF.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPRd01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPRd01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPRd02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPRd02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPRd03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPRd03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPRdStrong.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPRdStrong.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPRdWeak.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPRdWeak.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMPW23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMPW23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVC23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVC23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVDEF.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVDEF.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_GMVW23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_GMVW23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_RST.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_RST.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_Rd01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_Rd01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_Rd02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_Rd02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_Rd03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_Rd03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_RdStrong.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_RdStrong.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_RdWeak.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_RdWeak.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/BOE/LUT_W23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/BOE/LUT_W23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_C23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_C23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_DEF.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_DEF.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCC23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCC23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCDEF.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCDEF.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMCW23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMCW23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPC23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPC23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPDEF.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPDEF.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPRd01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPRd01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPRd02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPRd02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPRd03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPRd03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPRdStrong.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPRdStrong.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPRdWeak.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPRdWeak.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMPW23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMPW23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC03.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC04.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC04.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC05.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC05.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC06.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC06.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC07.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC07.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC08.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC08.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC09.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC09.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC10.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC10.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC11.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC11.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC12.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC12.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC13.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC13.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC14.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC14.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC15.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC15.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC16.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC16.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC17.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC17.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC18.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC18.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC19.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC19.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC20.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC20.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC21.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC21.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC22.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC22.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVC23.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVC23.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVDEF.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVDEF.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVW01.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVW01.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVW02.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVW02.txt \
vendor/asus/croissant/proprietary/vendor/etc/firmware/phone_ct/TM/LUT_GMVW03.txt:$(TARGET_COPY_OUT_VENDOR)/etc/firmware/phone_ct/TM/LUT_GMVW03.txt \