aboutsummaryrefslogtreecommitdiff
path: root/windows_x86_64.cmake
blob: 36c95d46417408f52dcf2d70823fe7278f1e586f (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
# Generated on 06/23/21 for target: Windows
# This is an autogenerated file by calling:

# ./import-webrtc.py --target webrtc_api_video_codecs_builtin_video_decoder_factory --target webrtc_api_video_codecs_builtin_video_encoder_factory --target webrtc_api_libjingle_peerconnection_api --target webrtc_pc_peerconnection --target webrtc_api_create_peerconnection_factory --target webrtc_api_audio_codecs_builtin_audio_decoder_factory --target webrtc_api_audio_codecs_builtin_audio_encoder_factory --target webrtc_common_audio_common_audio_unittests --target webrtc_common_video_common_video_unittests --target webrtc_media_rtc_media_unittests --target webrtc_modules_audio_coding_audio_decoder_unittests --target webrtc_pc_peerconnection_unittests --target webrtc_pc_rtc_pc_unittests --root /usr/local/google/home/jansene/src/webrtc_g3/ --platform Windows BUILD .

# Re-running this script will require you to merge in the latest upstream-master for webrtc

# Expecting jsoncpp  at 9059f5cad030ba11d37818847443a53918c327b1
# Expecting libaom  at 12287adee94fc3b1f5349d3f4bd85cea4e57f62b
# Expecting libsrtp2  at 5b7c744eb8310250ccc534f3f86a2015b3887a0a
# Expecting libvpx  at 61edec1efbea1c02d71857e2aff9426d9cd2df4e
# Expecting libyuv  at 49ebc996aa8c4bdf89c1b5ea461eb677234c61cc
# Expecting usrsctp  at 22ba62ffe79c3881581ab430368bf3764d9533eb



# Create a symlink so webrtc can find required includes, we already have all
# the required dependencies in our tree.
message("Creating webrtc test symlinks ${CMAKE_CURRENT_BINARY_DIR}/testing/")
android_symlink("${AOSP_ROOT}/external/googletest/googletest/" "gtest" ${CMAKE_CURRENT_BINARY_DIR}/testing)
android_symlink("${AOSP_ROOT}/external/googletest/googlemock/" "gmock" ${CMAKE_CURRENT_BINARY_DIR}/testing)

# ==== Generated modules are coming next ====
    
# api/adaptation:resource_adaptation_api
add_library(webrtc_api_adaptation_resource_adaptation_api ${WEBRTC_ROOT}/api/adaptation/resource.cc)
target_include_directories(webrtc_api_adaptation_resource_adaptation_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_adaptation_resource_adaptation_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_adaptation_resource_adaptation_api PRIVATE -GR-)
target_link_libraries(webrtc_api_adaptation_resource_adaptation_api PUBLIC webrtc_api_scoped_refptr webrtc_rtc_base_checks webrtc_rtc_base_refcount webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/adaptation:resource_adaptation_api.headers
add_library(webrtc_api_adaptation_resource_adaptation_api.headers INTERFACE)
target_link_libraries(webrtc_api_adaptation_resource_adaptation_api.headers INTERFACE webrtc_api_scoped_refptr.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_refcount.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_adaptation_resource_adaptation_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:array_view
add_library(webrtc_api_array_view INTERFACE)
target_link_libraries(webrtc_api_array_view INTERFACE webrtc_rtc_base_checks webrtc_rtc_base_type_traits )
target_include_directories(webrtc_api_array_view INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:array_view.headers
add_library(webrtc_api_array_view.headers INTERFACE)
target_link_libraries(webrtc_api_array_view.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_type_traits.headers )
target_include_directories(webrtc_api_array_view.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:async_dns_resolver
add_library(webrtc_api_async_dns_resolver INTERFACE)
target_link_libraries(webrtc_api_async_dns_resolver INTERFACE webrtc_rtc_base_socket_address webrtc_rtc_base_system_rtc_export )
target_include_directories(webrtc_api_async_dns_resolver INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:async_dns_resolver.headers
add_library(webrtc_api_async_dns_resolver.headers INTERFACE)
target_link_libraries(webrtc_api_async_dns_resolver.headers INTERFACE webrtc_rtc_base_socket_address.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_async_dns_resolver.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio:aec3_config
add_library(webrtc_api_audio_aec3_config ${WEBRTC_ROOT}/api/audio/echo_canceller3_config.cc)
target_include_directories(webrtc_api_audio_aec3_config PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_aec3_config PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_aec3_config PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_aec3_config PUBLIC webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_rtc_base_system_rtc_export )

# api/audio:aec3_config.headers
add_library(webrtc_api_audio_aec3_config.headers INTERFACE)
target_link_libraries(webrtc_api_audio_aec3_config.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_safe_minmax.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_audio_aec3_config.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio:aec3_factory
add_library(webrtc_api_audio_aec3_factory ${WEBRTC_ROOT}/api/audio/echo_canceller3_factory.cc)
target_include_directories(webrtc_api_audio_aec3_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_aec3_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_aec3_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_aec3_factory PUBLIC webrtc_api_audio_aec3_config webrtc_api_audio_echo_control webrtc_modules_audio_processing_aec3_aec3 webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio:audio_frame_api
add_library(webrtc_api_audio_audio_frame_api ${WEBRTC_ROOT}/api/audio/audio_frame.cc ${WEBRTC_ROOT}/api/audio/channel_layout.cc)
target_include_directories(webrtc_api_audio_audio_frame_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_audio_frame_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_audio_frame_api PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_audio_frame_api PUBLIC webrtc_api_rtp_packet_info webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# api/audio:audio_frame_api.headers
add_library(webrtc_api_audio_audio_frame_api.headers INTERFACE)
target_link_libraries(webrtc_api_audio_audio_frame_api.headers INTERFACE webrtc_api_rtp_packet_info.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_api_audio_audio_frame_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio:audio_frame_processor
add_library(webrtc_api_audio_audio_frame_processor INTERFACE)
target_include_directories(webrtc_api_audio_audio_frame_processor INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio:audio_frame_processor.headers
add_library(webrtc_api_audio_audio_frame_processor.headers INTERFACE)
target_include_directories(webrtc_api_audio_audio_frame_processor.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio:audio_mixer_api
add_library(webrtc_api_audio_audio_mixer_api INTERFACE)
target_link_libraries(webrtc_api_audio_audio_mixer_api INTERFACE webrtc_api_audio_audio_frame_api webrtc_rtc_base_rtc_base_approved )
target_include_directories(webrtc_api_audio_audio_mixer_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio:audio_mixer_api.headers
add_library(webrtc_api_audio_audio_mixer_api.headers INTERFACE)
target_link_libraries(webrtc_api_audio_audio_mixer_api.headers INTERFACE webrtc_api_audio_audio_frame_api.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_api_audio_audio_mixer_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio_codecs/L16:audio_decoder_L16
add_library(webrtc_api_audio_codecs_L16_audio_decoder_L16 ${WEBRTC_ROOT}/api/audio_codecs/L16/audio_decoder_L16.cc)
target_include_directories(webrtc_api_audio_codecs_L16_audio_decoder_L16 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_L16_audio_decoder_L16 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_L16_audio_decoder_L16 PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_L16_audio_decoder_L16 PUBLIC absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_audio_coding_pcm16b webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio_codecs/L16:audio_encoder_L16
add_library(webrtc_api_audio_codecs_L16_audio_encoder_L16 ${WEBRTC_ROOT}/api/audio_codecs/L16/audio_encoder_L16.cc)
target_include_directories(webrtc_api_audio_codecs_L16_audio_encoder_L16 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_L16_audio_encoder_L16 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_L16_audio_encoder_L16 PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_L16_audio_encoder_L16 PUBLIC absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_audio_coding_pcm16b webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_rtc_base_system_rtc_export )

# api/audio_codecs:audio_codecs_api
add_library(webrtc_api_audio_codecs_audio_codecs_api ${WEBRTC_ROOT}/api/audio_codecs/audio_codec_pair_id.cc ${WEBRTC_ROOT}/api/audio_codecs/audio_decoder.cc ${WEBRTC_ROOT}/api/audio_codecs/audio_encoder.cc ${WEBRTC_ROOT}/api/audio_codecs/audio_format.cc)
target_include_directories(webrtc_api_audio_codecs_audio_codecs_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_audio_codecs_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_audio_codecs_api PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_audio_codecs_api PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_api_bitrate_allocation webrtc_api_scoped_refptr webrtc_api_units_time_delta webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_sanitizer webrtc_rtc_base_system_rtc_export )

# api/audio_codecs:audio_codecs_api.headers
add_library(webrtc_api_audio_codecs_audio_codecs_api.headers INTERFACE)
target_link_libraries(webrtc_api_audio_codecs_audio_codecs_api.headers INTERFACE webrtc_api_array_view.headers webrtc_api_bitrate_allocation.headers webrtc_api_scoped_refptr.headers webrtc_api_units_time_delta.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_sanitizer.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_audio_codecs_audio_codecs_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio_codecs:builtin_audio_decoder_factory
add_library(webrtc_api_audio_codecs_builtin_audio_decoder_factory ${WEBRTC_ROOT}/api/audio_codecs/builtin_audio_decoder_factory.cc)
target_include_directories(webrtc_api_audio_codecs_builtin_audio_decoder_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_builtin_audio_decoder_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_USE_BUILTIN_ISAC_FIX=0 WEBRTC_USE_BUILTIN_ISAC_FLOAT=1 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_USE_BUILTIN_ILBC=0 WEBRTC_USE_BUILTIN_OPUS=1)
target_compile_options(webrtc_api_audio_codecs_builtin_audio_decoder_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_builtin_audio_decoder_factory PUBLIC webrtc_api_scoped_refptr webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_L16_audio_decoder_L16 webrtc_api_audio_codecs_g711_audio_decoder_g711 webrtc_api_audio_codecs_g722_audio_decoder_g722 webrtc_api_audio_codecs_isac_audio_decoder_isac webrtc_api_audio_codecs_opus_audio_decoder_multiopus webrtc_api_audio_codecs_opus_audio_decoder_opus webrtc_rtc_base_rtc_base_approved )

# api/audio_codecs:builtin_audio_encoder_factory
add_library(webrtc_api_audio_codecs_builtin_audio_encoder_factory ${WEBRTC_ROOT}/api/audio_codecs/builtin_audio_encoder_factory.cc)
target_include_directories(webrtc_api_audio_codecs_builtin_audio_encoder_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_builtin_audio_encoder_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_USE_BUILTIN_ISAC_FIX=0 WEBRTC_USE_BUILTIN_ISAC_FLOAT=1 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_USE_BUILTIN_ILBC=0 WEBRTC_USE_BUILTIN_OPUS=1)
target_compile_options(webrtc_api_audio_codecs_builtin_audio_encoder_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_builtin_audio_encoder_factory PUBLIC webrtc_api_scoped_refptr webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_L16_audio_encoder_L16 webrtc_api_audio_codecs_g711_audio_encoder_g711 webrtc_api_audio_codecs_g722_audio_encoder_g722 webrtc_api_audio_codecs_isac_audio_encoder_isac webrtc_api_audio_codecs_opus_audio_encoder_multiopus webrtc_api_audio_codecs_opus_audio_encoder_opus webrtc_rtc_base_rtc_base_approved )

# api/audio_codecs/g711:audio_decoder_g711
add_library(webrtc_api_audio_codecs_g711_audio_decoder_g711 ${WEBRTC_ROOT}/api/audio_codecs/g711/audio_decoder_g711.cc)
target_include_directories(webrtc_api_audio_codecs_g711_audio_decoder_g711 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_g711_audio_decoder_g711 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_g711_audio_decoder_g711 PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_g711_audio_decoder_g711 PUBLIC absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_audio_coding_g711 webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio_codecs/g711:audio_encoder_g711
add_library(webrtc_api_audio_codecs_g711_audio_encoder_g711 ${WEBRTC_ROOT}/api/audio_codecs/g711/audio_encoder_g711.cc)
target_include_directories(webrtc_api_audio_codecs_g711_audio_encoder_g711 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_g711_audio_encoder_g711 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_g711_audio_encoder_g711 PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_g711_audio_encoder_g711 PUBLIC absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_audio_coding_g711 webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_rtc_base_system_rtc_export )

# api/audio_codecs/g722:audio_decoder_g722
add_library(webrtc_api_audio_codecs_g722_audio_decoder_g722 ${WEBRTC_ROOT}/api/audio_codecs/g722/audio_decoder_g722.cc)
target_include_directories(webrtc_api_audio_codecs_g722_audio_decoder_g722 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_g722_audio_decoder_g722 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_g722_audio_decoder_g722 PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_g722_audio_decoder_g722 PUBLIC absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_audio_coding_g722 webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio_codecs/g722:audio_encoder_g722
add_library(webrtc_api_audio_codecs_g722_audio_encoder_g722 ${WEBRTC_ROOT}/api/audio_codecs/g722/audio_encoder_g722.cc)
target_include_directories(webrtc_api_audio_codecs_g722_audio_encoder_g722 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_g722_audio_encoder_g722 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_g722_audio_encoder_g722 PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_g722_audio_encoder_g722 PUBLIC absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_g722_audio_encoder_g722_config webrtc_modules_audio_coding_g722 webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_rtc_base_system_rtc_export )

# api/audio_codecs/g722:audio_encoder_g722_config
add_library(webrtc_api_audio_codecs_g722_audio_encoder_g722_config INTERFACE)
target_include_directories(webrtc_api_audio_codecs_g722_audio_encoder_g722_config INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio_codecs/ilbc:audio_encoder_ilbc_config
add_library(webrtc_api_audio_codecs_ilbc_audio_encoder_ilbc_config INTERFACE)
target_include_directories(webrtc_api_audio_codecs_ilbc_audio_encoder_ilbc_config INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio_codecs/isac:audio_decoder_isac
add_library(webrtc_api_audio_codecs_isac_audio_decoder_isac INTERFACE)
target_link_libraries(webrtc_api_audio_codecs_isac_audio_decoder_isac INTERFACE webrtc_api_audio_codecs_isac_audio_decoder_isac_float )
target_include_directories(webrtc_api_audio_codecs_isac_audio_decoder_isac INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio_codecs/isac:audio_decoder_isac_float
add_library(webrtc_api_audio_codecs_isac_audio_decoder_isac_float ${WEBRTC_ROOT}/api/audio_codecs/isac/audio_decoder_isac_float.cc)
target_include_directories(webrtc_api_audio_codecs_isac_audio_decoder_isac_float PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_isac_audio_decoder_isac_float PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_isac_audio_decoder_isac_float PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_isac_audio_decoder_isac_float PUBLIC absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_audio_coding_isac webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio_codecs/isac:audio_encoder_isac
add_library(webrtc_api_audio_codecs_isac_audio_encoder_isac INTERFACE)
target_link_libraries(webrtc_api_audio_codecs_isac_audio_encoder_isac INTERFACE webrtc_api_audio_codecs_isac_audio_encoder_isac_float )
target_include_directories(webrtc_api_audio_codecs_isac_audio_encoder_isac INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio_codecs/isac:audio_encoder_isac_float
add_library(webrtc_api_audio_codecs_isac_audio_encoder_isac_float ${WEBRTC_ROOT}/api/audio_codecs/isac/audio_encoder_isac_float.cc)
target_include_directories(webrtc_api_audio_codecs_isac_audio_encoder_isac_float PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_isac_audio_encoder_isac_float PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_isac_audio_encoder_isac_float PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_isac_audio_encoder_isac_float PUBLIC absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_audio_coding_isac webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio_codecs:opus_audio_decoder_factory
add_library(webrtc_api_audio_codecs_opus_audio_decoder_factory ${WEBRTC_ROOT}/api/audio_codecs/opus_audio_decoder_factory.cc)
target_include_directories(webrtc_api_audio_codecs_opus_audio_decoder_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_opus_audio_decoder_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_opus_audio_decoder_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_opus_audio_decoder_factory PUBLIC webrtc_api_scoped_refptr webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_opus_audio_decoder_multiopus webrtc_api_audio_codecs_opus_audio_decoder_opus webrtc_rtc_base_rtc_base_approved )

# api/audio_codecs/opus:audio_decoder_multiopus
add_library(webrtc_api_audio_codecs_opus_audio_decoder_multiopus ${WEBRTC_ROOT}/api/audio_codecs/opus/audio_decoder_multi_channel_opus.cc)
target_include_directories(webrtc_api_audio_codecs_opus_audio_decoder_multiopus PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_opus_audio_decoder_multiopus PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_opus_audio_decoder_multiopus PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_opus_audio_decoder_multiopus PUBLIC absl::memory absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_opus_audio_decoder_opus_config webrtc_modules_audio_coding_webrtc_multiopus webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio_codecs/opus:audio_decoder_opus
add_library(webrtc_api_audio_codecs_opus_audio_decoder_opus ${WEBRTC_ROOT}/api/audio_codecs/opus/audio_decoder_opus.cc)
target_include_directories(webrtc_api_audio_codecs_opus_audio_decoder_opus PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_opus_audio_decoder_opus PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_opus_audio_decoder_opus PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_opus_audio_decoder_opus PUBLIC absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_audio_coding_webrtc_opus webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio_codecs/opus:audio_decoder_opus_config
add_library(webrtc_api_audio_codecs_opus_audio_decoder_opus_config INTERFACE)
target_include_directories(webrtc_api_audio_codecs_opus_audio_decoder_opus_config INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio_codecs:opus_audio_encoder_factory
add_library(webrtc_api_audio_codecs_opus_audio_encoder_factory ${WEBRTC_ROOT}/api/audio_codecs/opus_audio_encoder_factory.cc)
target_include_directories(webrtc_api_audio_codecs_opus_audio_encoder_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_opus_audio_encoder_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_opus_audio_encoder_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_opus_audio_encoder_factory PUBLIC webrtc_api_scoped_refptr webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_opus_audio_encoder_multiopus webrtc_api_audio_codecs_opus_audio_encoder_opus webrtc_rtc_base_rtc_base_approved )

# api/audio_codecs/opus:audio_encoder_multiopus
add_library(webrtc_api_audio_codecs_opus_audio_encoder_multiopus ${WEBRTC_ROOT}/api/audio_codecs/opus/audio_encoder_multi_channel_opus.cc)
target_include_directories(webrtc_api_audio_codecs_opus_audio_encoder_multiopus PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_opus_audio_encoder_multiopus PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_opus_audio_encoder_multiopus PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_opus_audio_encoder_multiopus PUBLIC absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_opus_audio_encoder_opus_config webrtc_modules_audio_coding_webrtc_multiopus webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio_codecs/opus:audio_encoder_opus
add_library(webrtc_api_audio_codecs_opus_audio_encoder_opus ${WEBRTC_ROOT}/api/audio_codecs/opus/audio_encoder_opus.cc)
target_include_directories(webrtc_api_audio_codecs_opus_audio_encoder_opus PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_opus_audio_encoder_opus PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_opus_audio_encoder_opus PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_opus_audio_encoder_opus PUBLIC absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_opus_audio_encoder_opus_config webrtc_modules_audio_coding_webrtc_opus webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio_codecs/opus:audio_encoder_opus_config
add_library(webrtc_api_audio_codecs_opus_audio_encoder_opus_config ${WEBRTC_ROOT}/api/audio_codecs/opus/audio_encoder_multi_channel_opus_config.cc ${WEBRTC_ROOT}/api/audio_codecs/opus/audio_encoder_opus_config.cc)
target_include_directories(webrtc_api_audio_codecs_opus_audio_encoder_opus_config PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_codecs_opus_audio_encoder_opus_config PRIVATE RTC_ENABLE_VP9 WEBRTC_OPUS_VARIABLE_COMPLEXITY=0 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_codecs_opus_audio_encoder_opus_config PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_codecs_opus_audio_encoder_opus_config PUBLIC absl::optional webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/audio:echo_control
add_library(webrtc_api_audio_echo_control INTERFACE)
target_link_libraries(webrtc_api_audio_echo_control INTERFACE webrtc_rtc_base_checks )
target_include_directories(webrtc_api_audio_echo_control INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/audio:echo_control.headers
add_library(webrtc_api_audio_echo_control.headers INTERFACE)
target_link_libraries(webrtc_api_audio_echo_control.headers INTERFACE webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_api_audio_echo_control.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:audio_options_api
add_library(webrtc_api_audio_options_api ${WEBRTC_ROOT}/api/audio_options.cc)
target_include_directories(webrtc_api_audio_options_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_audio_options_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_audio_options_api PRIVATE -GR-)
target_link_libraries(webrtc_api_audio_options_api PUBLIC absl::optional webrtc_api_array_view webrtc_rtc_base_stringutils webrtc_rtc_base_system_rtc_export )

# api:audio_options_api.headers
add_library(webrtc_api_audio_options_api.headers INTERFACE)
target_link_libraries(webrtc_api_audio_options_api.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_audio_options_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:bitrate_allocation
add_library(webrtc_api_bitrate_allocation INTERFACE)
target_link_libraries(webrtc_api_bitrate_allocation INTERFACE webrtc_api_units_data_rate webrtc_api_units_time_delta )
target_include_directories(webrtc_api_bitrate_allocation INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:bitrate_allocation.headers
add_library(webrtc_api_bitrate_allocation.headers INTERFACE)
target_link_libraries(webrtc_api_bitrate_allocation.headers INTERFACE webrtc_api_units_data_rate.headers webrtc_api_units_time_delta.headers )
target_include_directories(webrtc_api_bitrate_allocation.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:call_api
add_library(webrtc_api_call_api INTERFACE)
target_include_directories(webrtc_api_call_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:callfactory_api
add_library(webrtc_api_callfactory_api INTERFACE)
target_link_libraries(webrtc_api_callfactory_api INTERFACE webrtc_call_rtp_interfaces webrtc_rtc_base_system_rtc_export )
target_include_directories(webrtc_api_callfactory_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:callfactory_api.headers
add_library(webrtc_api_callfactory_api.headers INTERFACE)
target_link_libraries(webrtc_api_callfactory_api.headers INTERFACE webrtc_call_rtp_interfaces.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_callfactory_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:create_frame_generator
add_library(webrtc_api_create_frame_generator ${WEBRTC_ROOT}/api/test/create_frame_generator.cc)
target_include_directories(webrtc_api_create_frame_generator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_create_frame_generator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_create_frame_generator PRIVATE -GR-)
target_link_libraries(webrtc_api_create_frame_generator PUBLIC absl::optional webrtc_api_frame_generator_api webrtc_rtc_base_checks webrtc_system_wrappers_system_wrappers webrtc_test_frame_generator_impl )

# api:create_peerconnection_factory
add_library(webrtc_api_create_peerconnection_factory ${WEBRTC_ROOT}/api/create_peerconnection_factory.cc)
target_include_directories(webrtc_api_create_peerconnection_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_create_peerconnection_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN HAVE_WEBRTC_VIDEO WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_create_peerconnection_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_create_peerconnection_factory PUBLIC webrtc_api_callfactory_api webrtc_api_libjingle_peerconnection_api webrtc_api_scoped_refptr webrtc_api_audio_audio_mixer_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_rtc_event_log_rtc_event_log_factory webrtc_api_task_queue_default_task_queue_factory webrtc_api_transport_field_trial_based_config webrtc_api_video_codecs_video_codecs_api webrtc_media_rtc_audio_video webrtc_media_rtc_media_base webrtc_modules_audio_device_audio_device_api webrtc_modules_audio_processing_api webrtc_pc_peerconnection webrtc_rtc_base_rtc_base webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_threading )

# api:create_simulcast_test_fixture_api
add_library(webrtc_api_create_simulcast_test_fixture_api ${WEBRTC_ROOT}/api/test/create_simulcast_test_fixture.cc)
target_include_directories(webrtc_api_create_simulcast_test_fixture_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_create_simulcast_test_fixture_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_create_simulcast_test_fixture_api PRIVATE -GR-)
target_link_libraries(webrtc_api_create_simulcast_test_fixture_api PUBLIC webrtc_api_simulcast_test_fixture_api webrtc_api_video_codecs_video_codecs_api webrtc_modules_video_coding_simulcast_test_fixture_impl webrtc_rtc_base_rtc_base_approved )

# api:create_time_controller
add_library(webrtc_api_create_time_controller ${WEBRTC_ROOT}/api/test/create_time_controller.cc)
target_include_directories(webrtc_api_create_time_controller PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_create_time_controller PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_create_time_controller PRIVATE -GR-)
target_link_libraries(webrtc_api_create_time_controller PUBLIC webrtc_api_callfactory_api webrtc_api_time_controller webrtc_call_call webrtc_call_call_interfaces webrtc_call_rtp_interfaces webrtc_test_time_controller_time_controller )

# api/crypto:frame_decryptor_interface
add_library(webrtc_api_crypto_frame_decryptor_interface INTERFACE)
target_link_libraries(webrtc_api_crypto_frame_decryptor_interface INTERFACE webrtc_api_array_view webrtc_api_rtp_parameters webrtc_rtc_base_refcount )
target_include_directories(webrtc_api_crypto_frame_decryptor_interface INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/crypto:frame_decryptor_interface.headers
add_library(webrtc_api_crypto_frame_decryptor_interface.headers INTERFACE)
target_link_libraries(webrtc_api_crypto_frame_decryptor_interface.headers INTERFACE webrtc_api_array_view.headers webrtc_api_rtp_parameters.headers webrtc_rtc_base_refcount.headers )
target_include_directories(webrtc_api_crypto_frame_decryptor_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/crypto:frame_encryptor_interface
add_library(webrtc_api_crypto_frame_encryptor_interface INTERFACE)
target_link_libraries(webrtc_api_crypto_frame_encryptor_interface INTERFACE webrtc_api_array_view webrtc_api_rtp_parameters webrtc_rtc_base_refcount )
target_include_directories(webrtc_api_crypto_frame_encryptor_interface INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/crypto:frame_encryptor_interface.headers
add_library(webrtc_api_crypto_frame_encryptor_interface.headers INTERFACE)
target_link_libraries(webrtc_api_crypto_frame_encryptor_interface.headers INTERFACE webrtc_api_array_view.headers webrtc_api_rtp_parameters.headers webrtc_rtc_base_refcount.headers )
target_include_directories(webrtc_api_crypto_frame_encryptor_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/crypto:options
add_library(webrtc_api_crypto_options ${WEBRTC_ROOT}/api/crypto/crypto_options.cc)
target_include_directories(webrtc_api_crypto_options PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_crypto_options PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_crypto_options PRIVATE -GR-)
target_link_libraries(webrtc_api_crypto_options PUBLIC webrtc_rtc_base_rtc_base webrtc_rtc_base_system_rtc_export )

# api/crypto:options.headers
add_library(webrtc_api_crypto_options.headers INTERFACE)
target_link_libraries(webrtc_api_crypto_options.headers INTERFACE webrtc_rtc_base_rtc_base.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_crypto_options.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:fake_frame_decryptor
add_library(webrtc_api_fake_frame_decryptor ${WEBRTC_ROOT}/api/test/fake_frame_decryptor.cc)
target_include_directories(webrtc_api_fake_frame_decryptor PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_fake_frame_decryptor PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_fake_frame_decryptor PRIVATE -GR-)
target_link_libraries(webrtc_api_fake_frame_decryptor PUBLIC webrtc_api_array_view webrtc_api_libjingle_peerconnection_api webrtc_api_rtp_parameters webrtc_api_crypto_frame_decryptor_interface webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# api:fake_frame_encryptor
add_library(webrtc_api_fake_frame_encryptor ${WEBRTC_ROOT}/api/test/fake_frame_encryptor.cc)
target_include_directories(webrtc_api_fake_frame_encryptor PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_fake_frame_encryptor PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_fake_frame_encryptor PRIVATE -GR-)
target_link_libraries(webrtc_api_fake_frame_encryptor PUBLIC webrtc_api_array_view webrtc_api_libjingle_peerconnection_api webrtc_api_rtp_parameters webrtc_api_crypto_frame_encryptor_interface webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# api:fec_controller_api
add_library(webrtc_api_fec_controller_api INTERFACE)
target_link_libraries(webrtc_api_fec_controller_api INTERFACE webrtc_api_video_video_frame_type webrtc_modules_module_fec_api )
target_include_directories(webrtc_api_fec_controller_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:fec_controller_api.headers
add_library(webrtc_api_fec_controller_api.headers INTERFACE)
target_link_libraries(webrtc_api_fec_controller_api.headers INTERFACE webrtc_api_video_video_frame_type.headers webrtc_modules_module_fec_api.headers )
target_include_directories(webrtc_api_fec_controller_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:frame_generator_api
add_library(webrtc_api_frame_generator_api ${WEBRTC_ROOT}/api/test/frame_generator_interface.cc)
target_include_directories(webrtc_api_frame_generator_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_frame_generator_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_frame_generator_api PRIVATE -GR-)
target_link_libraries(webrtc_api_frame_generator_api PUBLIC absl::optional webrtc_api_scoped_refptr webrtc_api_video_video_frame )

# api:frame_transformer_interface
add_library(webrtc_api_frame_transformer_interface INTERFACE)
target_link_libraries(webrtc_api_frame_transformer_interface INTERFACE webrtc_api_scoped_refptr webrtc_api_video_encoded_frame webrtc_api_video_video_frame_metadata webrtc_rtc_base_refcount )
target_include_directories(webrtc_api_frame_transformer_interface INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:frame_transformer_interface.headers
add_library(webrtc_api_frame_transformer_interface.headers INTERFACE)
target_link_libraries(webrtc_api_frame_transformer_interface.headers INTERFACE webrtc_api_scoped_refptr.headers webrtc_api_video_encoded_frame.headers webrtc_api_video_video_frame_metadata.headers webrtc_rtc_base_refcount.headers )
target_include_directories(webrtc_api_frame_transformer_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:function_view
add_library(webrtc_api_function_view INTERFACE)
target_link_libraries(webrtc_api_function_view INTERFACE webrtc_rtc_base_checks )
target_include_directories(webrtc_api_function_view INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:function_view.headers
add_library(webrtc_api_function_view.headers INTERFACE)
target_link_libraries(webrtc_api_function_view.headers INTERFACE webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_api_function_view.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:ice_transport_factory
add_library(webrtc_api_ice_transport_factory ${WEBRTC_ROOT}/api/ice_transport_factory.cc)
target_include_directories(webrtc_api_ice_transport_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_ice_transport_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_ice_transport_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_ice_transport_factory PUBLIC webrtc_api_libjingle_peerconnection_api webrtc_api_packet_socket_factory webrtc_api_scoped_refptr webrtc_api_rtc_event_log_rtc_event_log webrtc_p2p_rtc_p2p webrtc_rtc_base_rtc_base webrtc_rtc_base_threading webrtc_rtc_base_system_rtc_export )

# api:libjingle_logging_api
add_library(webrtc_api_libjingle_logging_api INTERFACE)
target_include_directories(webrtc_api_libjingle_logging_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:libjingle_logging_api.headers
add_library(webrtc_api_libjingle_logging_api.headers INTERFACE)
target_include_directories(webrtc_api_libjingle_logging_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:libjingle_peerconnection_api
add_library(webrtc_api_libjingle_peerconnection_api ${WEBRTC_ROOT}/api/candidate.cc ${WEBRTC_ROOT}/api/data_channel_interface.cc ${WEBRTC_ROOT}/api/dtls_transport_interface.cc ${WEBRTC_ROOT}/api/jsep.cc ${WEBRTC_ROOT}/api/jsep_ice_candidate.cc ${WEBRTC_ROOT}/api/peer_connection_interface.cc ${WEBRTC_ROOT}/api/rtp_receiver_interface.cc ${WEBRTC_ROOT}/api/rtp_sender_interface.cc ${WEBRTC_ROOT}/api/rtp_transceiver_interface.cc ${WEBRTC_ROOT}/api/sctp_transport_interface.cc ${WEBRTC_ROOT}/api/stats_types.cc)
target_include_directories(webrtc_api_libjingle_peerconnection_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_libjingle_peerconnection_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_libjingle_peerconnection_api PRIVATE -GR-)
target_link_libraries(webrtc_api_libjingle_peerconnection_api PUBLIC absl::algorithm absl::algorithm_container absl::config absl::core_headers absl::algorithm_container absl::memory absl::type_traits absl::strings absl::optional absl::variant webrtc_api_array_view webrtc_api_async_dns_resolver webrtc_api_audio_options_api webrtc_api_callfactory_api webrtc_api_fec_controller_api webrtc_api_frame_transformer_interface webrtc_api_libjingle_logging_api webrtc_api_media_stream_interface webrtc_api_network_state_predictor_api webrtc_api_packet_socket_factory webrtc_api_priority webrtc_api_rtc_error webrtc_api_rtc_stats_api webrtc_api_rtp_packet_info webrtc_api_rtp_parameters webrtc_api_rtp_transceiver_direction webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_adaptation_resource_adaptation_api webrtc_api_audio_audio_mixer_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_crypto_frame_decryptor_interface webrtc_api_crypto_frame_encryptor_interface webrtc_api_crypto_options webrtc_api_neteq_neteq_api webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_api_transport_bitrate_settings webrtc_api_transport_enums webrtc_api_transport_network_control webrtc_api_transport_sctp_transport_factory_interface webrtc_api_transport_webrtc_key_value_config webrtc_api_transport_rtp_rtp_source webrtc_api_units_data_rate webrtc_api_units_timestamp webrtc_api_video_encoded_image webrtc_api_video_video_bitrate_allocator_factory webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_call_rtp_interfaces webrtc_media_rtc_media_base webrtc_media_rtc_media_base.headers webrtc_media_rtc_media_config webrtc_modules_audio_processing_audio_processing_statistics webrtc_p2p_rtc_p2p.headers webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_ip_address webrtc_rtc_base_network_constants webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_socket_address webrtc_rtc_base_threading webrtc_rtc_base_system_rtc_export )

# api:libjingle_peerconnection_api.headers
add_library(webrtc_api_libjingle_peerconnection_api.headers INTERFACE)
target_link_libraries(webrtc_api_libjingle_peerconnection_api.headers INTERFACE webrtc_api_array_view.headers webrtc_api_async_dns_resolver.headers webrtc_api_audio_options_api.headers webrtc_api_callfactory_api.headers webrtc_api_fec_controller_api.headers webrtc_api_frame_transformer_interface.headers webrtc_api_libjingle_logging_api.headers webrtc_api_media_stream_interface.headers webrtc_api_network_state_predictor_api.headers webrtc_api_packet_socket_factory.headers webrtc_api_priority.headers webrtc_api_rtc_error.headers webrtc_api_rtc_stats_api.headers webrtc_api_rtp_packet_info.headers webrtc_api_rtp_parameters.headers webrtc_api_rtp_transceiver_direction.headers webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_api_adaptation_resource_adaptation_api.headers webrtc_api_audio_audio_mixer_api.headers webrtc_api_audio_codecs_audio_codecs_api.headers webrtc_api_crypto_frame_decryptor_interface.headers webrtc_api_crypto_frame_encryptor_interface.headers webrtc_api_crypto_options.headers webrtc_api_neteq_neteq_api.headers webrtc_api_rtc_event_log_rtc_event_log.headers webrtc_api_task_queue_task_queue.headers webrtc_api_transport_bitrate_settings.headers webrtc_api_transport_enums.headers webrtc_api_transport_network_control.headers webrtc_api_transport_sctp_transport_factory_interface.headers webrtc_api_transport_webrtc_key_value_config.headers webrtc_api_transport_rtp_rtp_source.headers webrtc_api_units_data_rate.headers webrtc_api_units_timestamp.headers webrtc_api_video_encoded_image.headers webrtc_api_video_video_bitrate_allocator_factory.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_rtp_headers.headers webrtc_call_rtp_interfaces.headers webrtc_media_rtc_media_base.headers webrtc_media_rtc_media_config.headers webrtc_modules_audio_processing_audio_processing_statistics.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_ip_address.headers webrtc_rtc_base_network_constants.headers webrtc_rtc_base_rtc_base.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_socket_address.headers webrtc_rtc_base_threading.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_libjingle_peerconnection_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:media_stream_interface
add_library(webrtc_api_media_stream_interface ${WEBRTC_ROOT}/api/media_stream_interface.cc)
target_include_directories(webrtc_api_media_stream_interface PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_media_stream_interface PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_media_stream_interface PRIVATE -GR-)
target_link_libraries(webrtc_api_media_stream_interface PUBLIC absl::optional webrtc_api_audio_options_api webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_video_recordable_encoded_frame webrtc_api_video_video_frame webrtc_modules_audio_processing_audio_processing_statistics webrtc_rtc_base_checks webrtc_rtc_base_refcount webrtc_rtc_base_system_rtc_export )

# api:media_stream_interface.headers
add_library(webrtc_api_media_stream_interface.headers INTERFACE)
target_link_libraries(webrtc_api_media_stream_interface.headers INTERFACE webrtc_api_audio_options_api.headers webrtc_api_rtp_parameters.headers webrtc_api_scoped_refptr.headers webrtc_api_video_recordable_encoded_frame.headers webrtc_api_video_video_frame.headers webrtc_modules_audio_processing_audio_processing_statistics.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_refcount.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_media_stream_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:mock_rtp
add_library(webrtc_api_mock_rtp INTERFACE)
target_link_libraries(webrtc_api_mock_rtp INTERFACE webrtc_api_libjingle_peerconnection_api webrtc_test_test_support )
target_include_directories(webrtc_api_mock_rtp INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:mock_video_bitrate_allocator
add_library(webrtc_api_mock_video_bitrate_allocator INTERFACE)
target_link_libraries(webrtc_api_mock_video_bitrate_allocator INTERFACE webrtc_api_video_video_bitrate_allocator webrtc_test_test_support )
target_include_directories(webrtc_api_mock_video_bitrate_allocator INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:mock_video_bitrate_allocator_factory
add_library(webrtc_api_mock_video_bitrate_allocator_factory INTERFACE)
target_link_libraries(webrtc_api_mock_video_bitrate_allocator_factory INTERFACE webrtc_api_video_video_bitrate_allocator_factory webrtc_test_test_support )
target_include_directories(webrtc_api_mock_video_bitrate_allocator_factory INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:mock_video_codec_factory
add_library(webrtc_api_mock_video_codec_factory INTERFACE)
target_link_libraries(webrtc_api_mock_video_codec_factory INTERFACE webrtc_api_video_codecs_video_codecs_api webrtc_test_test_support )
target_include_directories(webrtc_api_mock_video_codec_factory INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:mock_video_decoder
add_library(webrtc_api_mock_video_decoder INTERFACE)
target_link_libraries(webrtc_api_mock_video_decoder INTERFACE webrtc_api_video_codecs_video_codecs_api webrtc_test_test_support )
target_include_directories(webrtc_api_mock_video_decoder INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:mock_video_encoder
add_library(webrtc_api_mock_video_encoder INTERFACE)
target_link_libraries(webrtc_api_mock_video_encoder INTERFACE webrtc_api_video_codecs_video_codecs_api webrtc_test_test_support )
target_include_directories(webrtc_api_mock_video_encoder INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/neteq:custom_neteq_factory
add_library(webrtc_api_neteq_custom_neteq_factory ${WEBRTC_ROOT}/api/neteq/custom_neteq_factory.cc)
target_include_directories(webrtc_api_neteq_custom_neteq_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_neteq_custom_neteq_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_neteq_custom_neteq_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_neteq_custom_neteq_factory PUBLIC webrtc_api_scoped_refptr webrtc_api_audio_codecs_audio_codecs_api webrtc_api_neteq_neteq_api webrtc_api_neteq_neteq_controller_api webrtc_modules_audio_coding_neteq webrtc_system_wrappers_system_wrappers )

# api/neteq:default_neteq_controller_factory
add_library(webrtc_api_neteq_default_neteq_controller_factory ${WEBRTC_ROOT}/api/neteq/default_neteq_controller_factory.cc)
target_include_directories(webrtc_api_neteq_default_neteq_controller_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_neteq_default_neteq_controller_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_neteq_default_neteq_controller_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_neteq_default_neteq_controller_factory PUBLIC webrtc_api_neteq_neteq_controller_api webrtc_modules_audio_coding_neteq )

# api/neteq:neteq_api
add_library(webrtc_api_neteq_neteq_api ${WEBRTC_ROOT}/api/neteq/neteq.cc)
target_include_directories(webrtc_api_neteq_neteq_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_neteq_neteq_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_neteq_neteq_api PRIVATE -GR-)
target_link_libraries(webrtc_api_neteq_neteq_api PUBLIC absl::optional webrtc_api_rtp_headers webrtc_api_rtp_packet_info webrtc_api_scoped_refptr webrtc_api_audio_codecs_audio_codecs_api webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_system_wrappers )

# api/neteq:neteq_api.headers
add_library(webrtc_api_neteq_neteq_api.headers INTERFACE)
target_link_libraries(webrtc_api_neteq_neteq_api.headers INTERFACE webrtc_api_rtp_headers.headers webrtc_api_rtp_packet_info.headers webrtc_api_scoped_refptr.headers webrtc_api_audio_codecs_audio_codecs_api.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_api_neteq_neteq_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/neteq:neteq_controller_api
add_library(webrtc_api_neteq_neteq_controller_api INTERFACE)
target_link_libraries(webrtc_api_neteq_neteq_controller_api INTERFACE absl::optional webrtc_api_neteq_neteq_api webrtc_api_neteq_tick_timer webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_system_wrappers )
target_include_directories(webrtc_api_neteq_neteq_controller_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:neteq_simulator_api
add_library(webrtc_api_neteq_simulator_api ${WEBRTC_ROOT}/api/test/neteq_simulator.cc)
target_include_directories(webrtc_api_neteq_simulator_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_neteq_simulator_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_neteq_simulator_api PRIVATE -GR-)

# api/neteq:tick_timer
add_library(webrtc_api_neteq_tick_timer ${WEBRTC_ROOT}/api/neteq/tick_timer.cc)
target_include_directories(webrtc_api_neteq_tick_timer PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_neteq_tick_timer PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_neteq_tick_timer PRIVATE -GR-)
target_link_libraries(webrtc_api_neteq_tick_timer PUBLIC webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# api:network_emulation_manager_api
add_library(webrtc_api_network_emulation_manager_api ${WEBRTC_ROOT}/api/test/network_emulation_manager.cc)
target_include_directories(webrtc_api_network_emulation_manager_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_network_emulation_manager_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_network_emulation_manager_api PRIVATE -GR-)
target_link_libraries(webrtc_api_network_emulation_manager_api PUBLIC webrtc_api_array_view webrtc_api_simulated_network_api webrtc_api_time_controller webrtc_api_test_network_emulation_network_emulation webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_timestamp webrtc_call_simulated_network webrtc_rtc_base_rtc_base webrtc_rtc_base_network_constants webrtc_rtc_base_threading )

# api:network_state_predictor_api
add_library(webrtc_api_network_state_predictor_api INTERFACE)
target_include_directories(webrtc_api_network_state_predictor_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:network_state_predictor_api.headers
add_library(webrtc_api_network_state_predictor_api.headers INTERFACE)
target_include_directories(webrtc_api_network_state_predictor_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/numerics
add_library(webrtc_api_numerics_numerics ${WEBRTC_ROOT}/api/numerics/samples_stats_counter.cc)
target_include_directories(webrtc_api_numerics_numerics PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_numerics_numerics PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_numerics_numerics PRIVATE -GR-)
target_link_libraries(webrtc_api_numerics_numerics PUBLIC absl::algorithm_container webrtc_api_array_view webrtc_api_units_timestamp webrtc_rtc_base_checks webrtc_rtc_base_rtc_numerics webrtc_rtc_base_timeutils )

# api/numerics:numerics.headers
add_library(webrtc_api_numerics_numerics.headers INTERFACE)
target_link_libraries(webrtc_api_numerics_numerics.headers INTERFACE webrtc_api_array_view.headers webrtc_api_units_timestamp.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_numerics.headers webrtc_rtc_base_timeutils.headers )
target_include_directories(webrtc_api_numerics_numerics.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:packet_socket_factory
add_library(webrtc_api_packet_socket_factory INTERFACE)
target_link_libraries(webrtc_api_packet_socket_factory INTERFACE webrtc_api_async_dns_resolver webrtc_rtc_base_rtc_base webrtc_rtc_base_async_resolver_interface webrtc_rtc_base_socket_address webrtc_rtc_base_system_rtc_export )
target_include_directories(webrtc_api_packet_socket_factory INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:packet_socket_factory.headers
add_library(webrtc_api_packet_socket_factory.headers INTERFACE)
target_link_libraries(webrtc_api_packet_socket_factory.headers INTERFACE webrtc_api_async_dns_resolver.headers webrtc_rtc_base_async_resolver_interface.headers webrtc_rtc_base_rtc_base.headers webrtc_rtc_base_socket_address.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_packet_socket_factory.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:priority
add_library(webrtc_api_priority INTERFACE)
target_include_directories(webrtc_api_priority INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:priority.headers
add_library(webrtc_api_priority.headers INTERFACE)
target_include_directories(webrtc_api_priority.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:refcountedbase
add_library(webrtc_api_refcountedbase INTERFACE)
target_link_libraries(webrtc_api_refcountedbase INTERFACE webrtc_rtc_base_macromagic webrtc_rtc_base_refcount )
target_include_directories(webrtc_api_refcountedbase INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:refcountedbase.headers
add_library(webrtc_api_refcountedbase.headers INTERFACE)
target_link_libraries(webrtc_api_refcountedbase.headers INTERFACE webrtc_rtc_base_macromagic.headers webrtc_rtc_base_refcount.headers )
target_include_directories(webrtc_api_refcountedbase.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:rtc_error
add_library(webrtc_api_rtc_error ${WEBRTC_ROOT}/api/rtc_error.cc)
target_include_directories(webrtc_api_rtc_error PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_rtc_error PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_rtc_error PRIVATE -GR-)
target_link_libraries(webrtc_api_rtc_error PUBLIC absl::optional webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_macromagic webrtc_rtc_base_system_rtc_export )

# api:rtc_error.headers
add_library(webrtc_api_rtc_error.headers INTERFACE)
target_link_libraries(webrtc_api_rtc_error.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_rtc_error.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:rtc_event_log_output_file
add_library(webrtc_api_rtc_event_log_output_file ${WEBRTC_ROOT}/api/rtc_event_log_output_file.cc)
target_include_directories(webrtc_api_rtc_event_log_output_file PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_rtc_event_log_output_file PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_rtc_event_log_output_file PRIVATE -GR-)
target_link_libraries(webrtc_api_rtc_event_log_output_file PUBLIC webrtc_api_libjingle_logging_api webrtc_api_rtc_event_log_rtc_event_log webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_file_wrapper )

# api/rtc_event_log
add_library(webrtc_api_rtc_event_log_rtc_event_log ${WEBRTC_ROOT}/api/rtc_event_log/rtc_event.cc ${WEBRTC_ROOT}/api/rtc_event_log/rtc_event_log.cc)
target_include_directories(webrtc_api_rtc_event_log_rtc_event_log PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_rtc_event_log_rtc_event_log PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_rtc_event_log_rtc_event_log PRIVATE -GR-)
target_link_libraries(webrtc_api_rtc_event_log_rtc_event_log PUBLIC webrtc_api_libjingle_logging_api webrtc_api_task_queue_task_queue webrtc_rtc_base_checks webrtc_rtc_base_timeutils )

# api/rtc_event_log:rtc_event_log.headers
add_library(webrtc_api_rtc_event_log_rtc_event_log.headers INTERFACE)
target_link_libraries(webrtc_api_rtc_event_log_rtc_event_log.headers INTERFACE webrtc_api_libjingle_logging_api.headers webrtc_api_task_queue_task_queue.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_timeutils.headers )
target_include_directories(webrtc_api_rtc_event_log_rtc_event_log.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/rtc_event_log:rtc_event_log_factory
add_library(webrtc_api_rtc_event_log_rtc_event_log_factory ${WEBRTC_ROOT}/api/rtc_event_log/rtc_event_log_factory.cc)
target_include_directories(webrtc_api_rtc_event_log_rtc_event_log_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_rtc_event_log_rtc_event_log_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_ENABLE_RTC_EVENT_LOG WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_rtc_event_log_rtc_event_log_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_rtc_event_log_rtc_event_log_factory PUBLIC webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_logging_rtc_event_log_impl webrtc_rtc_base_checks webrtc_rtc_base_system_rtc_export webrtc_system_wrappers_field_trial )

# api:rtc_stats_api
add_library(webrtc_api_rtc_stats_api INTERFACE)
target_link_libraries(webrtc_api_rtc_stats_api INTERFACE webrtc_api_refcountedbase webrtc_api_scoped_refptr webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )
target_include_directories(webrtc_api_rtc_stats_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:rtc_stats_api.headers
add_library(webrtc_api_rtc_stats_api.headers INTERFACE)
target_link_libraries(webrtc_api_rtc_stats_api.headers INTERFACE webrtc_api_refcountedbase.headers webrtc_api_scoped_refptr.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_rtc_stats_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:rtp_headers
add_library(webrtc_api_rtp_headers ${WEBRTC_ROOT}/api/rtp_headers.cc)
target_include_directories(webrtc_api_rtp_headers PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_rtp_headers PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_rtp_headers PRIVATE -GR-)
target_link_libraries(webrtc_api_rtp_headers PUBLIC absl::optional webrtc_api_array_view webrtc_api_units_timestamp webrtc_api_video_video_rtp_headers )

# api:rtp_headers.headers
add_library(webrtc_api_rtp_headers.headers INTERFACE)
target_link_libraries(webrtc_api_rtp_headers.headers INTERFACE webrtc_api_array_view.headers webrtc_api_units_timestamp.headers webrtc_api_video_video_rtp_headers.headers )
target_include_directories(webrtc_api_rtp_headers.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:rtp_packet_info
add_library(webrtc_api_rtp_packet_info ${WEBRTC_ROOT}/api/rtp_packet_info.cc)
target_include_directories(webrtc_api_rtp_packet_info PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_rtp_packet_info PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_rtp_packet_info PRIVATE -GR-)
target_link_libraries(webrtc_api_rtp_packet_info PUBLIC absl::optional webrtc_api_array_view webrtc_api_refcountedbase webrtc_api_rtp_headers webrtc_api_scoped_refptr webrtc_api_units_timestamp webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api:rtp_packet_info.headers
add_library(webrtc_api_rtp_packet_info.headers INTERFACE)
target_link_libraries(webrtc_api_rtp_packet_info.headers INTERFACE webrtc_api_array_view.headers webrtc_api_refcountedbase.headers webrtc_api_rtp_headers.headers webrtc_api_scoped_refptr.headers webrtc_api_units_timestamp.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_rtp_packet_info.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:rtp_parameters
add_library(webrtc_api_rtp_parameters ${WEBRTC_ROOT}/api/media_types.cc ${WEBRTC_ROOT}/api/rtp_parameters.cc)
target_include_directories(webrtc_api_rtp_parameters PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_rtp_parameters PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_rtp_parameters PRIVATE -GR-)
target_link_libraries(webrtc_api_rtp_parameters PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_api_priority webrtc_api_rtp_transceiver_direction webrtc_rtc_base_checks webrtc_rtc_base_stringutils webrtc_rtc_base_system_rtc_export )

# api:rtp_parameters.headers
add_library(webrtc_api_rtp_parameters.headers INTERFACE)
target_link_libraries(webrtc_api_rtp_parameters.headers INTERFACE webrtc_api_array_view.headers webrtc_api_priority.headers webrtc_api_rtp_transceiver_direction.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_rtp_parameters.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:rtp_transceiver_direction
add_library(webrtc_api_rtp_transceiver_direction INTERFACE)
target_include_directories(webrtc_api_rtp_transceiver_direction INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:rtp_transceiver_direction.headers
add_library(webrtc_api_rtp_transceiver_direction.headers INTERFACE)
target_include_directories(webrtc_api_rtp_transceiver_direction.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:scoped_refptr
add_library(webrtc_api_scoped_refptr INTERFACE)
target_include_directories(webrtc_api_scoped_refptr INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:scoped_refptr.headers
add_library(webrtc_api_scoped_refptr.headers INTERFACE)
target_include_directories(webrtc_api_scoped_refptr.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:sequence_checker
add_library(webrtc_api_sequence_checker INTERFACE)
target_link_libraries(webrtc_api_sequence_checker INTERFACE webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_rtc_base_synchronization_sequence_checker_internal )
target_include_directories(webrtc_api_sequence_checker INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:sequence_checker.headers
add_library(webrtc_api_sequence_checker.headers INTERFACE)
target_link_libraries(webrtc_api_sequence_checker.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_synchronization_sequence_checker_internal.headers )
target_include_directories(webrtc_api_sequence_checker.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:simulated_network_api
add_library(webrtc_api_simulated_network_api INTERFACE)
target_link_libraries(webrtc_api_simulated_network_api INTERFACE absl::optional webrtc_rtc_base_rtc_base )
target_include_directories(webrtc_api_simulated_network_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:simulcast_test_fixture_api
add_library(webrtc_api_simulcast_test_fixture_api INTERFACE)
target_include_directories(webrtc_api_simulcast_test_fixture_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/task_queue:default_task_queue_factory
add_library(webrtc_api_task_queue_default_task_queue_factory ${WEBRTC_ROOT}/api/task_queue/default_task_queue_factory_win.cc)
target_include_directories(webrtc_api_task_queue_default_task_queue_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_task_queue_default_task_queue_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_task_queue_default_task_queue_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_task_queue_default_task_queue_factory PUBLIC webrtc_rtc_base_rtc_task_queue_win webrtc_api_task_queue_task_queue )

# api/task_queue
add_library(webrtc_api_task_queue_task_queue ${WEBRTC_ROOT}/api/task_queue/task_queue_base.cc)
target_include_directories(webrtc_api_task_queue_task_queue PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_task_queue_task_queue PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_task_queue_task_queue PRIVATE -GR-)
target_link_libraries(webrtc_api_task_queue_task_queue PUBLIC absl::config absl::core_headers absl::strings webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_rtc_base_system_rtc_export )

# api/task_queue:task_queue.headers
add_library(webrtc_api_task_queue_task_queue.headers INTERFACE)
target_link_libraries(webrtc_api_task_queue_task_queue.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_task_queue_task_queue.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/test/network_emulation
add_library(webrtc_api_test_network_emulation_network_emulation ${WEBRTC_ROOT}/api/test/network_emulation/network_emulation_interfaces.cc)
target_include_directories(webrtc_api_test_network_emulation_network_emulation PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_test_network_emulation_network_emulation PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_test_network_emulation_network_emulation PRIVATE -GR-)
target_link_libraries(webrtc_api_test_network_emulation_network_emulation PUBLIC absl::optional webrtc_api_array_view webrtc_api_numerics_numerics webrtc_api_task_queue_task_queue webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_ip_address webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_socket_address )

# api/test/video:function_video_factory
add_library(webrtc_api_test_video_function_video_factory INTERFACE)
target_link_libraries(webrtc_api_test_video_function_video_factory INTERFACE webrtc_api_video_codecs_video_codecs_api webrtc_rtc_base_checks )
target_include_directories(webrtc_api_test_video_function_video_factory INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api:time_controller
add_library(webrtc_api_time_controller ${WEBRTC_ROOT}/api/test/time_controller.cc)
target_include_directories(webrtc_api_time_controller PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_time_controller PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_time_controller PRIVATE -GR-)
target_link_libraries(webrtc_api_time_controller PUBLIC webrtc_api_task_queue_task_queue webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_modules_utility_utility webrtc_rtc_base_rtc_base webrtc_rtc_base_threading webrtc_rtc_base_synchronization_yield_policy webrtc_system_wrappers_system_wrappers )

# api:transport_api
add_library(webrtc_api_transport_api ${WEBRTC_ROOT}/api/call/transport.cc)
target_include_directories(webrtc_api_transport_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_transport_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_transport_api PRIVATE -GR-)
target_link_libraries(webrtc_api_transport_api PUBLIC webrtc_api_refcountedbase webrtc_api_scoped_refptr )

# api:transport_api.headers
add_library(webrtc_api_transport_api.headers INTERFACE)
target_link_libraries(webrtc_api_transport_api.headers INTERFACE webrtc_api_refcountedbase.headers webrtc_api_scoped_refptr.headers )
target_include_directories(webrtc_api_transport_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:bitrate_settings
add_library(webrtc_api_transport_bitrate_settings ${WEBRTC_ROOT}/api/transport/bitrate_settings.cc)
target_include_directories(webrtc_api_transport_bitrate_settings PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_transport_bitrate_settings PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_transport_bitrate_settings PRIVATE -GR-)
target_link_libraries(webrtc_api_transport_bitrate_settings PUBLIC absl::optional webrtc_rtc_base_system_rtc_export )

# api/transport:bitrate_settings.headers
add_library(webrtc_api_transport_bitrate_settings.headers INTERFACE)
target_link_libraries(webrtc_api_transport_bitrate_settings.headers INTERFACE webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_transport_bitrate_settings.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:datagram_transport_interface
add_library(webrtc_api_transport_datagram_transport_interface INTERFACE)
target_link_libraries(webrtc_api_transport_datagram_transport_interface INTERFACE absl::optional webrtc_api_array_view webrtc_api_rtc_error webrtc_rtc_base_rtc_base_approved )
target_include_directories(webrtc_api_transport_datagram_transport_interface INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:datagram_transport_interface.headers
add_library(webrtc_api_transport_datagram_transport_interface.headers INTERFACE)
target_link_libraries(webrtc_api_transport_datagram_transport_interface.headers INTERFACE webrtc_api_array_view.headers webrtc_api_rtc_error.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_api_transport_datagram_transport_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:enums
add_library(webrtc_api_transport_enums INTERFACE)
target_include_directories(webrtc_api_transport_enums INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:enums.headers
add_library(webrtc_api_transport_enums.headers INTERFACE)
target_include_directories(webrtc_api_transport_enums.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:field_trial_based_config
add_library(webrtc_api_transport_field_trial_based_config ${WEBRTC_ROOT}/api/transport/field_trial_based_config.cc)
target_include_directories(webrtc_api_transport_field_trial_based_config PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_transport_field_trial_based_config PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_transport_field_trial_based_config PRIVATE -GR-)
target_link_libraries(webrtc_api_transport_field_trial_based_config PUBLIC absl::strings webrtc_api_transport_webrtc_key_value_config webrtc_system_wrappers_field_trial )

# api/transport:field_trial_based_config.headers
add_library(webrtc_api_transport_field_trial_based_config.headers INTERFACE)
target_link_libraries(webrtc_api_transport_field_trial_based_config.headers INTERFACE webrtc_api_transport_webrtc_key_value_config.headers webrtc_system_wrappers_field_trial.headers )
target_include_directories(webrtc_api_transport_field_trial_based_config.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:goog_cc
add_library(webrtc_api_transport_goog_cc ${WEBRTC_ROOT}/api/transport/goog_cc_factory.cc)
target_include_directories(webrtc_api_transport_goog_cc PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_transport_goog_cc PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_transport_goog_cc PRIVATE -GR-)
target_link_libraries(webrtc_api_transport_goog_cc PUBLIC absl::core_headers webrtc_api_network_state_predictor_api webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_modules_congestion_controller_goog_cc_goog_cc )

# api/transport:network_control
add_library(webrtc_api_transport_network_control ${WEBRTC_ROOT}/api/transport/network_types.cc)
target_include_directories(webrtc_api_transport_network_control PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_transport_network_control PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_transport_network_control PRIVATE -GR-)
target_link_libraries(webrtc_api_transport_network_control PUBLIC absl::core_headers absl::optional webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_time_delta webrtc_api_units_timestamp )

# api/transport:network_control.headers
add_library(webrtc_api_transport_network_control.headers INTERFACE)
target_link_libraries(webrtc_api_transport_network_control.headers INTERFACE webrtc_api_rtc_event_log_rtc_event_log.headers webrtc_api_transport_webrtc_key_value_config.headers webrtc_api_units_data_rate.headers webrtc_api_units_data_size.headers webrtc_api_units_time_delta.headers webrtc_api_units_timestamp.headers )
target_include_directories(webrtc_api_transport_network_control.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport/rtp:dependency_descriptor
add_library(webrtc_api_transport_rtp_dependency_descriptor ${WEBRTC_ROOT}/api/transport/rtp/dependency_descriptor.cc)
target_include_directories(webrtc_api_transport_rtp_dependency_descriptor PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_transport_rtp_dependency_descriptor PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_transport_rtp_dependency_descriptor PRIVATE -GR-)
target_link_libraries(webrtc_api_transport_rtp_dependency_descriptor PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_rtc_base_checks )

# api/transport/rtp:dependency_descriptor.headers
add_library(webrtc_api_transport_rtp_dependency_descriptor.headers INTERFACE)
target_link_libraries(webrtc_api_transport_rtp_dependency_descriptor.headers INTERFACE webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_api_transport_rtp_dependency_descriptor.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport/rtp:rtp_source
add_library(webrtc_api_transport_rtp_rtp_source INTERFACE)
target_link_libraries(webrtc_api_transport_rtp_rtp_source INTERFACE absl::optional webrtc_api_rtp_headers webrtc_rtc_base_checks )
target_include_directories(webrtc_api_transport_rtp_rtp_source INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport/rtp:rtp_source.headers
add_library(webrtc_api_transport_rtp_rtp_source.headers INTERFACE)
target_link_libraries(webrtc_api_transport_rtp_rtp_source.headers INTERFACE webrtc_api_rtp_headers.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_api_transport_rtp_rtp_source.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:sctp_transport_factory_interface
add_library(webrtc_api_transport_sctp_transport_factory_interface INTERFACE)
target_include_directories(webrtc_api_transport_sctp_transport_factory_interface INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:sctp_transport_factory_interface.headers
add_library(webrtc_api_transport_sctp_transport_factory_interface.headers INTERFACE)
target_include_directories(webrtc_api_transport_sctp_transport_factory_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:stun_types
add_library(webrtc_api_transport_stun_types ${WEBRTC_ROOT}/api/transport/stun.cc)
target_include_directories(webrtc_api_transport_stun_types PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_transport_stun_types PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_transport_stun_types PRIVATE -GR-)
target_link_libraries(webrtc_api_transport_stun_types PUBLIC absl::strings webrtc_api_array_view webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_ip_address webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_socket_address )

# api/transport:stun_types.headers
add_library(webrtc_api_transport_stun_types.headers INTERFACE)
target_link_libraries(webrtc_api_transport_stun_types.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_ip_address.headers webrtc_rtc_base_rtc_base.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_socket_address.headers )
target_include_directories(webrtc_api_transport_stun_types.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:webrtc_key_value_config
add_library(webrtc_api_transport_webrtc_key_value_config INTERFACE)
target_link_libraries(webrtc_api_transport_webrtc_key_value_config INTERFACE absl::strings webrtc_rtc_base_system_rtc_export )
target_include_directories(webrtc_api_transport_webrtc_key_value_config INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/transport:webrtc_key_value_config.headers
add_library(webrtc_api_transport_webrtc_key_value_config.headers INTERFACE)
target_link_libraries(webrtc_api_transport_webrtc_key_value_config.headers INTERFACE webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_transport_webrtc_key_value_config.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/units:data_rate
add_library(webrtc_api_units_data_rate ${WEBRTC_ROOT}/api/units/data_rate.cc)
target_include_directories(webrtc_api_units_data_rate PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_units_data_rate PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_units_data_rate PRIVATE -GR-)
target_link_libraries(webrtc_api_units_data_rate PUBLIC webrtc_api_array_view webrtc_api_units_data_size webrtc_api_units_frequency webrtc_api_units_time_delta webrtc_rtc_base_checks webrtc_rtc_base_stringutils webrtc_rtc_base_units_unit_base )

# api/units:data_rate.headers
add_library(webrtc_api_units_data_rate.headers INTERFACE)
target_link_libraries(webrtc_api_units_data_rate.headers INTERFACE webrtc_api_array_view.headers webrtc_api_units_data_size.headers webrtc_api_units_frequency.headers webrtc_api_units_time_delta.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_units_unit_base.headers )
target_include_directories(webrtc_api_units_data_rate.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/units:data_size
add_library(webrtc_api_units_data_size ${WEBRTC_ROOT}/api/units/data_size.cc)
target_include_directories(webrtc_api_units_data_size PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_units_data_size PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_units_data_size PRIVATE -GR-)
target_link_libraries(webrtc_api_units_data_size PUBLIC webrtc_api_array_view webrtc_rtc_base_checks webrtc_rtc_base_stringutils webrtc_rtc_base_units_unit_base )

# api/units:data_size.headers
add_library(webrtc_api_units_data_size.headers INTERFACE)
target_link_libraries(webrtc_api_units_data_size.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_units_unit_base.headers )
target_include_directories(webrtc_api_units_data_size.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/units:frequency
add_library(webrtc_api_units_frequency ${WEBRTC_ROOT}/api/units/frequency.cc)
target_include_directories(webrtc_api_units_frequency PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_units_frequency PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_units_frequency PRIVATE -GR-)
target_link_libraries(webrtc_api_units_frequency PUBLIC webrtc_api_array_view webrtc_api_units_time_delta webrtc_rtc_base_checks webrtc_rtc_base_stringutils webrtc_rtc_base_units_unit_base )

# api/units:frequency.headers
add_library(webrtc_api_units_frequency.headers INTERFACE)
target_link_libraries(webrtc_api_units_frequency.headers INTERFACE webrtc_api_array_view.headers webrtc_api_units_time_delta.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_units_unit_base.headers )
target_include_directories(webrtc_api_units_frequency.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/units:time_delta
add_library(webrtc_api_units_time_delta ${WEBRTC_ROOT}/api/units/time_delta.cc)
target_include_directories(webrtc_api_units_time_delta PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_units_time_delta PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_units_time_delta PRIVATE -GR-)
target_link_libraries(webrtc_api_units_time_delta PUBLIC webrtc_api_array_view webrtc_rtc_base_checks webrtc_rtc_base_stringutils webrtc_rtc_base_units_unit_base )

# api/units:time_delta.headers
add_library(webrtc_api_units_time_delta.headers INTERFACE)
target_link_libraries(webrtc_api_units_time_delta.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_units_unit_base.headers )
target_include_directories(webrtc_api_units_time_delta.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/units:timestamp
add_library(webrtc_api_units_timestamp ${WEBRTC_ROOT}/api/units/timestamp.cc)
target_include_directories(webrtc_api_units_timestamp PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_units_timestamp PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_units_timestamp PRIVATE -GR-)
target_link_libraries(webrtc_api_units_timestamp PUBLIC webrtc_api_array_view webrtc_api_units_time_delta webrtc_rtc_base_checks webrtc_rtc_base_stringutils webrtc_rtc_base_units_unit_base )

# api/units:timestamp.headers
add_library(webrtc_api_units_timestamp.headers INTERFACE)
target_link_libraries(webrtc_api_units_timestamp.headers INTERFACE webrtc_api_array_view.headers webrtc_api_units_time_delta.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_units_unit_base.headers )
target_include_directories(webrtc_api_units_timestamp.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:builtin_video_bitrate_allocator_factory
add_library(webrtc_api_video_builtin_video_bitrate_allocator_factory ${WEBRTC_ROOT}/api/video/builtin_video_bitrate_allocator_factory.cc)
target_include_directories(webrtc_api_video_builtin_video_bitrate_allocator_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_builtin_video_bitrate_allocator_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_builtin_video_bitrate_allocator_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_video_builtin_video_bitrate_allocator_factory PUBLIC absl::core_headers webrtc_api_scoped_refptr webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator webrtc_api_video_video_bitrate_allocator_factory webrtc_api_video_codecs_video_codecs_api webrtc_media_rtc_media_base webrtc_modules_video_coding_video_coding_utility webrtc_modules_video_coding_svc_svc_rate_allocator )

# api/video_codecs:bitstream_parser_api
add_library(webrtc_api_video_codecs_bitstream_parser_api INTERFACE)
target_link_libraries(webrtc_api_video_codecs_bitstream_parser_api INTERFACE webrtc_api_array_view )
target_include_directories(webrtc_api_video_codecs_bitstream_parser_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video_codecs:bitstream_parser_api.headers
add_library(webrtc_api_video_codecs_bitstream_parser_api.headers INTERFACE)
target_link_libraries(webrtc_api_video_codecs_bitstream_parser_api.headers INTERFACE webrtc_api_array_view.headers )
target_include_directories(webrtc_api_video_codecs_bitstream_parser_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video_codecs:builtin_video_decoder_factory
add_library(webrtc_api_video_codecs_builtin_video_decoder_factory ${WEBRTC_ROOT}/api/video_codecs/builtin_video_decoder_factory.cc)
target_include_directories(webrtc_api_video_codecs_builtin_video_decoder_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_codecs_builtin_video_decoder_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_codecs_builtin_video_decoder_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_video_codecs_builtin_video_decoder_factory PUBLIC webrtc_api_scoped_refptr webrtc_api_video_codecs_video_codecs_api webrtc_media_rtc_internal_video_codecs webrtc_rtc_base_system_rtc_export )

# api/video_codecs:builtin_video_encoder_factory
add_library(webrtc_api_video_codecs_builtin_video_encoder_factory ${WEBRTC_ROOT}/api/video_codecs/builtin_video_encoder_factory.cc)
target_include_directories(webrtc_api_video_codecs_builtin_video_encoder_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_codecs_builtin_video_encoder_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_codecs_builtin_video_encoder_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_video_codecs_builtin_video_encoder_factory PUBLIC absl::strings webrtc_api_scoped_refptr webrtc_api_video_codecs_video_codecs_api webrtc_media_rtc_encoder_simulcast_proxy webrtc_media_rtc_internal_video_codecs webrtc_media_rtc_media_base webrtc_rtc_base_checks webrtc_rtc_base_system_rtc_export )

# api/video_codecs:rtc_software_fallback_wrappers
add_library(webrtc_api_video_codecs_rtc_software_fallback_wrappers ${WEBRTC_ROOT}/api/video_codecs/video_decoder_software_fallback_wrapper.cc ${WEBRTC_ROOT}/api/video_codecs/video_encoder_software_fallback_wrapper.cc)
target_include_directories(webrtc_api_video_codecs_rtc_software_fallback_wrappers PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_codecs_rtc_software_fallback_wrappers PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_codecs_rtc_software_fallback_wrappers PRIVATE -GR-)
target_link_libraries(webrtc_api_video_codecs_rtc_software_fallback_wrappers PUBLIC absl::core_headers absl::strings absl::optional webrtc_api_fec_controller_api webrtc_api_video_encoded_image webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_media_rtc_media_base webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# api/video_codecs:video_codecs_api
add_library(webrtc_api_video_codecs_video_codecs_api ${WEBRTC_ROOT}/api/video_codecs/h264_profile_level_id.cc ${WEBRTC_ROOT}/api/video_codecs/sdp_video_format.cc ${WEBRTC_ROOT}/api/video_codecs/spatial_layer.cc ${WEBRTC_ROOT}/api/video_codecs/video_codec.cc ${WEBRTC_ROOT}/api/video_codecs/video_decoder.cc ${WEBRTC_ROOT}/api/video_codecs/video_encoder.cc ${WEBRTC_ROOT}/api/video_codecs/video_encoder_config.cc ${WEBRTC_ROOT}/api/video_codecs/vp8_frame_config.cc ${WEBRTC_ROOT}/api/video_codecs/vp8_temporal_layers.cc ${WEBRTC_ROOT}/api/video_codecs/vp9_profile.cc)
target_include_directories(webrtc_api_video_codecs_video_codecs_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_codecs_video_codecs_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_codecs_video_codecs_api PRIVATE -GR-)
target_link_libraries(webrtc_api_video_codecs_video_codecs_api PUBLIC absl::algorithm_container absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_api_fec_controller_api webrtc_api_scoped_refptr webrtc_api_units_data_rate webrtc_api_video_encoded_image webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_modules_video_coding_codec_globals_headers webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/video_codecs:video_codecs_api.headers
add_library(webrtc_api_video_codecs_video_codecs_api.headers INTERFACE)
target_link_libraries(webrtc_api_video_codecs_video_codecs_api.headers INTERFACE webrtc_api_array_view.headers webrtc_api_fec_controller_api.headers webrtc_api_scoped_refptr.headers webrtc_api_units_data_rate.headers webrtc_api_video_encoded_image.headers webrtc_api_video_video_bitrate_allocation.headers webrtc_api_video_video_codec_constants.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_rtp_headers.headers webrtc_modules_video_coding_codec_globals_headers.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_video_codecs_video_codecs_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video_codecs:vp8_temporal_layers_factory
add_library(webrtc_api_video_codecs_vp8_temporal_layers_factory ${WEBRTC_ROOT}/api/video_codecs/vp8_temporal_layers_factory.cc)
target_include_directories(webrtc_api_video_codecs_vp8_temporal_layers_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_codecs_vp8_temporal_layers_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_codecs_vp8_temporal_layers_factory PRIVATE -GR-)
target_link_libraries(webrtc_api_video_codecs_vp8_temporal_layers_factory PUBLIC webrtc_api_fec_controller_api webrtc_api_video_codecs_video_codecs_api webrtc_modules_video_coding_video_coding_utility webrtc_modules_video_coding_webrtc_vp8_temporal_layers webrtc_rtc_base_checks )

# api/video:encoded_frame
add_library(webrtc_api_video_encoded_frame ${WEBRTC_ROOT}/api/video/encoded_frame.cc)
target_include_directories(webrtc_api_video_encoded_frame PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_encoded_frame PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_encoded_frame PRIVATE -GR-)
target_link_libraries(webrtc_api_video_encoded_frame PUBLIC webrtc_modules_video_coding_encoded_frame )

# api/video:encoded_frame.headers
add_library(webrtc_api_video_encoded_frame.headers INTERFACE)
target_link_libraries(webrtc_api_video_encoded_frame.headers INTERFACE webrtc_modules_video_coding_encoded_frame.headers )
target_include_directories(webrtc_api_video_encoded_frame.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:encoded_image
add_library(webrtc_api_video_encoded_image ${WEBRTC_ROOT}/api/video/encoded_image.cc)
target_include_directories(webrtc_api_video_encoded_image PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_encoded_image PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_encoded_image PRIVATE -GR-)
target_link_libraries(webrtc_api_video_encoded_image PUBLIC absl::optional webrtc_api_refcountedbase webrtc_api_rtp_packet_info webrtc_api_scoped_refptr webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_video_frame_type webrtc_api_video_video_rtp_headers webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/video:encoded_image.headers
add_library(webrtc_api_video_encoded_image.headers INTERFACE)
target_link_libraries(webrtc_api_video_encoded_image.headers INTERFACE webrtc_api_refcountedbase.headers webrtc_api_rtp_packet_info.headers webrtc_api_scoped_refptr.headers webrtc_api_video_video_codec_constants.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_frame_type.headers webrtc_api_video_video_rtp_headers.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_video_encoded_image.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:recordable_encoded_frame
add_library(webrtc_api_video_recordable_encoded_frame INTERFACE)
target_link_libraries(webrtc_api_video_recordable_encoded_frame INTERFACE webrtc_api_array_view webrtc_api_scoped_refptr webrtc_api_units_timestamp webrtc_api_video_encoded_image webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_rtc_base_refcount )
target_include_directories(webrtc_api_video_recordable_encoded_frame INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:recordable_encoded_frame.headers
add_library(webrtc_api_video_recordable_encoded_frame.headers INTERFACE)
target_link_libraries(webrtc_api_video_recordable_encoded_frame.headers INTERFACE webrtc_api_array_view.headers webrtc_api_scoped_refptr.headers webrtc_api_units_timestamp.headers webrtc_api_video_encoded_image.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_rtp_headers.headers webrtc_rtc_base_refcount.headers )
target_include_directories(webrtc_api_video_recordable_encoded_frame.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video/test:mock_recordable_encoded_frame
add_library(webrtc_api_video_test_mock_recordable_encoded_frame INTERFACE)
target_link_libraries(webrtc_api_video_test_mock_recordable_encoded_frame INTERFACE webrtc_api_video_recordable_encoded_frame webrtc_test_test_support )
target_include_directories(webrtc_api_video_test_mock_recordable_encoded_frame INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_adaptation
add_library(webrtc_api_video_video_adaptation ${WEBRTC_ROOT}/api/video/video_adaptation_counters.cc)
target_include_directories(webrtc_api_video_video_adaptation PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_video_adaptation PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_video_adaptation PRIVATE -GR-)
target_link_libraries(webrtc_api_video_video_adaptation PUBLIC webrtc_rtc_base_checks webrtc_rtc_base_stringutils )

# api/video:video_adaptation.headers
add_library(webrtc_api_video_video_adaptation.headers INTERFACE)
target_link_libraries(webrtc_api_video_video_adaptation.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_stringutils.headers )
target_include_directories(webrtc_api_video_video_adaptation.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_bitrate_allocation
add_library(webrtc_api_video_video_bitrate_allocation ${WEBRTC_ROOT}/api/video/video_bitrate_allocation.cc)
target_include_directories(webrtc_api_video_video_bitrate_allocation PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_video_bitrate_allocation PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_video_bitrate_allocation PRIVATE -GR-)
target_link_libraries(webrtc_api_video_video_bitrate_allocation PUBLIC absl::optional webrtc_api_video_video_codec_constants webrtc_rtc_base_checks webrtc_rtc_base_safe_conversions webrtc_rtc_base_stringutils webrtc_rtc_base_system_rtc_export )

# api/video:video_bitrate_allocation.headers
add_library(webrtc_api_video_video_bitrate_allocation.headers INTERFACE)
target_link_libraries(webrtc_api_video_video_bitrate_allocation.headers INTERFACE webrtc_api_video_video_codec_constants.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_conversions.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_video_video_bitrate_allocation.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_bitrate_allocator
add_library(webrtc_api_video_video_bitrate_allocator ${WEBRTC_ROOT}/api/video/video_bitrate_allocator.cc)
target_include_directories(webrtc_api_video_video_bitrate_allocator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_video_bitrate_allocator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_video_bitrate_allocator PRIVATE -GR-)
target_link_libraries(webrtc_api_video_video_bitrate_allocator PUBLIC webrtc_api_units_data_rate webrtc_api_video_video_bitrate_allocation )

# api/video:video_bitrate_allocator.headers
add_library(webrtc_api_video_video_bitrate_allocator.headers INTERFACE)
target_link_libraries(webrtc_api_video_video_bitrate_allocator.headers INTERFACE webrtc_api_units_data_rate.headers webrtc_api_video_video_bitrate_allocation.headers )
target_include_directories(webrtc_api_video_video_bitrate_allocator.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_bitrate_allocator_factory
add_library(webrtc_api_video_video_bitrate_allocator_factory INTERFACE)
target_link_libraries(webrtc_api_video_video_bitrate_allocator_factory INTERFACE webrtc_api_video_video_bitrate_allocator webrtc_api_video_codecs_video_codecs_api webrtc_rtc_base_rtc_base_approved )
target_include_directories(webrtc_api_video_video_bitrate_allocator_factory INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_bitrate_allocator_factory.headers
add_library(webrtc_api_video_video_bitrate_allocator_factory.headers INTERFACE)
target_link_libraries(webrtc_api_video_video_bitrate_allocator_factory.headers INTERFACE webrtc_api_video_video_bitrate_allocator.headers webrtc_api_video_codecs_video_codecs_api.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_api_video_video_bitrate_allocator_factory.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_codec_constants
add_library(webrtc_api_video_video_codec_constants INTERFACE)
target_include_directories(webrtc_api_video_video_codec_constants INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_codec_constants.headers
add_library(webrtc_api_video_video_codec_constants.headers INTERFACE)
target_include_directories(webrtc_api_video_video_codec_constants.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_frame
add_library(webrtc_api_video_video_frame ${WEBRTC_ROOT}/api/video/i420_buffer.cc ${WEBRTC_ROOT}/api/video/nv12_buffer.cc ${WEBRTC_ROOT}/api/video/video_frame.cc ${WEBRTC_ROOT}/api/video/video_frame_buffer.cc ${WEBRTC_ROOT}/api/video/video_source_interface.cc)
target_include_directories(webrtc_api_video_video_frame PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_video_frame PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_video_frame PRIVATE -GR-)
target_link_libraries(webrtc_api_video_video_frame PUBLIC absl::optional webrtc-yuv webrtc_api_array_view webrtc_api_rtp_packet_info webrtc_api_scoped_refptr webrtc_api_video_video_rtp_headers webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_memory_aligned_malloc webrtc_rtc_base_system_rtc_export )

# api/video:video_frame.headers
add_library(webrtc_api_video_video_frame.headers INTERFACE)
target_link_libraries(webrtc_api_video_video_frame.headers INTERFACE webrtc_api_array_view.headers webrtc_api_rtp_packet_info.headers webrtc_api_scoped_refptr.headers webrtc_api_video_video_rtp_headers.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_memory_aligned_malloc.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_video_video_frame.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_frame_i010
add_library(webrtc_api_video_video_frame_i010 ${WEBRTC_ROOT}/api/video/i010_buffer.cc)
target_include_directories(webrtc_api_video_video_frame_i010 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_video_frame_i010 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_video_frame_i010 PRIVATE -GR-)
target_link_libraries(webrtc_api_video_video_frame_i010 PUBLIC webrtc-yuv webrtc_api_scoped_refptr webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_memory_aligned_malloc )

# api/video:video_frame_metadata
add_library(webrtc_api_video_video_frame_metadata ${WEBRTC_ROOT}/api/video/video_frame_metadata.cc)
target_include_directories(webrtc_api_video_video_frame_metadata PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_video_frame_metadata PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_video_frame_metadata PRIVATE -GR-)
target_link_libraries(webrtc_api_video_video_frame_metadata PUBLIC absl::algorithm_container absl::optional webrtc_api_array_view webrtc_api_transport_rtp_dependency_descriptor webrtc_modules_rtp_rtcp_rtp_video_header )

# api/video:video_frame_metadata.headers
add_library(webrtc_api_video_video_frame_metadata.headers INTERFACE)
target_link_libraries(webrtc_api_video_video_frame_metadata.headers INTERFACE webrtc_api_array_view.headers webrtc_api_transport_rtp_dependency_descriptor.headers webrtc_modules_rtp_rtcp_rtp_video_header.headers )
target_include_directories(webrtc_api_video_video_frame_metadata.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_frame_type
add_library(webrtc_api_video_video_frame_type INTERFACE)
target_include_directories(webrtc_api_video_video_frame_type INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_frame_type.headers
add_library(webrtc_api_video_video_frame_type.headers INTERFACE)
target_include_directories(webrtc_api_video_video_frame_type.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_layers_allocation
add_library(webrtc_api_video_video_layers_allocation INTERFACE)
target_link_libraries(webrtc_api_video_video_layers_allocation INTERFACE absl::algorithm_container webrtc_api_units_data_rate )
target_include_directories(webrtc_api_video_video_layers_allocation INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_layers_allocation.headers
add_library(webrtc_api_video_video_layers_allocation.headers INTERFACE)
target_link_libraries(webrtc_api_video_video_layers_allocation.headers INTERFACE webrtc_api_units_data_rate.headers )
target_include_directories(webrtc_api_video_video_layers_allocation.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_rtp_headers
add_library(webrtc_api_video_video_rtp_headers ${WEBRTC_ROOT}/api/video/color_space.cc ${WEBRTC_ROOT}/api/video/hdr_metadata.cc ${WEBRTC_ROOT}/api/video/video_content_type.cc ${WEBRTC_ROOT}/api/video/video_timing.cc)
target_include_directories(webrtc_api_video_video_rtp_headers PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_api_video_video_rtp_headers PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_api_video_video_rtp_headers PRIVATE -GR-)
target_link_libraries(webrtc_api_video_video_rtp_headers PUBLIC absl::algorithm_container absl::optional webrtc_api_array_view webrtc_api_units_data_rate webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# api/video:video_rtp_headers.headers
add_library(webrtc_api_video_video_rtp_headers.headers INTERFACE)
target_link_libraries(webrtc_api_video_video_rtp_headers.headers INTERFACE webrtc_api_array_view.headers webrtc_api_units_data_rate.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_api_video_video_rtp_headers.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_stream_encoder
add_library(webrtc_api_video_video_stream_encoder INTERFACE)
target_link_libraries(webrtc_api_video_video_stream_encoder INTERFACE absl::optional webrtc_api_fec_controller_api webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_adaptation_resource_adaptation_api webrtc_api_units_data_rate webrtc_api_video_video_adaptation webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator webrtc_api_video_video_bitrate_allocator_factory webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_video_layers_allocation webrtc_api_video_codecs_video_codecs_api )
target_include_directories(webrtc_api_video_video_stream_encoder INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# api/video:video_stream_encoder.headers
add_library(webrtc_api_video_video_stream_encoder.headers INTERFACE)
target_link_libraries(webrtc_api_video_video_stream_encoder.headers INTERFACE webrtc_api_fec_controller_api.headers webrtc_api_rtp_parameters.headers webrtc_api_scoped_refptr.headers webrtc_api_adaptation_resource_adaptation_api.headers webrtc_api_units_data_rate.headers webrtc_api_video_video_adaptation.headers webrtc_api_video_video_bitrate_allocation.headers webrtc_api_video_video_bitrate_allocator.headers webrtc_api_video_video_bitrate_allocator_factory.headers webrtc_api_video_video_codec_constants.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_layers_allocation.headers webrtc_api_video_codecs_video_codecs_api.headers )
target_include_directories(webrtc_api_video_video_stream_encoder.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# audio
add_library(webrtc_audio_audio ${WEBRTC_ROOT}/audio/audio_level.cc ${WEBRTC_ROOT}/audio/audio_receive_stream.cc ${WEBRTC_ROOT}/audio/audio_send_stream.cc ${WEBRTC_ROOT}/audio/audio_state.cc ${WEBRTC_ROOT}/audio/audio_transport_impl.cc ${WEBRTC_ROOT}/audio/channel_receive.cc ${WEBRTC_ROOT}/audio/channel_receive_frame_transformer_delegate.cc ${WEBRTC_ROOT}/audio/channel_send.cc ${WEBRTC_ROOT}/audio/channel_send_frame_transformer_delegate.cc ${WEBRTC_ROOT}/audio/null_audio_poller.cc ${WEBRTC_ROOT}/audio/remix_resample.cc)
target_include_directories(webrtc_audio_audio PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_audio_audio PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_audio_audio PRIVATE -GR-)
target_link_libraries(webrtc_audio_audio PUBLIC absl::memory absl::optional webrtc_api_array_view webrtc_api_call_api webrtc_api_frame_transformer_interface webrtc_api_function_view webrtc_api_rtp_headers webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_transport_api webrtc_api_audio_aec3_factory webrtc_api_audio_audio_frame_api webrtc_api_audio_audio_frame_processor webrtc_api_audio_audio_mixer_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_crypto_frame_decryptor_interface webrtc_api_crypto_frame_encryptor_interface webrtc_api_crypto_options webrtc_api_neteq_neteq_api webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_api_transport_rtp_rtp_source webrtc_audio_utility_audio_frame_operations webrtc_call_audio_sender_interface webrtc_call_bitrate_allocator webrtc_call_call_interfaces webrtc_call_rtp_interfaces webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_logging_rtc_event_audio webrtc_logging_rtc_stream_config webrtc_modules_async_audio_processing_async_audio_processing webrtc_modules_audio_coding_audio_coding webrtc_modules_audio_coding_audio_coding_module_typedefs webrtc_modules_audio_coding_audio_encoder_cng webrtc_modules_audio_coding_audio_network_adaptor_config webrtc_modules_audio_coding_red webrtc_modules_audio_device_audio_device webrtc_modules_audio_processing_audio_processing webrtc_modules_audio_processing_api webrtc_modules_audio_processing_audio_frame_proxies webrtc_modules_audio_processing_rms_level webrtc_modules_pacing_pacing webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_utility_utility webrtc_rtc_base_rtc_base webrtc_rtc_base_audio_format_to_string webrtc_rtc_base_checks webrtc_rtc_base_rate_limiter webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_safe_minmax webrtc_rtc_base_threading webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# audio/utility:audio_frame_operations
add_library(webrtc_audio_utility_audio_frame_operations ${WEBRTC_ROOT}/audio/utility/audio_frame_operations.cc ${WEBRTC_ROOT}/audio/utility/channel_mixer.cc ${WEBRTC_ROOT}/audio/utility/channel_mixing_matrix.cc)
target_include_directories(webrtc_audio_utility_audio_frame_operations PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_audio_utility_audio_frame_operations PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_audio_utility_audio_frame_operations PRIVATE -GR-)
target_link_libraries(webrtc_audio_utility_audio_frame_operations PUBLIC absl::core_headers webrtc_api_audio_audio_frame_api webrtc_common_audio_common_audio webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_field_trial )

# audio/utility:audio_frame_operations.headers
add_library(webrtc_audio_utility_audio_frame_operations.headers INTERFACE)
target_link_libraries(webrtc_audio_utility_audio_frame_operations.headers INTERFACE webrtc_api_audio_audio_frame_api.headers webrtc_common_audio_common_audio.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_system_wrappers_field_trial.headers )
target_include_directories(webrtc_audio_utility_audio_frame_operations.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# call/adaptation:resource_adaptation
add_library(webrtc_call_adaptation_resource_adaptation ${WEBRTC_ROOT}/call/adaptation/adaptation_constraint.cc ${WEBRTC_ROOT}/call/adaptation/broadcast_resource_listener.cc ${WEBRTC_ROOT}/call/adaptation/degradation_preference_provider.cc ${WEBRTC_ROOT}/call/adaptation/encoder_settings.cc ${WEBRTC_ROOT}/call/adaptation/resource_adaptation_processor.cc ${WEBRTC_ROOT}/call/adaptation/resource_adaptation_processor_interface.cc ${WEBRTC_ROOT}/call/adaptation/video_source_restrictions.cc ${WEBRTC_ROOT}/call/adaptation/video_stream_adapter.cc ${WEBRTC_ROOT}/call/adaptation/video_stream_input_state.cc ${WEBRTC_ROOT}/call/adaptation/video_stream_input_state_provider.cc)
target_include_directories(webrtc_call_adaptation_resource_adaptation PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_adaptation_resource_adaptation PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_adaptation_resource_adaptation PRIVATE -GR-)
target_link_libraries(webrtc_call_adaptation_resource_adaptation PUBLIC absl::algorithm_container absl::optional absl::variant webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_adaptation_resource_adaptation_api webrtc_api_task_queue_task_queue webrtc_api_video_video_adaptation webrtc_api_video_video_frame webrtc_api_video_video_stream_encoder webrtc_api_video_codecs_video_codecs_api webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_experiments_balanced_degradation_settings webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_task_utils_to_queued_task )

# call/adaptation:resource_adaptation_test_utilities
add_library(webrtc_call_adaptation_resource_adaptation_test_utilities ${WEBRTC_ROOT}/call/adaptation/test/fake_adaptation_constraint.cc ${WEBRTC_ROOT}/call/adaptation/test/fake_frame_rate_provider.cc ${WEBRTC_ROOT}/call/adaptation/test/fake_resource.cc ${WEBRTC_ROOT}/call/adaptation/test/fake_video_stream_input_state_provider.cc)
target_include_directories(webrtc_call_adaptation_resource_adaptation_test_utilities PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_adaptation_resource_adaptation_test_utilities PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_call_adaptation_resource_adaptation_test_utilities PRIVATE -GR-)
target_link_libraries(webrtc_call_adaptation_resource_adaptation_test_utilities PUBLIC absl::optional webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_adaptation_resource_adaptation_api webrtc_api_task_queue_task_queue webrtc_api_video_video_stream_encoder webrtc_call_adaptation_resource_adaptation webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_task_utils_to_queued_task webrtc_test_test_support )

# call:audio_sender_interface
add_library(webrtc_call_audio_sender_interface INTERFACE)
target_link_libraries(webrtc_call_audio_sender_interface INTERFACE webrtc_api_audio_audio_frame_api )
target_include_directories(webrtc_call_audio_sender_interface INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# call:audio_sender_interface.headers
add_library(webrtc_call_audio_sender_interface.headers INTERFACE)
target_link_libraries(webrtc_call_audio_sender_interface.headers INTERFACE webrtc_api_audio_audio_frame_api.headers )
target_include_directories(webrtc_call_audio_sender_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# call:bitrate_allocator
add_library(webrtc_call_bitrate_allocator ${WEBRTC_ROOT}/call/bitrate_allocator.cc)
target_include_directories(webrtc_call_bitrate_allocator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_bitrate_allocator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_bitrate_allocator PRIVATE -GR-)
target_link_libraries(webrtc_call_bitrate_allocator PUBLIC absl::algorithm_container webrtc_api_bitrate_allocation webrtc_api_sequence_checker webrtc_api_transport_network_control webrtc_api_units_data_rate webrtc_api_units_time_delta webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_rtc_base_system_no_unique_address webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# call:bitrate_configurator
add_library(webrtc_call_bitrate_configurator ${WEBRTC_ROOT}/call/rtp_bitrate_configurator.cc)
target_include_directories(webrtc_call_bitrate_configurator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_bitrate_configurator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_bitrate_configurator PRIVATE -GR-)
target_link_libraries(webrtc_call_bitrate_configurator PUBLIC absl::optional webrtc_api_libjingle_peerconnection_api webrtc_api_transport_bitrate_settings webrtc_api_units_data_rate webrtc_call_rtp_interfaces webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# call
add_library(webrtc_call_call ${WEBRTC_ROOT}/call/call.cc ${WEBRTC_ROOT}/call/call_factory.cc ${WEBRTC_ROOT}/call/degraded_call.cc ${WEBRTC_ROOT}/call/flexfec_receive_stream_impl.cc ${WEBRTC_ROOT}/call/receive_time_calculator.cc)
target_include_directories(webrtc_call_call PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_call PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_call PRIVATE -GR-)
target_link_libraries(webrtc_call_call PUBLIC absl::bind_front absl::optional webrtc_api_array_view webrtc_api_callfactory_api webrtc_api_fec_controller_api webrtc_api_rtp_headers webrtc_api_rtp_parameters webrtc_api_sequence_checker webrtc_api_simulated_network_api webrtc_api_transport_api webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_network_control webrtc_api_units_time_delta webrtc_api_video_codecs_video_codecs_api webrtc_audio_audio webrtc_call_bitrate_allocator webrtc_call_call_interfaces webrtc_call_fake_network webrtc_call_rtp_interfaces webrtc_call_rtp_receiver webrtc_call_rtp_sender webrtc_call_simulated_network webrtc_call_version webrtc_call_video_stream_api webrtc_call_adaptation_resource_adaptation webrtc_logging_rtc_event_audio webrtc_logging_rtc_event_rtp_rtcp webrtc_logging_rtc_event_video webrtc_logging_rtc_stream_config webrtc_modules_congestion_controller_congestion_controller webrtc_modules_pacing_pacing webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_utility_utility webrtc_modules_video_coding_video_coding webrtc_rtc_base_checks webrtc_rtc_base_rate_limiter webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_safe_minmax webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_network_sent_packet webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics webrtc_video_video )

# call:call_interfaces
add_library(webrtc_call_call_interfaces ${WEBRTC_ROOT}/call/audio_receive_stream.cc ${WEBRTC_ROOT}/call/audio_send_stream.cc ${WEBRTC_ROOT}/call/audio_state.cc ${WEBRTC_ROOT}/call/call_config.cc ${WEBRTC_ROOT}/call/flexfec_receive_stream.cc ${WEBRTC_ROOT}/call/syncable.cc)
target_include_directories(webrtc_call_call_interfaces PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_call_interfaces PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_call_interfaces PRIVATE -GR-)
target_link_libraries(webrtc_call_call_interfaces PUBLIC absl::bind_front absl::optional webrtc_api_fec_controller_api webrtc_api_frame_transformer_interface webrtc_api_network_state_predictor_api webrtc_api_rtc_error webrtc_api_rtp_headers webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_transport_api webrtc_api_adaptation_resource_adaptation_api webrtc_api_audio_audio_frame_processor webrtc_api_audio_audio_mixer_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_crypto_frame_encryptor_interface webrtc_api_crypto_options webrtc_api_neteq_neteq_api webrtc_api_task_queue_task_queue webrtc_api_transport_bitrate_settings webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_call_audio_sender_interface webrtc_call_receive_stream_interface webrtc_call_rtp_interfaces webrtc_call_video_stream_api webrtc_modules_async_audio_processing_async_audio_processing webrtc_modules_audio_device_audio_device webrtc_modules_audio_processing_audio_processing webrtc_modules_audio_processing_api webrtc_modules_audio_processing_audio_processing_statistics webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_utility_utility webrtc_rtc_base_rtc_base webrtc_rtc_base_audio_format_to_string webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_network_sent_packet )

# call:call_interfaces.headers
add_library(webrtc_call_call_interfaces.headers INTERFACE)
target_link_libraries(webrtc_call_call_interfaces.headers INTERFACE webrtc_api_fec_controller_api.headers webrtc_api_frame_transformer_interface.headers webrtc_api_network_state_predictor_api.headers webrtc_api_rtc_error.headers webrtc_api_rtp_headers.headers webrtc_api_rtp_parameters.headers webrtc_api_scoped_refptr.headers webrtc_api_transport_api.headers webrtc_api_adaptation_resource_adaptation_api.headers webrtc_api_audio_audio_frame_processor.headers webrtc_api_audio_audio_mixer_api.headers webrtc_api_audio_codecs_audio_codecs_api.headers webrtc_api_crypto_frame_encryptor_interface.headers webrtc_api_crypto_options.headers webrtc_api_neteq_neteq_api.headers webrtc_api_task_queue_task_queue.headers webrtc_api_transport_bitrate_settings.headers webrtc_api_transport_network_control.headers webrtc_api_transport_webrtc_key_value_config.headers webrtc_call_audio_sender_interface.headers webrtc_call_receive_stream_interface.headers webrtc_call_rtp_interfaces.headers webrtc_call_video_stream_api.headers webrtc_modules_async_audio_processing_async_audio_processing.headers webrtc_modules_audio_device_audio_device.headers webrtc_modules_audio_processing_api.headers webrtc_modules_audio_processing_audio_processing.headers webrtc_modules_audio_processing_audio_processing_statistics.headers webrtc_modules_rtp_rtcp_rtp_rtcp_format.headers webrtc_modules_utility_utility.headers webrtc_rtc_base_audio_format_to_string.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_network_sent_packet.headers )
target_include_directories(webrtc_call_call_interfaces.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# call:fake_network
add_library(webrtc_call_fake_network ${WEBRTC_ROOT}/call/fake_network_pipe.cc)
target_include_directories(webrtc_call_fake_network PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_fake_network PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_fake_network PRIVATE -GR-)
target_link_libraries(webrtc_call_fake_network PUBLIC webrtc_api_rtp_parameters webrtc_api_sequence_checker webrtc_api_simulated_network_api webrtc_api_transport_api webrtc_call_call_interfaces webrtc_call_simulated_network webrtc_call_simulated_packet_receiver webrtc_modules_utility_utility webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers )

# call:mock_rtp_interfaces
add_library(webrtc_call_mock_rtp_interfaces INTERFACE)
target_link_libraries(webrtc_call_mock_rtp_interfaces INTERFACE webrtc_api_frame_transformer_interface webrtc_api_libjingle_peerconnection_api webrtc_api_crypto_frame_encryptor_interface webrtc_api_crypto_options webrtc_api_transport_bitrate_settings webrtc_call_rtp_interfaces webrtc_modules_pacing_pacing webrtc_rtc_base_rtc_base webrtc_rtc_base_rate_limiter webrtc_rtc_base_network_sent_packet webrtc_test_test_support )
target_include_directories(webrtc_call_mock_rtp_interfaces INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# call:receive_stream_interface
add_library(webrtc_call_receive_stream_interface INTERFACE)
target_link_libraries(webrtc_call_receive_stream_interface INTERFACE webrtc_api_frame_transformer_interface webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_crypto_frame_decryptor_interface webrtc_api_transport_rtp_rtp_source )
target_include_directories(webrtc_call_receive_stream_interface INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# call:receive_stream_interface.headers
add_library(webrtc_call_receive_stream_interface.headers INTERFACE)
target_link_libraries(webrtc_call_receive_stream_interface.headers INTERFACE webrtc_api_frame_transformer_interface.headers webrtc_api_rtp_parameters.headers webrtc_api_scoped_refptr.headers webrtc_api_crypto_frame_decryptor_interface.headers webrtc_api_transport_rtp_rtp_source.headers )
target_include_directories(webrtc_call_receive_stream_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# call:rtp_interfaces
add_library(webrtc_call_rtp_interfaces ${WEBRTC_ROOT}/call/rtp_config.cc)
target_include_directories(webrtc_call_rtp_interfaces PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_rtp_interfaces PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_rtp_interfaces PRIVATE -GR-)
target_link_libraries(webrtc_call_rtp_interfaces PUBLIC absl::algorithm_container absl::optional webrtc_api_array_view webrtc_api_fec_controller_api webrtc_api_frame_transformer_interface webrtc_api_network_state_predictor_api webrtc_api_rtp_headers webrtc_api_rtp_parameters webrtc_api_crypto_options webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_bitrate_settings webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_api_units_timestamp webrtc_common_video_frame_counts webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_utility_utility webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue )

# call:rtp_interfaces.headers
add_library(webrtc_call_rtp_interfaces.headers INTERFACE)
target_link_libraries(webrtc_call_rtp_interfaces.headers INTERFACE webrtc_api_array_view.headers webrtc_api_fec_controller_api.headers webrtc_api_frame_transformer_interface.headers webrtc_api_network_state_predictor_api.headers webrtc_api_rtp_headers.headers webrtc_api_rtp_parameters.headers webrtc_api_crypto_options.headers webrtc_api_rtc_event_log_rtc_event_log.headers webrtc_api_transport_bitrate_settings.headers webrtc_api_transport_network_control.headers webrtc_api_transport_webrtc_key_value_config.headers webrtc_api_units_timestamp.headers webrtc_common_video_frame_counts.headers webrtc_modules_rtp_rtcp_rtp_rtcp_format.headers webrtc_modules_utility_utility.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_rtc_task_queue.headers )
target_include_directories(webrtc_call_rtp_interfaces.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# call:rtp_receiver
add_library(webrtc_call_rtp_receiver ${WEBRTC_ROOT}/call/rtp_demuxer.cc ${WEBRTC_ROOT}/call/rtp_stream_receiver_controller.cc ${WEBRTC_ROOT}/call/rtx_receive_stream.cc)
target_include_directories(webrtc_call_rtp_receiver PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_rtp_receiver PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_rtp_receiver PRIVATE -GR-)
target_link_libraries(webrtc_call_rtp_receiver PUBLIC absl::optional webrtc_api_array_view webrtc_api_rtp_headers webrtc_api_sequence_checker webrtc_call_rtp_interfaces webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# call:rtp_sender
add_library(webrtc_call_rtp_sender ${WEBRTC_ROOT}/call/rtp_payload_params.cc ${WEBRTC_ROOT}/call/rtp_transport_controller_send.cc ${WEBRTC_ROOT}/call/rtp_video_sender.cc)
target_include_directories(webrtc_call_rtp_sender PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_rtp_sender PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_rtp_sender PRIVATE -GR-)
target_link_libraries(webrtc_call_rtp_sender PUBLIC absl::algorithm_container absl::algorithm_container absl::strings absl::optional absl::variant webrtc_api_array_view webrtc_api_bitrate_allocation webrtc_api_fec_controller_api webrtc_api_network_state_predictor_api webrtc_api_rtp_parameters webrtc_api_sequence_checker webrtc_api_transport_api webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_field_trial_based_config webrtc_api_transport_goog_cc webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_rate webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_api_video_video_frame webrtc_api_video_video_layers_allocation webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_call_bitrate_configurator webrtc_call_rtp_interfaces webrtc_logging_rtc_event_bwe webrtc_modules_congestion_controller_congestion_controller webrtc_modules_congestion_controller_rtp_control_handler webrtc_modules_congestion_controller_rtp_transport_feedback webrtc_modules_pacing_pacing webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_rtp_rtcp_rtp_video_header webrtc_modules_utility_utility webrtc_modules_video_coding_chain_diff_calculator webrtc_modules_video_coding_codec_globals_headers webrtc_modules_video_coding_frame_dependencies_calculator webrtc_modules_video_coding_video_codec_interface webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rate_limiter webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_repeating_task )

# call:simulated_network
add_library(webrtc_call_simulated_network ${WEBRTC_ROOT}/call/simulated_network.cc)
target_include_directories(webrtc_call_simulated_network PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_simulated_network PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_simulated_network PRIVATE -GR-)
target_link_libraries(webrtc_call_simulated_network PUBLIC absl::optional webrtc_api_sequence_checker webrtc_api_simulated_network_api webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_synchronization_mutex )

# call:simulated_packet_receiver
add_library(webrtc_call_simulated_packet_receiver INTERFACE)
target_link_libraries(webrtc_call_simulated_packet_receiver INTERFACE webrtc_api_simulated_network_api webrtc_call_call_interfaces )
target_include_directories(webrtc_call_simulated_packet_receiver INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# call:version
add_library(webrtc_call_version ${WEBRTC_ROOT}/call/version.cc)
target_include_directories(webrtc_call_version PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_version PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_version PRIVATE -GR-)

# call:video_stream_api
add_library(webrtc_call_video_stream_api ${WEBRTC_ROOT}/call/video_receive_stream.cc ${WEBRTC_ROOT}/call/video_send_stream.cc)
target_include_directories(webrtc_call_video_stream_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_call_video_stream_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_call_video_stream_api PRIVATE -GR-)
target_link_libraries(webrtc_call_video_stream_api PUBLIC absl::optional webrtc_api_frame_transformer_interface webrtc_api_rtp_headers webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_transport_api webrtc_api_adaptation_resource_adaptation_api webrtc_api_crypto_frame_encryptor_interface webrtc_api_crypto_options webrtc_api_video_recordable_encoded_frame webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_video_stream_encoder webrtc_api_video_codecs_video_codecs_api webrtc_call_receive_stream_interface webrtc_call_rtp_interfaces webrtc_common_video_common_video webrtc_common_video_frame_counts webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# call:video_stream_api.headers
add_library(webrtc_call_video_stream_api.headers INTERFACE)
target_link_libraries(webrtc_call_video_stream_api.headers INTERFACE webrtc_api_frame_transformer_interface.headers webrtc_api_rtp_headers.headers webrtc_api_rtp_parameters.headers webrtc_api_scoped_refptr.headers webrtc_api_transport_api.headers webrtc_api_adaptation_resource_adaptation_api.headers webrtc_api_crypto_frame_encryptor_interface.headers webrtc_api_crypto_options.headers webrtc_api_video_recordable_encoded_frame.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_rtp_headers.headers webrtc_api_video_video_stream_encoder.headers webrtc_api_video_codecs_video_codecs_api.headers webrtc_call_receive_stream_interface.headers webrtc_call_rtp_interfaces.headers webrtc_common_video_common_video.headers webrtc_common_video_frame_counts.headers webrtc_modules_rtp_rtcp_rtp_rtcp_format.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_call_video_stream_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio
add_library(webrtc_common_audio_common_audio ${WEBRTC_ROOT}/common_audio/audio_converter.cc ${WEBRTC_ROOT}/common_audio/audio_util.cc ${WEBRTC_ROOT}/common_audio/channel_buffer.cc ${WEBRTC_ROOT}/common_audio/real_fourier.cc ${WEBRTC_ROOT}/common_audio/real_fourier_ooura.cc ${WEBRTC_ROOT}/common_audio/resampler/push_resampler.cc ${WEBRTC_ROOT}/common_audio/resampler/push_sinc_resampler.cc ${WEBRTC_ROOT}/common_audio/resampler/resampler.cc ${WEBRTC_ROOT}/common_audio/resampler/sinc_resampler.cc ${WEBRTC_ROOT}/common_audio/smoothing_filter.cc ${WEBRTC_ROOT}/common_audio/vad/vad.cc ${WEBRTC_ROOT}/common_audio/wav_file.cc ${WEBRTC_ROOT}/common_audio/wav_header.cc ${WEBRTC_ROOT}/common_audio/window_generator.cc)
target_include_directories(webrtc_common_audio_common_audio PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_common_audio_common_audio PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_common_audio_common_audio PRIVATE -GR-)
target_link_libraries(webrtc_common_audio_common_audio PUBLIC webrtc_common_audio_common_audio_avx2 webrtc_common_audio_common_audio_sse2 absl::optional webrtc_fft_size_256 webrtc_api_array_view webrtc_common_audio_common_audio_c webrtc_common_audio_sinc_resampler webrtc_rtc_base_checks webrtc_rtc_base_gtest_prod webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_sanitizer webrtc_rtc_base_memory_aligned_malloc webrtc_rtc_base_system_arch webrtc_rtc_base_system_file_wrapper webrtc_system_wrappers_system_wrappers )

# common_audio:common_audio.headers
add_library(webrtc_common_audio_common_audio.headers INTERFACE)
target_link_libraries(webrtc_common_audio_common_audio.headers INTERFACE webrtc_common_audio_common_audio_avx2.headers webrtc_common_audio_common_audio_sse2.headers webrtc_api_array_view.headers webrtc_common_audio_common_audio_c.headers webrtc_common_audio_sinc_resampler.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_gtest_prod.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_sanitizer.headers webrtc_rtc_base_memory_aligned_malloc.headers webrtc_rtc_base_system_arch.headers webrtc_rtc_base_system_file_wrapper.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_common_audio_common_audio.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:common_audio_avx2
add_library(webrtc_common_audio_common_audio_avx2 ${WEBRTC_ROOT}/common_audio/fir_filter_avx2.cc ${WEBRTC_ROOT}/common_audio/resampler/sinc_resampler_avx2.cc)
target_include_directories(webrtc_common_audio_common_audio_avx2 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_common_audio_common_audio_avx2 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_common_audio_common_audio_avx2 PRIVATE -GR- -mavx2 -mfma)
target_link_libraries(webrtc_common_audio_common_audio_avx2 PUBLIC webrtc_common_audio_fir_filter webrtc_common_audio_sinc_resampler webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_memory_aligned_malloc )

# common_audio:common_audio_avx2.headers
add_library(webrtc_common_audio_common_audio_avx2.headers INTERFACE)
target_link_libraries(webrtc_common_audio_common_audio_avx2.headers INTERFACE webrtc_common_audio_fir_filter.headers webrtc_common_audio_sinc_resampler.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_memory_aligned_malloc.headers )
target_include_directories(webrtc_common_audio_common_audio_avx2.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:common_audio_c
add_library(webrtc_common_audio_common_audio_c ${WEBRTC_ROOT}/common_audio/signal_processing/complex_bit_reverse.c ${WEBRTC_ROOT}/common_audio/signal_processing/filter_ar_fast_q12.c ${WEBRTC_ROOT}/common_audio/ring_buffer.c ${WEBRTC_ROOT}/common_audio/signal_processing/auto_corr_to_refl_coef.c ${WEBRTC_ROOT}/common_audio/signal_processing/auto_correlation.c ${WEBRTC_ROOT}/common_audio/signal_processing/complex_fft.c ${WEBRTC_ROOT}/common_audio/signal_processing/copy_set_operations.c ${WEBRTC_ROOT}/common_audio/signal_processing/cross_correlation.c ${WEBRTC_ROOT}/common_audio/signal_processing/division_operations.c ${WEBRTC_ROOT}/common_audio/signal_processing/downsample_fast.c ${WEBRTC_ROOT}/common_audio/signal_processing/energy.c ${WEBRTC_ROOT}/common_audio/signal_processing/filter_ar.c ${WEBRTC_ROOT}/common_audio/signal_processing/filter_ma_fast_q12.c ${WEBRTC_ROOT}/common_audio/signal_processing/get_hanning_window.c ${WEBRTC_ROOT}/common_audio/signal_processing/get_scaling_square.c ${WEBRTC_ROOT}/common_audio/signal_processing/ilbc_specific_functions.c ${WEBRTC_ROOT}/common_audio/signal_processing/levinson_durbin.c ${WEBRTC_ROOT}/common_audio/signal_processing/lpc_to_refl_coef.c ${WEBRTC_ROOT}/common_audio/signal_processing/min_max_operations.c ${WEBRTC_ROOT}/common_audio/signal_processing/randomization_functions.c ${WEBRTC_ROOT}/common_audio/signal_processing/real_fft.c ${WEBRTC_ROOT}/common_audio/signal_processing/refl_coef_to_lpc.c ${WEBRTC_ROOT}/common_audio/signal_processing/resample.c ${WEBRTC_ROOT}/common_audio/signal_processing/resample_48khz.c ${WEBRTC_ROOT}/common_audio/signal_processing/resample_by_2.c ${WEBRTC_ROOT}/common_audio/signal_processing/resample_by_2_internal.c ${WEBRTC_ROOT}/common_audio/signal_processing/resample_fractional.c ${WEBRTC_ROOT}/common_audio/signal_processing/spl_init.c ${WEBRTC_ROOT}/common_audio/signal_processing/spl_inl.c ${WEBRTC_ROOT}/common_audio/signal_processing/spl_sqrt.c ${WEBRTC_ROOT}/common_audio/signal_processing/splitting_filter.c ${WEBRTC_ROOT}/common_audio/signal_processing/sqrt_of_one_minus_x_squared.c ${WEBRTC_ROOT}/common_audio/signal_processing/vector_scaling_operations.c ${WEBRTC_ROOT}/common_audio/vad/vad_core.c ${WEBRTC_ROOT}/common_audio/vad/vad_filterbank.c ${WEBRTC_ROOT}/common_audio/vad/vad_gmm.c ${WEBRTC_ROOT}/common_audio/vad/vad_sp.c ${WEBRTC_ROOT}/common_audio/vad/webrtc_vad.c)
target_include_directories(webrtc_common_audio_common_audio_c PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_common_audio_common_audio_c PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_common_audio_common_audio_c PRIVATE -GR- -TC)
target_link_libraries(webrtc_common_audio_common_audio_c PUBLIC webrtc_fft_size_256 webrtc_spl_sqrt_floor webrtc_common_audio_common_audio_c_arm_asm webrtc_common_audio_common_audio_cc webrtc_rtc_base_checks webrtc_rtc_base_compile_assert_c webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_sanitizer webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers )

# common_audio:common_audio_c.headers
add_library(webrtc_common_audio_common_audio_c.headers INTERFACE)
target_link_libraries(webrtc_common_audio_common_audio_c.headers INTERFACE webrtc_common_audio_common_audio_c_arm_asm.headers webrtc_common_audio_common_audio_cc.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_compile_assert_c.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_sanitizer.headers webrtc_rtc_base_system_arch.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_common_audio_common_audio_c.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:common_audio_c_arm_asm
add_library(webrtc_common_audio_common_audio_c_arm_asm INTERFACE)
target_include_directories(webrtc_common_audio_common_audio_c_arm_asm INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:common_audio_c_arm_asm.headers
add_library(webrtc_common_audio_common_audio_c_arm_asm.headers INTERFACE)
target_include_directories(webrtc_common_audio_common_audio_c_arm_asm.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:common_audio_cc
add_library(webrtc_common_audio_common_audio_cc ${WEBRTC_ROOT}/common_audio/signal_processing/dot_product_with_scale.cc)
target_include_directories(webrtc_common_audio_common_audio_cc PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_common_audio_common_audio_cc PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_common_audio_common_audio_cc PRIVATE -GR-)
target_link_libraries(webrtc_common_audio_common_audio_cc PUBLIC webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_system_wrappers )

# common_audio:common_audio_cc.headers
add_library(webrtc_common_audio_common_audio_cc.headers INTERFACE)
target_link_libraries(webrtc_common_audio_common_audio_cc.headers INTERFACE webrtc_rtc_base_rtc_base_approved.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_common_audio_common_audio_cc.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:common_audio_sse2
add_library(webrtc_common_audio_common_audio_sse2 ${WEBRTC_ROOT}/common_audio/fir_filter_sse.cc ${WEBRTC_ROOT}/common_audio/resampler/sinc_resampler_sse.cc)
target_include_directories(webrtc_common_audio_common_audio_sse2 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_common_audio_common_audio_sse2 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_common_audio_common_audio_sse2 PRIVATE -GR-)
target_link_libraries(webrtc_common_audio_common_audio_sse2 PUBLIC webrtc_common_audio_fir_filter webrtc_common_audio_sinc_resampler webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_memory_aligned_malloc )

# common_audio:common_audio_sse2.headers
add_library(webrtc_common_audio_common_audio_sse2.headers INTERFACE)
target_link_libraries(webrtc_common_audio_common_audio_sse2.headers INTERFACE webrtc_common_audio_fir_filter.headers webrtc_common_audio_sinc_resampler.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_memory_aligned_malloc.headers )
target_include_directories(webrtc_common_audio_common_audio_sse2.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:common_audio_unittests
  android_add_executable(TARGET webrtc_common_audio_common_audio_unittests NODISTRIBUTE SRC ${WEBRTC_ROOT}/common_audio/resampler/sinc_resampler_unittest.cc ${WEBRTC_ROOT}/common_audio/audio_converter_unittest.cc ${WEBRTC_ROOT}/common_audio/audio_util_unittest.cc ${WEBRTC_ROOT}/common_audio/channel_buffer_unittest.cc ${WEBRTC_ROOT}/common_audio/fir_filter_unittest.cc ${WEBRTC_ROOT}/common_audio/real_fourier_unittest.cc ${WEBRTC_ROOT}/common_audio/resampler/push_resampler_unittest.cc ${WEBRTC_ROOT}/common_audio/resampler/push_sinc_resampler_unittest.cc ${WEBRTC_ROOT}/common_audio/resampler/resampler_unittest.cc ${WEBRTC_ROOT}/common_audio/resampler/sinusoidal_linear_chirp_source.cc ${WEBRTC_ROOT}/common_audio/resampler/sinusoidal_linear_chirp_source.h ${WEBRTC_ROOT}/common_audio/ring_buffer_unittest.cc ${WEBRTC_ROOT}/common_audio/signal_processing/real_fft_unittest.cc ${WEBRTC_ROOT}/common_audio/signal_processing/signal_processing_unittest.cc ${WEBRTC_ROOT}/common_audio/smoothing_filter_unittest.cc ${WEBRTC_ROOT}/common_audio/vad/vad_core_unittest.cc ${WEBRTC_ROOT}/common_audio/vad/vad_filterbank_unittest.cc ${WEBRTC_ROOT}/common_audio/vad/vad_gmm_unittest.cc ${WEBRTC_ROOT}/common_audio/vad/vad_sp_unittest.cc ${WEBRTC_ROOT}/common_audio/vad/vad_unittest.cc ${WEBRTC_ROOT}/common_audio/vad/vad_unittest.h ${WEBRTC_ROOT}/common_audio/wav_file_unittest.cc ${WEBRTC_ROOT}/common_audio/wav_header_unittest.cc ${WEBRTC_ROOT}/common_audio/window_generator_unittest.cc)
target_include_directories(webrtc_common_audio_common_audio_unittests PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_common_audio_common_audio_unittests PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_common_audio_common_audio_unittests PRIVATE -GR-)
target_link_libraries(webrtc_common_audio_common_audio_unittests PUBLIC gmock gtest webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_common_audio_fir_filter webrtc_common_audio_fir_filter_factory webrtc_common_audio_sinc_resampler webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers webrtc_test_fileutils webrtc_test_rtc_expect_death webrtc_test_test_main webrtc_test_test_support )

# common_audio:fir_filter
add_library(webrtc_common_audio_fir_filter INTERFACE)
target_include_directories(webrtc_common_audio_fir_filter INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:fir_filter.headers
add_library(webrtc_common_audio_fir_filter.headers INTERFACE)
target_include_directories(webrtc_common_audio_fir_filter.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:fir_filter_factory
add_library(webrtc_common_audio_fir_filter_factory ${WEBRTC_ROOT}/common_audio/fir_filter_c.cc ${WEBRTC_ROOT}/common_audio/fir_filter_factory.cc)
target_include_directories(webrtc_common_audio_fir_filter_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_common_audio_fir_filter_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_common_audio_fir_filter_factory PRIVATE -GR-)
target_link_libraries(webrtc_common_audio_fir_filter_factory PUBLIC webrtc_common_audio_common_audio_avx2 webrtc_common_audio_common_audio_sse2 webrtc_common_audio_fir_filter webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers )

# common_audio:fir_filter_factory.headers
add_library(webrtc_common_audio_fir_filter_factory.headers INTERFACE)
target_link_libraries(webrtc_common_audio_fir_filter_factory.headers INTERFACE webrtc_common_audio_common_audio_avx2.headers webrtc_common_audio_common_audio_sse2.headers webrtc_common_audio_fir_filter.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_arch.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_common_audio_fir_filter_factory.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:sinc_resampler
add_library(webrtc_common_audio_sinc_resampler INTERFACE)
target_link_libraries(webrtc_common_audio_sinc_resampler INTERFACE webrtc_rtc_base_gtest_prod webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_memory_aligned_malloc webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers )
target_include_directories(webrtc_common_audio_sinc_resampler INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_audio:sinc_resampler.headers
add_library(webrtc_common_audio_sinc_resampler.headers INTERFACE)
target_link_libraries(webrtc_common_audio_sinc_resampler.headers INTERFACE webrtc_rtc_base_gtest_prod.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_memory_aligned_malloc.headers webrtc_rtc_base_system_arch.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_common_audio_sinc_resampler.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_video
add_library(webrtc_common_video_common_video ${WEBRTC_ROOT}/common_video/bitrate_adjuster.cc ${WEBRTC_ROOT}/common_video/frame_rate_estimator.cc ${WEBRTC_ROOT}/common_video/h264/h264_bitstream_parser.cc ${WEBRTC_ROOT}/common_video/h264/h264_common.cc ${WEBRTC_ROOT}/common_video/h264/pps_parser.cc ${WEBRTC_ROOT}/common_video/h264/sps_parser.cc ${WEBRTC_ROOT}/common_video/h264/sps_vui_rewriter.cc ${WEBRTC_ROOT}/common_video/incoming_video_stream.cc ${WEBRTC_ROOT}/common_video/libyuv/webrtc_libyuv.cc ${WEBRTC_ROOT}/common_video/video_frame_buffer.cc ${WEBRTC_ROOT}/common_video/video_frame_buffer_pool.cc ${WEBRTC_ROOT}/common_video/video_render_frames.cc)
target_include_directories(webrtc_common_video_common_video PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_common_video_common_video PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_common_video_common_video PRIVATE -GR-)
target_link_libraries(webrtc_common_video_common_video PUBLIC absl::optional webrtc-yuv webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_task_queue_task_queue webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_api_video_encoded_image webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_bitstream_parser_api webrtc_api_video_codecs_video_codecs_api webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_safe_minmax webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_rtc_export webrtc_system_wrappers_metrics )

# common_video:common_video.headers
add_library(webrtc_common_video_common_video.headers INTERFACE)
target_link_libraries(webrtc_common_video_common_video.headers INTERFACE webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_api_task_queue_task_queue.headers webrtc_api_units_time_delta.headers webrtc_api_units_timestamp.headers webrtc_api_video_encoded_image.headers webrtc_api_video_video_bitrate_allocation.headers webrtc_api_video_video_bitrate_allocator.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_rtp_headers.headers webrtc_api_video_codecs_bitstream_parser_api.headers webrtc_api_video_codecs_video_codecs_api.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base.headers webrtc_rtc_base_rtc_task_queue.headers webrtc_rtc_base_safe_minmax.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_rtc_export.headers webrtc_system_wrappers_metrics.headers )
target_include_directories(webrtc_common_video_common_video.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_video:common_video_unittests
  android_add_executable(TARGET webrtc_common_video_common_video_unittests NODISTRIBUTE SRC ${WEBRTC_ROOT}/common_video/bitrate_adjuster_unittest.cc ${WEBRTC_ROOT}/common_video/frame_rate_estimator_unittest.cc ${WEBRTC_ROOT}/common_video/h264/h264_bitstream_parser_unittest.cc ${WEBRTC_ROOT}/common_video/h264/pps_parser_unittest.cc ${WEBRTC_ROOT}/common_video/h264/sps_parser_unittest.cc ${WEBRTC_ROOT}/common_video/h264/sps_vui_rewriter_unittest.cc ${WEBRTC_ROOT}/common_video/libyuv/libyuv_unittest.cc ${WEBRTC_ROOT}/common_video/video_frame_buffer_pool_unittest.cc ${WEBRTC_ROOT}/common_video/video_frame_unittest.cc)
target_include_directories(webrtc_common_video_common_video_unittests PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_common_video_common_video_unittests PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_common_video_common_video_unittests PRIVATE -GR-)
target_link_libraries(webrtc_common_video_common_video_unittests PUBLIC gmock gtest absl::optional webrtc-yuv webrtc_api_scoped_refptr webrtc_api_units_time_delta webrtc_api_video_video_frame webrtc_api_video_video_frame_i010 webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_base_tests_utils webrtc_system_wrappers_system_wrappers webrtc_test_fileutils webrtc_test_frame_utils webrtc_test_test_main webrtc_test_test_support webrtc_test_video_test_common )

# common_video:frame_counts
add_library(webrtc_common_video_frame_counts INTERFACE)
target_include_directories(webrtc_common_video_frame_counts INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_video:frame_counts.headers
add_library(webrtc_common_video_frame_counts.headers INTERFACE)
target_include_directories(webrtc_common_video_frame_counts.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# common_video/generic_frame_descriptor
add_library(webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor ${WEBRTC_ROOT}/common_video/generic_frame_descriptor/generic_frame_info.cc)
target_include_directories(webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor PRIVATE -GR-)
target_link_libraries(webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_api_transport_rtp_dependency_descriptor webrtc_api_video_video_codec_constants webrtc_rtc_base_checks )

# common_video/generic_frame_descriptor:generic_frame_descriptor.headers
add_library(webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor.headers INTERFACE)
target_link_libraries(webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor.headers INTERFACE webrtc_api_array_view.headers webrtc_api_transport_rtp_dependency_descriptor.headers webrtc_api_video_video_codec_constants.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# logging:fake_rtc_event_log
add_library(webrtc_logging_fake_rtc_event_log ${WEBRTC_ROOT}/logging/rtc_event_log/fake_rtc_event_log.cc ${WEBRTC_ROOT}/logging/rtc_event_log/fake_rtc_event_log_factory.cc)
target_include_directories(webrtc_logging_fake_rtc_event_log PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_fake_rtc_event_log PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_fake_rtc_event_log PRIVATE -GR-)
target_link_libraries(webrtc_logging_fake_rtc_event_log PUBLIC webrtc_api_rtc_event_log_rtc_event_log webrtc_rtc_base_rtc_base webrtc_rtc_base_synchronization_mutex )

# logging:ice_log
add_library(webrtc_logging_ice_log ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_dtls_transport_state.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_dtls_writable_state.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_ice_candidate_pair.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_ice_candidate_pair_config.cc ${WEBRTC_ROOT}/logging/rtc_event_log/ice_logger.cc)
target_include_directories(webrtc_logging_ice_log PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_ice_log PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_ice_log PRIVATE -GR-)
target_link_libraries(webrtc_logging_ice_log PUBLIC absl::memory webrtc_api_libjingle_logging_api webrtc_api_libjingle_peerconnection_api webrtc_api_rtc_event_log_rtc_event_log webrtc_api_units_timestamp webrtc_rtc_base_rtc_base_approved )

# logging:ice_log.headers
add_library(webrtc_logging_ice_log.headers INTERFACE)
target_link_libraries(webrtc_logging_ice_log.headers INTERFACE webrtc_api_libjingle_logging_api.headers webrtc_api_libjingle_peerconnection_api.headers webrtc_api_rtc_event_log_rtc_event_log.headers webrtc_api_units_timestamp.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_logging_ice_log.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# logging:rtc_event_audio
add_library(webrtc_logging_rtc_event_audio ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_audio_playout.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_audio_send_stream_config.cc)
target_include_directories(webrtc_logging_rtc_event_audio PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_rtc_event_audio PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_rtc_event_audio PRIVATE -GR-)
target_link_libraries(webrtc_logging_rtc_event_audio PUBLIC absl::memory webrtc_api_scoped_refptr webrtc_api_rtc_event_log_rtc_event_log webrtc_api_units_timestamp webrtc_logging_rtc_stream_config webrtc_modules_audio_coding_audio_network_adaptor_config webrtc_rtc_base_checks )

# logging:rtc_event_bwe
add_library(webrtc_logging_rtc_event_bwe ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_bwe_update_delay_based.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_bwe_update_loss_based.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_probe_cluster_created.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_probe_result_failure.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_probe_result_success.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_route_change.cc)
target_include_directories(webrtc_logging_rtc_event_bwe PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_rtc_event_bwe PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_rtc_event_bwe PRIVATE -GR-)
target_link_libraries(webrtc_logging_rtc_event_bwe PUBLIC absl::memory absl::optional webrtc_api_network_state_predictor_api webrtc_api_scoped_refptr webrtc_api_rtc_event_log_rtc_event_log webrtc_api_units_data_rate webrtc_api_units_timestamp )

# logging:rtc_event_frame_events
add_library(webrtc_logging_rtc_event_frame_events ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_frame_decoded.cc)
target_include_directories(webrtc_logging_rtc_event_frame_events PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_rtc_event_frame_events PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_rtc_event_frame_events PRIVATE -GR-)
target_link_libraries(webrtc_logging_rtc_event_frame_events PUBLIC absl::memory absl::optional webrtc_api_rtc_event_log_rtc_event_log webrtc_api_units_timestamp webrtc_api_video_video_frame webrtc_rtc_base_timeutils )

# logging:rtc_event_generic_packet_events
add_library(webrtc_logging_rtc_event_generic_packet_events ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_generic_ack_received.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_generic_packet_received.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_generic_packet_sent.cc)
target_include_directories(webrtc_logging_rtc_event_generic_packet_events PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_rtc_event_generic_packet_events PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_rtc_event_generic_packet_events PRIVATE -GR-)
target_link_libraries(webrtc_logging_rtc_event_generic_packet_events PUBLIC absl::memory absl::optional webrtc_api_rtc_event_log_rtc_event_log webrtc_api_units_timestamp webrtc_rtc_base_timeutils )

# //third_party/webrtc/files/stable/webrtc/logging:rtc_event_log2_proto
add_library(webrtc_logging_rtc_event_log2_proto)
protobuf_generate_with_plugin(
  TARGET webrtc_logging_rtc_event_log2_proto
  PROTOS  ${WEBRTC_ROOT}/logging/rtc_event_log/rtc_event_log2.proto
  HEADERFILEEXTENSION .pb.h
  APPEND_PATH
  PROTOPATH  -I${WEBRTC_ROOT}/logging/rtc_event_log
  PROTOC_OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/logging/rtc_event_log)
target_include_directories(webrtc_logging_rtc_event_log2_proto PUBLIC  ${CMAKE_CURRENT_BINARY_DIR}/logging/rtc_event_log)
add_library(webrtc_logging_rtc_event_log2_proto_lib ALIAS webrtc_logging_rtc_event_log2_proto)
target_link_libraries(webrtc_logging_rtc_event_log2_proto PUBLIC libprotobuf)

# logging:rtc_event_log_api
add_library(webrtc_logging_rtc_event_log_api INTERFACE)
target_link_libraries(webrtc_logging_rtc_event_log_api INTERFACE webrtc_api_rtc_event_log_rtc_event_log )
target_include_directories(webrtc_logging_rtc_event_log_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# logging:rtc_event_log_impl
add_library(webrtc_logging_rtc_event_log_impl ${WEBRTC_ROOT}/logging/rtc_event_log/rtc_event_log_impl.cc)
target_include_directories(webrtc_logging_rtc_event_log_impl PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_rtc_event_log_impl PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_rtc_event_log_impl PRIVATE -GR-)
target_link_libraries(webrtc_logging_rtc_event_log_impl PUBLIC absl::optional webrtc_api_libjingle_logging_api webrtc_api_sequence_checker webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_logging_ice_log webrtc_logging_rtc_event_log_api webrtc_logging_rtc_event_log_impl_encoder webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_safe_minmax webrtc_rtc_base_system_no_unique_address )

# logging:rtc_event_log_impl_encoder
add_library(webrtc_logging_rtc_event_log_impl_encoder ${WEBRTC_ROOT}/logging/rtc_event_log/encoder/blob_encoding.cc ${WEBRTC_ROOT}/logging/rtc_event_log/encoder/delta_encoding.cc ${WEBRTC_ROOT}/logging/rtc_event_log/encoder/rtc_event_log_encoder_common.cc ${WEBRTC_ROOT}/logging/rtc_event_log/encoder/rtc_event_log_encoder_legacy.cc ${WEBRTC_ROOT}/logging/rtc_event_log/encoder/rtc_event_log_encoder_new_format.cc ${WEBRTC_ROOT}/logging/rtc_event_log/encoder/var_int.cc)
target_include_directories(webrtc_logging_rtc_event_log_impl_encoder PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_rtc_event_log_impl_encoder PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_rtc_event_log_impl_encoder PRIVATE -GR-)
target_link_libraries(webrtc_logging_rtc_event_log_impl_encoder PUBLIC absl::memory absl::strings absl::optional webrtc_api_array_view webrtc_api_network_state_predictor_api webrtc_api_rtp_headers webrtc_api_rtp_parameters webrtc_api_transport_network_control webrtc_logging_ice_log webrtc_logging_rtc_event_audio webrtc_logging_rtc_event_bwe webrtc_logging_rtc_event_frame_events webrtc_logging_rtc_event_generic_packet_events webrtc_logging_rtc_event_log2_proto webrtc_logging_rtc_event_log_api webrtc_logging_rtc_event_log_proto webrtc_logging_rtc_event_pacing webrtc_logging_rtc_event_rtp_rtcp webrtc_logging_rtc_event_video webrtc_logging_rtc_stream_config webrtc_modules_audio_coding_audio_network_adaptor webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_checks webrtc_rtc_base_ignore_wundef webrtc_rtc_base_rtc_base_approved )

# //third_party/webrtc/files/stable/webrtc/logging:rtc_event_log_proto
add_library(webrtc_logging_rtc_event_log_proto)
protobuf_generate_with_plugin(
  TARGET webrtc_logging_rtc_event_log_proto
  PROTOS  ${WEBRTC_ROOT}/logging/rtc_event_log/rtc_event_log.proto
  HEADERFILEEXTENSION .pb.h
  APPEND_PATH
  PROTOPATH  -I${WEBRTC_ROOT}/logging/rtc_event_log
  PROTOC_OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/logging/rtc_event_log)
target_include_directories(webrtc_logging_rtc_event_log_proto PUBLIC  ${CMAKE_CURRENT_BINARY_DIR}/logging/rtc_event_log)
add_library(webrtc_logging_rtc_event_log_proto_lib ALIAS webrtc_logging_rtc_event_log_proto)
target_link_libraries(webrtc_logging_rtc_event_log_proto PUBLIC libprotobuf)

# logging:rtc_event_pacing
add_library(webrtc_logging_rtc_event_pacing ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_alr_state.cc)
target_include_directories(webrtc_logging_rtc_event_pacing PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_rtc_event_pacing PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_rtc_event_pacing PRIVATE -GR-)
target_link_libraries(webrtc_logging_rtc_event_pacing PUBLIC absl::memory webrtc_api_scoped_refptr webrtc_api_rtc_event_log_rtc_event_log webrtc_api_units_timestamp )

# logging:rtc_event_rtp_rtcp
add_library(webrtc_logging_rtc_event_rtp_rtcp ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_rtcp_packet_incoming.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_rtcp_packet_outgoing.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_rtp_packet_incoming.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_rtp_packet_outgoing.cc)
target_include_directories(webrtc_logging_rtc_event_rtp_rtcp PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_rtc_event_rtp_rtcp PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_rtc_event_rtp_rtcp PRIVATE -GR-)
target_link_libraries(webrtc_logging_rtc_event_rtp_rtcp PUBLIC absl::memory webrtc_api_array_view webrtc_api_scoped_refptr webrtc_api_rtc_event_log_rtc_event_log webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# logging:rtc_event_video
add_library(webrtc_logging_rtc_event_video ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_video_receive_stream_config.cc ${WEBRTC_ROOT}/logging/rtc_event_log/events/rtc_event_video_send_stream_config.cc)
target_include_directories(webrtc_logging_rtc_event_video PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_rtc_event_video PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_rtc_event_video PRIVATE -GR-)
target_link_libraries(webrtc_logging_rtc_event_video PUBLIC absl::memory webrtc_api_scoped_refptr webrtc_api_rtc_event_log_rtc_event_log webrtc_api_units_timestamp webrtc_logging_rtc_stream_config webrtc_rtc_base_checks )

# logging:rtc_stream_config
add_library(webrtc_logging_rtc_stream_config ${WEBRTC_ROOT}/logging/rtc_event_log/rtc_stream_config.cc)
target_include_directories(webrtc_logging_rtc_stream_config PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_logging_rtc_stream_config PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_logging_rtc_stream_config PRIVATE -GR-)
target_link_libraries(webrtc_logging_rtc_stream_config PUBLIC webrtc_api_rtp_headers webrtc_api_rtp_parameters )

# media:rtc_audio_video
add_library(webrtc_media_rtc_audio_video ${WEBRTC_ROOT}/media/engine/adm_helpers.cc ${WEBRTC_ROOT}/media/engine/payload_type_mapper.cc ${WEBRTC_ROOT}/media/engine/simulcast.cc ${WEBRTC_ROOT}/media/engine/unhandled_packets_buffer.cc ${WEBRTC_ROOT}/media/engine/webrtc_media_engine.cc ${WEBRTC_ROOT}/media/engine/webrtc_video_engine.cc ${WEBRTC_ROOT}/media/engine/webrtc_voice_engine.cc)
target_include_directories(webrtc_media_rtc_audio_video PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_audio_video PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN HAVE_WEBRTC_VIDEO WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_audio_video PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_audio_video PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_call_api webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_transport_api webrtc_api_audio_audio_frame_processor webrtc_api_audio_audio_mixer_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_task_queue_task_queue webrtc_api_transport_bitrate_settings webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_api_transport_rtp_rtp_source webrtc_api_units_data_rate webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator_factory webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_rtc_software_fallback_wrappers webrtc_api_video_codecs_video_codecs_api webrtc_call_call webrtc_call_call_interfaces webrtc_call_video_stream_api webrtc_common_video_common_video webrtc_media_rtc_media_base webrtc_modules_async_audio_processing_async_audio_processing webrtc_modules_audio_coding_ana_config_proto webrtc_modules_audio_device_audio_device webrtc_modules_audio_device_audio_device_impl webrtc_modules_audio_mixer_audio_mixer_impl webrtc_modules_audio_processing_api webrtc_modules_audio_processing_aec_dump_aec_dump webrtc_modules_audio_processing_aec_dump_aec_dump_impl webrtc_modules_audio_processing_agc_gain_control_interface webrtc_modules_video_capture_video_capture_internal_impl webrtc_modules_video_coding_video_coding webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_rtc_base webrtc_rtc_base_audio_format_to_string webrtc_rtc_base_checks webrtc_rtc_base_ignore_wundef webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_stringutils webrtc_rtc_base_threading webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_experiments_min_video_bitrate_experiment webrtc_rtc_base_experiments_normalize_simulcast_size_experiment webrtc_rtc_base_experiments_rate_control_settings webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_rtc_export webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_base64_base64 webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_metrics )

# media:rtc_data_dcsctp_transport
add_library(webrtc_media_rtc_data_dcsctp_transport ${WEBRTC_ROOT}/media/sctp/dcsctp_transport.cc)
target_include_directories(webrtc_media_rtc_data_dcsctp_transport PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_data_dcsctp_transport PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_data_dcsctp_transport PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_data_dcsctp_transport PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_media_rtc_data_sctp_transport_internal webrtc_media_rtc_media_base webrtc_net_dcsctp_public_factory webrtc_net_dcsctp_public_socket webrtc_net_dcsctp_public_types webrtc_net_dcsctp_timer_task_queue_timeout webrtc_p2p_rtc_p2p webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_threading webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_sigslot_sigslot webrtc_system_wrappers_system_wrappers )

# media:rtc_data_sctp_transport_factory
add_library(webrtc_media_rtc_data_sctp_transport_factory ${WEBRTC_ROOT}/media/sctp/sctp_transport_factory.cc)
target_include_directories(webrtc_media_rtc_data_sctp_transport_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_data_sctp_transport_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_DCSCTP WEBRTC_HAVE_SCTP WEBRTC_HAVE_USRSCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_data_sctp_transport_factory PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_data_sctp_transport_factory PUBLIC webrtc_api_transport_sctp_transport_factory_interface webrtc_media_rtc_data_dcsctp_transport webrtc_media_rtc_data_sctp_transport_internal webrtc_media_rtc_data_usrsctp_transport webrtc_rtc_base_threading webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_system_unused webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial )

# media:rtc_data_sctp_transport_internal
add_library(webrtc_media_rtc_data_sctp_transport_internal INTERFACE)
target_link_libraries(webrtc_media_rtc_data_sctp_transport_internal INTERFACE webrtc_api_transport_datagram_transport_interface webrtc_media_rtc_media_base webrtc_p2p_rtc_p2p webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_threading webrtc_rtc_base_third_party_sigslot_sigslot )
target_include_directories(webrtc_media_rtc_data_sctp_transport_internal INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# media:rtc_data_usrsctp_transport
add_library(webrtc_media_rtc_data_usrsctp_transport ${WEBRTC_ROOT}/media/sctp/usrsctp_transport.cc)
target_include_directories(webrtc_media_rtc_data_usrsctp_transport PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_data_usrsctp_transport PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_data_usrsctp_transport PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_data_usrsctp_transport PUBLIC absl::algorithm_container absl::optional usrsctp webrtc_media_rtc_data_sctp_transport_internal webrtc_media_rtc_media_base webrtc_p2p_rtc_p2p webrtc_rtc_base_rtc_base webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_threading webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_sigslot_sigslot )

# media:rtc_encoder_simulcast_proxy
add_library(webrtc_media_rtc_encoder_simulcast_proxy ${WEBRTC_ROOT}/media/engine/encoder_simulcast_proxy.cc)
target_include_directories(webrtc_media_rtc_encoder_simulcast_proxy PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_encoder_simulcast_proxy PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_encoder_simulcast_proxy PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_encoder_simulcast_proxy PUBLIC webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_media_rtc_simulcast_encoder_adapter webrtc_modules_video_coding_video_codec_interface webrtc_rtc_base_system_rtc_export )

# media:rtc_h264_profile_id
add_library(webrtc_media_rtc_h264_profile_id ${WEBRTC_ROOT}/media/base/h264_profile_level_id.cc)
target_include_directories(webrtc_media_rtc_h264_profile_id PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_h264_profile_id PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_h264_profile_id PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_h264_profile_id PUBLIC webrtc_api_video_codecs_video_codecs_api )

# media:rtc_internal_video_codecs
add_library(webrtc_media_rtc_internal_video_codecs ${WEBRTC_ROOT}/media/engine/fake_video_codec_factory.cc ${WEBRTC_ROOT}/media/engine/internal_decoder_factory.cc ${WEBRTC_ROOT}/media/engine/internal_encoder_factory.cc ${WEBRTC_ROOT}/media/engine/multiplex_codec_factory.cc)
target_include_directories(webrtc_media_rtc_internal_video_codecs PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_internal_video_codecs PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_internal_video_codecs PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_internal_video_codecs PUBLIC absl::strings webrtc_api_video_encoded_image webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_rtc_software_fallback_wrappers webrtc_api_video_codecs_video_codecs_api webrtc_call_call_interfaces webrtc_call_video_stream_api webrtc_media_rtc_encoder_simulcast_proxy webrtc_media_rtc_media_base webrtc_media_rtc_simulcast_encoder_adapter webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_webrtc_h264 webrtc_modules_video_coding_webrtc_multiplex webrtc_modules_video_coding_webrtc_vp8 webrtc_modules_video_coding_webrtc_vp9 webrtc_modules_video_coding_codecs_av1_libaom_av1_decoder webrtc_modules_video_coding_codecs_av1_libaom_av1_encoder webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export webrtc_test_fake_video_codecs )

# media:rtc_media
add_library(webrtc_media_rtc_media INTERFACE)
target_link_libraries(webrtc_media_rtc_media INTERFACE webrtc_media_rtc_audio_video )
target_include_directories(webrtc_media_rtc_media INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# media:rtc_media_base
add_library(webrtc_media_rtc_media_base ${WEBRTC_ROOT}/media/base/adapted_video_track_source.cc ${WEBRTC_ROOT}/media/base/codec.cc ${WEBRTC_ROOT}/media/base/media_channel.cc ${WEBRTC_ROOT}/media/base/media_constants.cc ${WEBRTC_ROOT}/media/base/media_engine.cc ${WEBRTC_ROOT}/media/base/rid_description.cc ${WEBRTC_ROOT}/media/base/rtp_utils.cc ${WEBRTC_ROOT}/media/base/stream_params.cc ${WEBRTC_ROOT}/media/base/turn_utils.cc ${WEBRTC_ROOT}/media/base/video_adapter.cc ${WEBRTC_ROOT}/media/base/video_broadcaster.cc ${WEBRTC_ROOT}/media/base/video_common.cc ${WEBRTC_ROOT}/media/base/video_source_base.cc)
target_include_directories(webrtc_media_rtc_media_base PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_media_base PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_media_base PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_media_base PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_api_audio_options_api webrtc_api_frame_transformer_interface webrtc_api_media_stream_interface webrtc_api_rtc_error webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_audio_audio_frame_processor webrtc_api_audio_codecs_audio_codecs_api webrtc_api_crypto_frame_decryptor_interface webrtc_api_crypto_frame_encryptor_interface webrtc_api_crypto_options webrtc_api_transport_datagram_transport_interface webrtc_api_transport_stun_types webrtc_api_transport_webrtc_key_value_config webrtc_api_transport_rtp_rtp_source webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator_factory webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_call_call_interfaces webrtc_call_video_stream_api webrtc_common_video_common_video webrtc_media_rtc_media_config webrtc_modules_async_audio_processing_async_audio_processing webrtc_modules_audio_processing_audio_processing_statistics webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_sanitizer webrtc_rtc_base_socket webrtc_rtc_base_stringutils webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_file_wrapper webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_system_rtc_export webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_sigslot_sigslot webrtc_system_wrappers_field_trial )

# media:rtc_media_base.headers
add_library(webrtc_media_rtc_media_base.headers INTERFACE)
target_link_libraries(webrtc_media_rtc_media_base.headers INTERFACE webrtc_api_array_view.headers webrtc_api_audio_options_api.headers webrtc_api_frame_transformer_interface.headers webrtc_api_media_stream_interface.headers webrtc_api_rtc_error.headers webrtc_api_rtp_parameters.headers webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_api_audio_audio_frame_processor.headers webrtc_api_audio_codecs_audio_codecs_api.headers webrtc_api_crypto_frame_decryptor_interface.headers webrtc_api_crypto_frame_encryptor_interface.headers webrtc_api_crypto_options.headers webrtc_api_transport_datagram_transport_interface.headers webrtc_api_transport_stun_types.headers webrtc_api_transport_webrtc_key_value_config.headers webrtc_api_transport_rtp_rtp_source.headers webrtc_api_video_video_bitrate_allocation.headers webrtc_api_video_video_bitrate_allocator_factory.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_rtp_headers.headers webrtc_api_video_codecs_video_codecs_api.headers webrtc_call_call_interfaces.headers webrtc_call_video_stream_api.headers webrtc_common_video_common_video.headers webrtc_media_rtc_media_config.headers webrtc_modules_async_audio_processing_async_audio_processing.headers webrtc_modules_audio_processing_audio_processing_statistics.headers webrtc_modules_rtp_rtcp_rtp_rtcp_format.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_rtc_task_queue.headers webrtc_rtc_base_sanitizer.headers webrtc_rtc_base_socket.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_file_wrapper.headers webrtc_rtc_base_system_no_unique_address.headers webrtc_rtc_base_system_rtc_export.headers webrtc_rtc_base_task_utils_pending_task_safety_flag.headers webrtc_rtc_base_task_utils_to_queued_task.headers webrtc_rtc_base_third_party_sigslot_sigslot.headers webrtc_system_wrappers_field_trial.headers )
target_include_directories(webrtc_media_rtc_media_base.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# media:rtc_media_config
add_library(webrtc_media_rtc_media_config INTERFACE)
target_include_directories(webrtc_media_rtc_media_config INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# media:rtc_media_config.headers
add_library(webrtc_media_rtc_media_config.headers INTERFACE)
target_include_directories(webrtc_media_rtc_media_config.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# media:rtc_media_engine_defaults
add_library(webrtc_media_rtc_media_engine_defaults ${WEBRTC_ROOT}/media/engine/webrtc_media_engine_defaults.cc)
target_include_directories(webrtc_media_rtc_media_engine_defaults PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_media_engine_defaults PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN HAVE_WEBRTC_VIDEO WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_media_engine_defaults PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_media_engine_defaults PUBLIC webrtc_api_audio_codecs_builtin_audio_decoder_factory webrtc_api_audio_codecs_builtin_audio_encoder_factory webrtc_api_task_queue_default_task_queue_factory webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_codecs_builtin_video_decoder_factory webrtc_api_video_codecs_builtin_video_encoder_factory webrtc_media_rtc_audio_video webrtc_modules_audio_processing_api webrtc_rtc_base_checks webrtc_rtc_base_system_rtc_export )

# media:rtc_media_tests_utils
add_library(webrtc_media_rtc_media_tests_utils ${WEBRTC_ROOT}/media/base/fake_frame_source.cc ${WEBRTC_ROOT}/media/base/fake_media_engine.cc ${WEBRTC_ROOT}/media/base/fake_rtp.cc ${WEBRTC_ROOT}/media/base/fake_video_renderer.cc ${WEBRTC_ROOT}/media/base/test_utils.cc ${WEBRTC_ROOT}/media/engine/fake_webrtc_call.cc ${WEBRTC_ROOT}/media/engine/fake_webrtc_video_engine.cc)
target_include_directories(webrtc_media_rtc_media_tests_utils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_media_tests_utils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN HAVE_WEBRTC_VIDEO WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_media_rtc_media_tests_utils PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_media_tests_utils PUBLIC gmock gtest absl::algorithm_container absl::strings webrtc_api_call_api webrtc_api_fec_controller_api webrtc_api_scoped_refptr webrtc_api_transport_field_trial_based_config webrtc_api_video_encoded_image webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_call_call_interfaces webrtc_call_mock_rtp_interfaces webrtc_call_video_stream_api webrtc_common_video_common_video webrtc_media_rtc_audio_video webrtc_media_rtc_internal_video_codecs webrtc_media_rtc_media webrtc_media_rtc_media_base webrtc_media_rtc_simulcast_encoder_adapter webrtc_modules_audio_processing_audio_processing webrtc_modules_audio_processing_api webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_p2p_rtc_p2p webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_gunit_helpers webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_stringutils webrtc_rtc_base_threading webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_third_party_sigslot_sigslot webrtc_test_test_support )

# media:rtc_media_unittests
  android_add_executable(TARGET webrtc_media_rtc_media_unittests NODISTRIBUTE SRC ${WEBRTC_ROOT}/media/engine/webrtc_voice_engine_unittest.cc ${WEBRTC_ROOT}/media/base/codec_unittest.cc ${WEBRTC_ROOT}/media/base/media_engine_unittest.cc ${WEBRTC_ROOT}/media/base/rtp_utils_unittest.cc ${WEBRTC_ROOT}/media/base/sdp_video_format_utils_unittest.cc ${WEBRTC_ROOT}/media/base/stream_params_unittest.cc ${WEBRTC_ROOT}/media/base/turn_utils_unittest.cc ${WEBRTC_ROOT}/media/base/video_adapter_unittest.cc ${WEBRTC_ROOT}/media/base/video_broadcaster_unittest.cc ${WEBRTC_ROOT}/media/base/video_common_unittest.cc ${WEBRTC_ROOT}/media/engine/encoder_simulcast_proxy_unittest.cc ${WEBRTC_ROOT}/media/engine/internal_decoder_factory_unittest.cc ${WEBRTC_ROOT}/media/engine/multiplex_codec_factory_unittest.cc ${WEBRTC_ROOT}/media/engine/null_webrtc_video_engine_unittest.cc ${WEBRTC_ROOT}/media/engine/payload_type_mapper_unittest.cc ${WEBRTC_ROOT}/media/engine/simulcast_encoder_adapter_unittest.cc ${WEBRTC_ROOT}/media/engine/simulcast_unittest.cc ${WEBRTC_ROOT}/media/engine/unhandled_packets_buffer_unittest.cc ${WEBRTC_ROOT}/media/engine/webrtc_media_engine_unittest.cc ${WEBRTC_ROOT}/media/engine/webrtc_video_engine_unittest.cc ${WEBRTC_ROOT}/media/sctp/usrsctp_transport_reliability_unittest.cc ${WEBRTC_ROOT}/media/sctp/usrsctp_transport_unittest.cc)
target_include_directories(webrtc_media_rtc_media_unittests PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_media_unittests PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN HAVE_WEBRTC_VIDEO WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_OPUS_SUPPORT_120MS_PTIME=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_media_rtc_media_unittests PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_media_unittests PUBLIC absl::algorithm_container absl::memory absl::strings absl::optional usrsctp webrtc_api_create_simulcast_test_fixture_api webrtc_api_libjingle_peerconnection_api webrtc_api_mock_video_bitrate_allocator webrtc_api_mock_video_bitrate_allocator_factory webrtc_api_mock_video_codec_factory webrtc_api_mock_video_encoder webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_simulcast_test_fixture_api webrtc_api_audio_codecs_builtin_audio_decoder_factory webrtc_api_audio_codecs_builtin_audio_encoder_factory webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_api_task_queue_default_task_queue_factory webrtc_api_test_video_function_video_factory webrtc_api_transport_field_trial_based_config webrtc_api_units_time_delta webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_builtin_video_decoder_factory webrtc_api_video_codecs_builtin_video_encoder_factory webrtc_api_video_codecs_video_codecs_api webrtc_audio_audio webrtc_call_call_interfaces webrtc_common_video_common_video webrtc_media_rtc_audio_video webrtc_media_rtc_data_sctp_transport_internal webrtc_media_rtc_data_usrsctp_transport webrtc_media_rtc_encoder_simulcast_proxy webrtc_media_rtc_internal_video_codecs webrtc_media_rtc_media webrtc_media_rtc_media_base webrtc_media_rtc_media_engine_defaults webrtc_media_rtc_media_tests_utils webrtc_media_rtc_sdp_video_format_utils webrtc_media_rtc_simulcast_encoder_adapter webrtc_modules_audio_device_mock_audio_device webrtc_modules_audio_processing_audio_processing webrtc_modules_audio_processing_api webrtc_modules_audio_processing_mocks webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_video_coding_simulcast_test_fixture_impl webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_webrtc_h264 webrtc_modules_video_coding_webrtc_vp8 webrtc_modules_video_coding_codecs_av1_libaom_av1_decoder webrtc_p2p_p2p_test_utils webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_gunit_helpers webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_rtc_event webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_stringutils webrtc_rtc_base_threading webrtc_rtc_base_experiments_min_video_bitrate_experiment webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_sigslot_sigslot webrtc_system_wrappers_field_trial webrtc_test_audio_codec_mocks webrtc_test_fake_video_codecs webrtc_test_field_trial webrtc_test_rtp_test_utils webrtc_test_test_main webrtc_test_test_support webrtc_test_video_test_common )

# media:rtc_sdp_video_format_utils
add_library(webrtc_media_rtc_sdp_video_format_utils ${WEBRTC_ROOT}/media/base/sdp_video_format_utils.cc)
target_include_directories(webrtc_media_rtc_sdp_video_format_utils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_sdp_video_format_utils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_sdp_video_format_utils PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_sdp_video_format_utils PUBLIC absl::optional webrtc_api_video_codecs_video_codecs_api webrtc_rtc_base_checks webrtc_rtc_base_stringutils )

# media:rtc_simulcast_encoder_adapter
add_library(webrtc_media_rtc_simulcast_encoder_adapter ${WEBRTC_ROOT}/media/engine/simulcast_encoder_adapter.cc)
target_include_directories(webrtc_media_rtc_simulcast_encoder_adapter PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_media_rtc_simulcast_encoder_adapter PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_media_rtc_simulcast_encoder_adapter PRIVATE -GR-)
target_link_libraries(webrtc_media_rtc_simulcast_encoder_adapter PUBLIC absl::algorithm_container absl::optional webrtc_api_fec_controller_api webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_rtc_software_fallback_wrappers webrtc_api_video_codecs_video_codecs_api webrtc_call_video_stream_api webrtc_media_rtc_media_base webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_experiments_encoder_info_settings webrtc_rtc_base_experiments_rate_control_settings webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_system_rtc_export webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial )

# modules/async_audio_processing
add_library(webrtc_modules_async_audio_processing_async_audio_processing ${WEBRTC_ROOT}/modules/async_audio_processing/async_audio_processing.cc ${WEBRTC_ROOT}/modules/async_audio_processing/async_audio_processing.h)
target_include_directories(webrtc_modules_async_audio_processing_async_audio_processing PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_async_audio_processing_async_audio_processing PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_async_audio_processing_async_audio_processing PRIVATE -GR-)
target_link_libraries(webrtc_modules_async_audio_processing_async_audio_processing PUBLIC webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_audio_audio_frame_api webrtc_api_audio_audio_frame_processor webrtc_api_task_queue_task_queue webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue )

# modules/async_audio_processing:async_audio_processing.headers
add_library(webrtc_modules_async_audio_processing_async_audio_processing.headers INTERFACE)
target_link_libraries(webrtc_modules_async_audio_processing_async_audio_processing.headers INTERFACE webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_api_audio_audio_frame_api.headers webrtc_api_audio_audio_frame_processor.headers webrtc_api_task_queue_task_queue.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_rtc_task_queue.headers )
target_include_directories(webrtc_modules_async_audio_processing_async_audio_processing.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# //third_party/webrtc/files/stable/webrtc/modules/audio_coding:ana_config_proto
add_library(webrtc_modules_audio_coding_ana_config_proto)
protobuf_generate_with_plugin(
  TARGET webrtc_modules_audio_coding_ana_config_proto
  PROTOS  ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/config.proto
  HEADERFILEEXTENSION .pb.h
  APPEND_PATH
  PROTOPATH  -I${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor
  PROTOC_OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/modules/audio_coding/audio_network_adaptor)
target_include_directories(webrtc_modules_audio_coding_ana_config_proto PUBLIC  ${CMAKE_CURRENT_BINARY_DIR}/modules/audio_coding/audio_network_adaptor)
add_library(webrtc_modules_audio_coding_ana_config_proto_lib ALIAS webrtc_modules_audio_coding_ana_config_proto)
target_link_libraries(webrtc_modules_audio_coding_ana_config_proto PUBLIC libprotobuf)

# //third_party/webrtc/files/stable/webrtc/modules/audio_coding:ana_debug_dump_proto
add_library(webrtc_modules_audio_coding_ana_debug_dump_proto)
protobuf_generate_with_plugin(
  TARGET webrtc_modules_audio_coding_ana_debug_dump_proto
  PROTOS  ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/debug_dump.proto
  HEADERFILEEXTENSION .pb.h
  APPEND_PATH
  PROTOPATH  -I${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor
  PROTOC_OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/modules/audio_coding/audio_network_adaptor)
target_include_directories(webrtc_modules_audio_coding_ana_debug_dump_proto PUBLIC  ${CMAKE_CURRENT_BINARY_DIR}/modules/audio_coding/audio_network_adaptor)
add_library(webrtc_modules_audio_coding_ana_debug_dump_proto_lib ALIAS webrtc_modules_audio_coding_ana_debug_dump_proto)
target_link_libraries(webrtc_modules_audio_coding_ana_debug_dump_proto PUBLIC libprotobuf)
target_link_libraries(webrtc_modules_audio_coding_ana_debug_dump_proto PRIVATE webrtc_modules_audio_coding_ana_config_proto_lib)

# modules/audio_coding
add_library(webrtc_modules_audio_coding_audio_coding ${WEBRTC_ROOT}/modules/audio_coding/acm2/acm_receiver.cc ${WEBRTC_ROOT}/modules/audio_coding/acm2/acm_remixing.cc ${WEBRTC_ROOT}/modules/audio_coding/acm2/acm_resampler.cc ${WEBRTC_ROOT}/modules/audio_coding/acm2/audio_coding_module.cc ${WEBRTC_ROOT}/modules/audio_coding/acm2/call_statistics.cc)
target_include_directories(webrtc_modules_audio_coding_audio_coding PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_audio_coding PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_audio_coding PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_audio_coding PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_api_function_view webrtc_api_audio_audio_frame_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_neteq_neteq_api webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_modules_module_api webrtc_modules_module_api_public webrtc_modules_audio_coding_audio_coding_module_typedefs webrtc_modules_audio_coding_default_neteq_factory webrtc_modules_audio_coding_neteq webrtc_rtc_base_audio_format_to_string webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_metrics )

# modules/audio_coding:audio_coding_module_typedefs
add_library(webrtc_modules_audio_coding_audio_coding_module_typedefs INTERFACE)
target_include_directories(webrtc_modules_audio_coding_audio_coding_module_typedefs INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_coding:audio_coding_opus_common
add_library(webrtc_modules_audio_coding_audio_coding_opus_common ${WEBRTC_ROOT}/modules/audio_coding/codecs/opus/audio_coder_opus_common.cc)
target_include_directories(webrtc_modules_audio_coding_audio_coding_opus_common PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_audio_coding_opus_common PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_audio_coding_opus_common PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_audio_coding_opus_common PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_api_audio_codecs_audio_codecs_api webrtc_rtc_base_checks webrtc_rtc_base_stringutils )

# modules/audio_coding:audio_decoder_unittests
  android_add_executable(TARGET webrtc_modules_audio_coding_audio_decoder_unittests NODISTRIBUTE SRC ${WEBRTC_ROOT}/modules/audio_coding/neteq/audio_decoder_unittest.cc)
target_include_directories(webrtc_modules_audio_coding_audio_decoder_unittests PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_audio_decoder_unittests PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_CODEC_ISAC WEBRTC_ABSL_MUTEX WEBRTC_CODEC_OPUS WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_OPUS_SUPPORT_120MS_PTIME=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_modules_audio_coding_audio_decoder_unittests PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_audio_decoder_unittests PUBLIC gmock gtest webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_opus_audio_encoder_opus webrtc_common_audio_common_audio webrtc_modules_audio_coding_audio_encoder_cng webrtc_modules_audio_coding_g711 webrtc_modules_audio_coding_g722 webrtc_modules_audio_coding_ilbc webrtc_modules_audio_coding_isac webrtc_modules_audio_coding_isac_fix webrtc_modules_audio_coding_neteq webrtc_modules_audio_coding_neteq_tools webrtc_modules_audio_coding_pcm16b webrtc_modules_audio_coding_red webrtc_modules_audio_coding_webrtc_opus webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers webrtc_test_fileutils webrtc_test_test_main webrtc_test_test_support )

# modules/audio_coding:audio_encoder_cng
add_library(webrtc_modules_audio_coding_audio_encoder_cng ${WEBRTC_ROOT}/modules/audio_coding/codecs/cng/audio_encoder_cng.cc)
target_include_directories(webrtc_modules_audio_coding_audio_encoder_cng PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_audio_encoder_cng PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_audio_encoder_cng PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_audio_encoder_cng PUBLIC absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_api_units_time_delta webrtc_common_audio_common_audio webrtc_modules_audio_coding_webrtc_cng webrtc_rtc_base_checks )

# modules/audio_coding:audio_network_adaptor
add_library(webrtc_modules_audio_coding_audio_network_adaptor ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.cc ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/channel_controller.cc ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/controller.cc ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/controller_manager.cc ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/debug_dump_writer.cc ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/dtx_controller.cc ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/event_log_writer.cc ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/fec_controller_plr_based.cc ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/frame_length_controller.cc ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/frame_length_controller_v2.cc)
target_include_directories(webrtc_modules_audio_coding_audio_network_adaptor PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_audio_network_adaptor PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN GOOGLE_PROTOBUF_NO_RTTI GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_audio_network_adaptor PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_audio_network_adaptor PUBLIC absl::algorithm_container absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_api_rtc_event_log_rtc_event_log webrtc_common_audio_common_audio webrtc_logging_rtc_event_audio webrtc_modules_audio_coding_ana_config_proto webrtc_modules_audio_coding_ana_debug_dump_proto webrtc_modules_audio_coding_audio_network_adaptor_config webrtc_rtc_base_checks webrtc_rtc_base_ignore_wundef webrtc_rtc_base_protobuf_utils webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_file_wrapper webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial )

# modules/audio_coding:audio_network_adaptor_config
add_library(webrtc_modules_audio_coding_audio_network_adaptor_config ${WEBRTC_ROOT}/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_config.cc)
target_include_directories(webrtc_modules_audio_coding_audio_network_adaptor_config PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_audio_network_adaptor_config PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_audio_network_adaptor_config PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_audio_network_adaptor_config PUBLIC absl::optional )

# modules/audio_coding:default_neteq_factory
add_library(webrtc_modules_audio_coding_default_neteq_factory ${WEBRTC_ROOT}/modules/audio_coding/neteq/default_neteq_factory.cc)
target_include_directories(webrtc_modules_audio_coding_default_neteq_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_default_neteq_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_default_neteq_factory PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_default_neteq_factory PUBLIC webrtc_api_scoped_refptr webrtc_api_audio_codecs_audio_codecs_api webrtc_api_neteq_default_neteq_controller_factory webrtc_api_neteq_neteq_api webrtc_modules_audio_coding_neteq webrtc_system_wrappers_system_wrappers )

# modules/audio_coding:g711
add_library(webrtc_modules_audio_coding_g711 ${WEBRTC_ROOT}/modules/audio_coding/codecs/g711/audio_decoder_pcm.cc ${WEBRTC_ROOT}/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc)
target_include_directories(webrtc_modules_audio_coding_g711 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_g711 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_g711 PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_g711 PUBLIC absl::optional webrtc_api_array_view webrtc_api_audio_codecs_audio_codecs_api webrtc_api_units_time_delta webrtc_modules_audio_coding_g711_c webrtc_modules_audio_coding_legacy_encoded_audio_frame webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# modules/audio_coding:g711_c
add_library(webrtc_modules_audio_coding_g711_c ${WEBRTC_ROOT}/modules/audio_coding/codecs/g711/g711_interface.c)
target_include_directories(webrtc_modules_audio_coding_g711_c PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_g711_c PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_g711_c PRIVATE -GR- -TC)
target_link_libraries(webrtc_modules_audio_coding_g711_c PUBLIC webrtc_modules_third_party_g711_g711_3p )

# modules/audio_coding:g722
add_library(webrtc_modules_audio_coding_g722 ${WEBRTC_ROOT}/modules/audio_coding/codecs/g722/audio_decoder_g722.cc ${WEBRTC_ROOT}/modules/audio_coding/codecs/g722/audio_encoder_g722.cc)
target_include_directories(webrtc_modules_audio_coding_g722 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_g722 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_g722 PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_g722 PUBLIC absl::optional webrtc_api_array_view webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_g722_audio_encoder_g722_config webrtc_api_units_time_delta webrtc_modules_audio_coding_g722_c webrtc_modules_audio_coding_legacy_encoded_audio_frame webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# modules/audio_coding:g722_c
add_library(webrtc_modules_audio_coding_g722_c ${WEBRTC_ROOT}/modules/audio_coding/codecs/g722/g722_interface.c)
target_include_directories(webrtc_modules_audio_coding_g722_c PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_g722_c PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_g722_c PRIVATE -GR- -TC)
target_link_libraries(webrtc_modules_audio_coding_g722_c PUBLIC webrtc_modules_third_party_g722_g722_3p )

# modules/audio_coding:ilbc
add_library(webrtc_modules_audio_coding_ilbc ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/audio_decoder_ilbc.cc ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.cc)
target_include_directories(webrtc_modules_audio_coding_ilbc PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_ilbc PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_ilbc PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_ilbc PUBLIC absl::optional webrtc_api_array_view webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_ilbc_audio_encoder_ilbc_config webrtc_api_units_time_delta webrtc_common_audio_common_audio webrtc_modules_audio_coding_ilbc_c webrtc_modules_audio_coding_legacy_encoded_audio_frame webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# modules/audio_coding:ilbc_c
add_library(webrtc_modules_audio_coding_ilbc_c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/abs_quant.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/abs_quant_loop.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/augmented_cb_corr.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/bw_expand.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/cb_construct.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/cb_mem_energy.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/cb_mem_energy_augmentation.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/cb_mem_energy_calc.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/cb_search.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/cb_search_core.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/cb_update_best_index.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/chebyshev.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/comp_corr.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/constants.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/create_augmented_vec.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/decode.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/decode_residual.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/decoder_interpolate_lsf.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/do_plc.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/encode.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/energy_inverse.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/enh_upsample.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/enhancer.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/enhancer_interface.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/filtered_cb_vecs.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/frame_classify.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/gain_dequant.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/gain_quant.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/get_cd_vec.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/get_lsp_poly.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/get_sync_seq.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/hp_input.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/hp_output.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/ilbc.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/index_conv_dec.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/index_conv_enc.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/init_decode.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/init_encode.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/interpolate.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/interpolate_samples.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/lpc_encode.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/lsf_check.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/lsf_interpolate_to_poly_dec.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/lsf_interpolate_to_poly_enc.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/lsf_to_lsp.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/lsf_to_poly.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/lsp_to_lsf.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/my_corr.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/nearest_neighbor.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/pack_bits.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/poly_to_lsf.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/poly_to_lsp.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/refiner.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/simple_interpolate_lsf.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/simple_lpc_analysis.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/simple_lsf_dequant.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/simple_lsf_quant.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/smooth.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/smooth_out_data.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/sort_sq.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/split_vq.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/state_construct.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/state_search.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/swap_bytes.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/unpack_bits.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/vq3.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/vq4.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/window32_w32.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/ilbc/xcorr_coef.c)
target_include_directories(webrtc_modules_audio_coding_ilbc_c PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_ilbc_c PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_ilbc_c PRIVATE -GR- -TC)
target_link_libraries(webrtc_modules_audio_coding_ilbc_c PUBLIC absl::core_headers webrtc_api_audio_codecs_audio_codecs_api webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_sanitizer webrtc_rtc_base_system_arch )

# modules/audio_coding:isac
add_library(webrtc_modules_audio_coding_isac ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/audio_decoder_isac.cc ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/audio_encoder_isac.cc)
target_include_directories(webrtc_modules_audio_coding_isac PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_isac PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_isac PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_isac PUBLIC webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_audio_coding_isac_c webrtc_modules_audio_coding_isac_common )

# modules/audio_coding:isac_bwinfo
add_library(webrtc_modules_audio_coding_isac_bwinfo INTERFACE)
target_include_directories(webrtc_modules_audio_coding_isac_bwinfo INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_coding:isac_bwinfo.headers
add_library(webrtc_modules_audio_coding_isac_bwinfo.headers INTERFACE)
target_include_directories(webrtc_modules_audio_coding_isac_bwinfo.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_coding:isac_c
add_library(webrtc_modules_audio_coding_isac_c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/arith_routines.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/arith_routines_hist.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/arith_routines_logist.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/bandwidth_estimator.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/crc.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/decode.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/decode_bwe.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/encode.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/encode_lpc_swb.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/entropy_coding.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/filterbanks.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/intialize.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/isac.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/lattice.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/lpc_analysis.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/lpc_gain_swb_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb12_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb16_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/lpc_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/pitch_gain_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/pitch_lag_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/spectrum_ar_model_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/transform.c)
target_include_directories(webrtc_modules_audio_coding_isac_c PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_isac_c PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_isac_c PRIVATE -GR- -TC)
target_link_libraries(webrtc_modules_audio_coding_isac_c PUBLIC webrtc_fft webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_modules_audio_coding_isac_bwinfo webrtc_modules_audio_coding_isac_vad webrtc_rtc_base_checks webrtc_rtc_base_compile_assert_c webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_arch )

# modules/audio_coding:isac_common
add_library(webrtc_modules_audio_coding_isac_common INTERFACE)
target_link_libraries(webrtc_modules_audio_coding_isac_common INTERFACE absl::optional webrtc_api_scoped_refptr webrtc_api_audio_codecs_audio_codecs_api webrtc_api_units_time_delta webrtc_modules_audio_coding_isac_bwinfo webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_system_wrappers_field_trial )
target_include_directories(webrtc_modules_audio_coding_isac_common INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_coding:isac_fix
add_library(webrtc_modules_audio_coding_isac_fix ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/audio_decoder_isacfix.cc ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/audio_encoder_isacfix.cc)
target_include_directories(webrtc_modules_audio_coding_isac_fix PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_isac_fix PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_isac_fix PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_isac_fix PUBLIC webrtc_api_audio_codecs_audio_codecs_api webrtc_common_audio_common_audio webrtc_modules_audio_coding_isac_common webrtc_modules_audio_coding_isac_fix_c webrtc_system_wrappers_system_wrappers )

# modules/audio_coding:isac_fix_c
add_library(webrtc_modules_audio_coding_isac_fix_c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/lattice_c.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/pitch_filter_c.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/arith_routines.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/arith_routines_hist.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/arith_routines_logist.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/bandwidth_estimator.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/decode.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/decode_bwe.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/decode_plc.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/encode.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/entropy_coding.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/filterbank_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/filterbanks.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/filters.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/initialize.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/isacfix.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/lattice.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/lpc_masking_model.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/lpc_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/pitch_estimator.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/pitch_estimator_c.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/pitch_filter.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/pitch_gain_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/pitch_lag_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/spectrum_ar_model_tables.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/transform.c)
target_include_directories(webrtc_modules_audio_coding_isac_fix_c PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_isac_fix_c PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_isac_fix_c PRIVATE -GR- -TC)
target_link_libraries(webrtc_modules_audio_coding_isac_fix_c PUBLIC webrtc_fft webrtc_api_audio_codecs_audio_codecs_api webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_modules_audio_coding_isac_bwinfo webrtc_modules_audio_coding_isac_common webrtc_modules_audio_coding_isac_fix_common webrtc_rtc_base_checks webrtc_rtc_base_compile_assert_c webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_sanitizer webrtc_system_wrappers_system_wrappers )

# modules/audio_coding:isac_fix_common
add_library(webrtc_modules_audio_coding_isac_fix_common ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/fft.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/fix/source/transform_tables.c)
target_include_directories(webrtc_modules_audio_coding_isac_fix_common PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_isac_fix_common PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_isac_fix_common PRIVATE -GR- -TC)
target_link_libraries(webrtc_modules_audio_coding_isac_fix_common PUBLIC webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_modules_audio_coding_isac_bwinfo )

# modules/audio_coding:isac_vad
add_library(webrtc_modules_audio_coding_isac_vad ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/filter_functions.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/isac_vad.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/pitch_estimator.c ${WEBRTC_ROOT}/modules/audio_coding/codecs/isac/main/source/pitch_filter.c)
target_include_directories(webrtc_modules_audio_coding_isac_vad PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_isac_vad PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_isac_vad PRIVATE -GR- -TC)
target_link_libraries(webrtc_modules_audio_coding_isac_vad PUBLIC webrtc_fft webrtc_modules_audio_coding_isac_bwinfo webrtc_rtc_base_compile_assert_c webrtc_rtc_base_system_arch webrtc_rtc_base_system_ignore_warnings )

# modules/audio_coding:isac_vad.headers
add_library(webrtc_modules_audio_coding_isac_vad.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_coding_isac_vad.headers INTERFACE webrtc_modules_audio_coding_isac_bwinfo.headers webrtc_rtc_base_compile_assert_c.headers webrtc_rtc_base_system_arch.headers webrtc_rtc_base_system_ignore_warnings.headers )
target_include_directories(webrtc_modules_audio_coding_isac_vad.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_coding:legacy_encoded_audio_frame
add_library(webrtc_modules_audio_coding_legacy_encoded_audio_frame ${WEBRTC_ROOT}/modules/audio_coding/codecs/legacy_encoded_audio_frame.cc)
target_include_directories(webrtc_modules_audio_coding_legacy_encoded_audio_frame PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_legacy_encoded_audio_frame PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_legacy_encoded_audio_frame PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_legacy_encoded_audio_frame PUBLIC absl::optional webrtc_api_array_view webrtc_api_audio_codecs_audio_codecs_api webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# modules/audio_coding:neteq
add_library(webrtc_modules_audio_coding_neteq ${WEBRTC_ROOT}/modules/audio_coding/neteq/accelerate.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/audio_multi_vector.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/audio_vector.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/background_noise.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/buffer_level_filter.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/comfort_noise.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/cross_correlation.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/decision_logic.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/decoder_database.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/delay_manager.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/dsp_helper.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/dtmf_buffer.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/dtmf_tone_generator.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/expand.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/expand_uma_logger.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/histogram.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/merge.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/nack_tracker.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/neteq_impl.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/normal.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/packet.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/packet_buffer.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/post_decode_vad.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/preemptive_expand.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/random_vector.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/red_payload_splitter.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/statistics_calculator.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/sync_buffer.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/time_stretch.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/timestamp_scaler.cc)
target_include_directories(webrtc_modules_audio_coding_neteq PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_neteq PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_neteq PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_neteq PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_api_rtp_headers webrtc_api_rtp_packet_info webrtc_api_scoped_refptr webrtc_api_audio_audio_frame_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_neteq_neteq_api webrtc_api_neteq_neteq_controller_api webrtc_api_neteq_tick_timer webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_modules_module_api webrtc_modules_module_api_public webrtc_modules_audio_coding_audio_coding_module_typedefs webrtc_modules_audio_coding_webrtc_cng webrtc_rtc_base_audio_format_to_string webrtc_rtc_base_checks webrtc_rtc_base_gtest_prod webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_rtc_base_sanitizer webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/audio_coding:neteq_input_audio_tools
add_library(webrtc_modules_audio_coding_neteq_input_audio_tools ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/input_audio_file.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/resample_input_audio_file.cc)
target_include_directories(webrtc_modules_audio_coding_neteq_input_audio_tools PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_neteq_input_audio_tools PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_neteq_input_audio_tools PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_neteq_input_audio_tools PUBLIC webrtc_common_audio_common_audio webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# modules/audio_coding:neteq_tools
add_library(webrtc_modules_audio_coding_neteq_tools ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/fake_decode_from_file.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/neteq_delay_analyzer.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/neteq_replacement_input.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/neteq_stats_getter.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/neteq_stats_plotter.cc)
target_include_directories(webrtc_modules_audio_coding_neteq_tools PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_neteq_tools PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_neteq_tools PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_neteq_tools PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_module_api_public webrtc_modules_audio_coding_neteq_input_audio_tools webrtc_modules_audio_coding_neteq_tools_minimal webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# modules/audio_coding:neteq_tools_minimal
add_library(webrtc_modules_audio_coding_neteq_tools_minimal ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/audio_sink.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/encode_neteq_input.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/neteq_input.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/neteq_test.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/packet.cc ${WEBRTC_ROOT}/modules/audio_coding/neteq/tools/packet_source.cc)
target_include_directories(webrtc_modules_audio_coding_neteq_tools_minimal PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_neteq_tools_minimal PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_CODEC_ISAC WEBRTC_ABSL_MUTEX WEBRTC_CODEC_OPUS WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_OPUS_SUPPORT_120MS_PTIME=1)
target_compile_options(webrtc_modules_audio_coding_neteq_tools_minimal PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_neteq_tools_minimal PUBLIC absl::optional webrtc_api_array_view webrtc_api_neteq_simulator_api webrtc_api_rtp_headers webrtc_api_audio_audio_frame_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_neteq_custom_neteq_factory webrtc_api_neteq_default_neteq_controller_factory webrtc_api_neteq_neteq_api webrtc_modules_audio_coding_default_neteq_factory webrtc_modules_audio_coding_neteq webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_system_wrappers )

# modules/audio_coding:pcm16b
add_library(webrtc_modules_audio_coding_pcm16b ${WEBRTC_ROOT}/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.cc ${WEBRTC_ROOT}/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.cc ${WEBRTC_ROOT}/modules/audio_coding/codecs/pcm16b/pcm16b_common.cc)
target_include_directories(webrtc_modules_audio_coding_pcm16b PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_pcm16b PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_pcm16b PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_pcm16b PUBLIC webrtc_api_array_view webrtc_api_audio_codecs_audio_codecs_api webrtc_modules_audio_coding_g711 webrtc_modules_audio_coding_legacy_encoded_audio_frame webrtc_modules_audio_coding_pcm16b_c webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# modules/audio_coding:pcm16b_c
add_library(webrtc_modules_audio_coding_pcm16b_c ${WEBRTC_ROOT}/modules/audio_coding/codecs/pcm16b/pcm16b.c)
target_include_directories(webrtc_modules_audio_coding_pcm16b_c PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_pcm16b_c PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_pcm16b_c PRIVATE -GR- -TC)

# modules/audio_coding:red
add_library(webrtc_modules_audio_coding_red ${WEBRTC_ROOT}/modules/audio_coding/codecs/red/audio_encoder_copy_red.cc)
target_include_directories(webrtc_modules_audio_coding_red PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_red PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_red PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_red PUBLIC absl::optional webrtc_api_array_view webrtc_api_audio_codecs_audio_codecs_api webrtc_api_units_time_delta webrtc_common_audio_common_audio webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_field_trial )

# modules/audio_coding:webrtc_cng
add_library(webrtc_modules_audio_coding_webrtc_cng ${WEBRTC_ROOT}/modules/audio_coding/codecs/cng/webrtc_cng.cc)
target_include_directories(webrtc_modules_audio_coding_webrtc_cng PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_webrtc_cng PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_coding_webrtc_cng PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_webrtc_cng PUBLIC webrtc_api_array_view webrtc_common_audio_common_audio_c webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_conversions )

# modules/audio_coding:webrtc_multiopus
add_library(webrtc_modules_audio_coding_webrtc_multiopus ${WEBRTC_ROOT}/modules/audio_coding/codecs/opus/audio_decoder_multi_channel_opus_impl.cc ${WEBRTC_ROOT}/modules/audio_coding/codecs/opus/audio_encoder_multi_channel_opus_impl.cc)
target_include_directories(webrtc_modules_audio_coding_webrtc_multiopus PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_webrtc_multiopus PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_CODEC_ISAC WEBRTC_ABSL_MUTEX WEBRTC_CODEC_OPUS WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_OPUS_SUPPORT_120MS_PTIME=1)
target_compile_options(webrtc_modules_audio_coding_webrtc_multiopus PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_webrtc_multiopus PUBLIC absl::memory absl::strings absl::optional webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_opus_audio_decoder_opus_config webrtc_api_audio_codecs_opus_audio_encoder_opus_config webrtc_api_units_time_delta webrtc_modules_audio_coding_audio_coding_opus_common webrtc_modules_audio_coding_webrtc_opus_wrapper webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_rtc_base_stringutils )

# modules/audio_coding:webrtc_opus
add_library(webrtc_modules_audio_coding_webrtc_opus ${WEBRTC_ROOT}/modules/audio_coding/codecs/opus/audio_decoder_opus.cc ${WEBRTC_ROOT}/modules/audio_coding/codecs/opus/audio_encoder_opus.cc)
target_include_directories(webrtc_modules_audio_coding_webrtc_opus PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_webrtc_opus PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_CODEC_ISAC GOOGLE_PROTOBUF_NO_RTTI GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER WEBRTC_ABSL_MUTEX WEBRTC_CODEC_OPUS WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_OPUS_SUPPORT_120MS_PTIME=1)
target_compile_options(webrtc_modules_audio_coding_webrtc_opus PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_webrtc_opus PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_opus_audio_encoder_opus_config webrtc_common_audio_common_audio webrtc_modules_audio_coding_audio_coding_opus_common webrtc_modules_audio_coding_audio_network_adaptor webrtc_modules_audio_coding_webrtc_opus_wrapper webrtc_rtc_base_checks webrtc_rtc_base_protobuf_utils webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_rtc_base_safe_minmax webrtc_system_wrappers_field_trial )

# modules/audio_coding:webrtc_opus_wrapper
add_library(webrtc_modules_audio_coding_webrtc_opus_wrapper ${WEBRTC_ROOT}/modules/audio_coding/codecs/opus/opus_interface.cc)
target_include_directories(webrtc_modules_audio_coding_webrtc_opus_wrapper PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_coding_webrtc_opus_wrapper PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_CODEC_ISAC WEBRTC_ABSL_MUTEX WEBRTC_CODEC_OPUS WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_OPUS_SUPPORT_120MS_PTIME=1)
target_compile_options(webrtc_modules_audio_coding_webrtc_opus_wrapper PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_coding_webrtc_opus_wrapper PUBLIC opus webrtc_api_array_view webrtc_rtc_base_checks webrtc_rtc_base_ignore_wundef webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_field_trial )

# modules/audio_device
add_library(webrtc_modules_audio_device_audio_device INTERFACE)
target_link_libraries(webrtc_modules_audio_device_audio_device INTERFACE webrtc_modules_audio_device_audio_device_api webrtc_modules_audio_device_audio_device_impl )
target_include_directories(webrtc_modules_audio_device_audio_device INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_device:audio_device.headers
add_library(webrtc_modules_audio_device_audio_device.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_device_audio_device.headers INTERFACE webrtc_modules_audio_device_audio_device_api.headers webrtc_modules_audio_device_audio_device_impl.headers )
target_include_directories(webrtc_modules_audio_device_audio_device.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_device:audio_device_api
add_library(webrtc_modules_audio_device_audio_device_api INTERFACE)
target_link_libraries(webrtc_modules_audio_device_audio_device_api INTERFACE webrtc_api_scoped_refptr webrtc_api_task_queue_task_queue webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_stringutils )
target_include_directories(webrtc_modules_audio_device_audio_device_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_device:audio_device_api.headers
add_library(webrtc_modules_audio_device_audio_device_api.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_device_audio_device_api.headers INTERFACE webrtc_api_scoped_refptr.headers webrtc_api_task_queue_task_queue.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_stringutils.headers )
target_include_directories(webrtc_modules_audio_device_audio_device_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_device:audio_device_buffer
add_library(webrtc_modules_audio_device_audio_device_buffer ${WEBRTC_ROOT}/modules/audio_device/audio_device_buffer.cc ${WEBRTC_ROOT}/modules/audio_device/fine_audio_buffer.cc)
target_include_directories(webrtc_modules_audio_device_audio_device_buffer PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_device_audio_device_buffer PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_device_audio_device_buffer PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_device_audio_device_buffer PUBLIC webrtc_api_array_view webrtc_api_sequence_checker webrtc_api_task_queue_task_queue webrtc_common_audio_common_audio_c webrtc_modules_audio_device_audio_device_api webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_metrics )

# modules/audio_device:audio_device_buffer.headers
add_library(webrtc_modules_audio_device_audio_device_buffer.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_device_audio_device_buffer.headers INTERFACE webrtc_api_array_view.headers webrtc_api_sequence_checker.headers webrtc_api_task_queue_task_queue.headers webrtc_common_audio_common_audio_c.headers webrtc_modules_audio_device_audio_device_api.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_rtc_task_queue.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_system_wrappers_metrics.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_device_audio_device_buffer.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_device:audio_device_default
add_library(webrtc_modules_audio_device_audio_device_default INTERFACE)
target_link_libraries(webrtc_modules_audio_device_audio_device_default INTERFACE webrtc_modules_audio_device_audio_device_api )
target_include_directories(webrtc_modules_audio_device_audio_device_default INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_device:audio_device_default.headers
add_library(webrtc_modules_audio_device_audio_device_default.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_device_audio_device_default.headers INTERFACE webrtc_modules_audio_device_audio_device_api.headers )
target_include_directories(webrtc_modules_audio_device_audio_device_default.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_device:audio_device_generic
add_library(webrtc_modules_audio_device_audio_device_generic ${WEBRTC_ROOT}/modules/audio_device/audio_device_generic.cc)
target_include_directories(webrtc_modules_audio_device_audio_device_generic PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_device_audio_device_generic PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_device_audio_device_generic PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_device_audio_device_generic PUBLIC webrtc_modules_audio_device_audio_device_api webrtc_modules_audio_device_audio_device_buffer webrtc_rtc_base_rtc_base_approved )

# modules/audio_device:audio_device_generic.headers
add_library(webrtc_modules_audio_device_audio_device_generic.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_device_audio_device_generic.headers INTERFACE webrtc_modules_audio_device_audio_device_api.headers webrtc_modules_audio_device_audio_device_buffer.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_modules_audio_device_audio_device_generic.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_device:audio_device_impl
add_library(webrtc_modules_audio_device_audio_device_impl ${WEBRTC_ROOT}/modules/audio_device/win/audio_device_core_win.cc ${WEBRTC_ROOT}/modules/audio_device/audio_device_data_observer.cc ${WEBRTC_ROOT}/modules/audio_device/audio_device_impl.cc ${WEBRTC_ROOT}/modules/audio_device/dummy/audio_device_dummy.cc ${WEBRTC_ROOT}/modules/audio_device/dummy/file_audio_device.cc ${WEBRTC_ROOT}/modules/audio_device/dummy/file_audio_device_factory.cc ${WEBRTC_ROOT}/modules/audio_device/include/test_audio_device.cc)
target_include_directories(webrtc_modules_audio_device_audio_device_impl PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_device_audio_device_impl PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_device_audio_device_impl PRIVATE -Wno-microsoft-goto -GR-)
target_link_libraries(webrtc_modules_audio_device_audio_device_impl PUBLIC webrtc_rtc_base_win32 absl::core_headers webrtc_api_array_view webrtc_api_refcountedbase webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_task_queue_task_queue webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_modules_audio_device_audio_device_api webrtc_modules_audio_device_audio_device_buffer webrtc_modules_audio_device_audio_device_default webrtc_modules_audio_device_audio_device_generic webrtc_modules_utility_utility webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_arch webrtc_rtc_base_system_file_wrapper webrtc_rtc_base_task_utils_repeating_task webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics amstrmid::amstrmid dmoguids::dmoguids msdmo::msdmo oleaut32::oleaut32 wmcodecdspuuid::wmcodecdspuuid)

# modules/audio_device:audio_device_impl.headers
add_library(webrtc_modules_audio_device_audio_device_impl.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_device_audio_device_impl.headers INTERFACE webrtc_rtc_base_win32.headers webrtc_api_array_view.headers webrtc_api_refcountedbase.headers webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_api_task_queue_task_queue.headers webrtc_common_audio_common_audio.headers webrtc_common_audio_common_audio_c.headers webrtc_modules_audio_device_audio_device_api.headers webrtc_modules_audio_device_audio_device_buffer.headers webrtc_modules_audio_device_audio_device_default.headers webrtc_modules_audio_device_audio_device_generic.headers webrtc_modules_utility_utility.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_rtc_task_queue.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_arch.headers webrtc_rtc_base_system_file_wrapper.headers webrtc_rtc_base_task_utils_repeating_task.headers webrtc_system_wrappers_field_trial.headers webrtc_system_wrappers_metrics.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_device_audio_device_impl.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_device:mock_audio_device
add_library(webrtc_modules_audio_device_mock_audio_device INTERFACE)
target_link_libraries(webrtc_modules_audio_device_mock_audio_device INTERFACE webrtc_modules_audio_device_audio_device webrtc_modules_audio_device_audio_device_buffer webrtc_modules_audio_device_audio_device_impl webrtc_rtc_base_refcount webrtc_test_test_support )
target_include_directories(webrtc_modules_audio_device_mock_audio_device INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_mixer:audio_frame_manipulator
add_library(webrtc_modules_audio_mixer_audio_frame_manipulator ${WEBRTC_ROOT}/modules/audio_mixer/audio_frame_manipulator.cc)
target_include_directories(webrtc_modules_audio_mixer_audio_frame_manipulator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_mixer_audio_frame_manipulator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_mixer_audio_frame_manipulator PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_mixer_audio_frame_manipulator PUBLIC webrtc_api_audio_audio_frame_api webrtc_audio_utility_audio_frame_operations webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# modules/audio_mixer:audio_mixer_impl
add_library(webrtc_modules_audio_mixer_audio_mixer_impl ${WEBRTC_ROOT}/modules/audio_mixer/audio_mixer_impl.cc ${WEBRTC_ROOT}/modules/audio_mixer/audio_mixer_impl.h ${WEBRTC_ROOT}/modules/audio_mixer/default_output_rate_calculator.cc ${WEBRTC_ROOT}/modules/audio_mixer/default_output_rate_calculator.h ${WEBRTC_ROOT}/modules/audio_mixer/frame_combiner.cc ${WEBRTC_ROOT}/modules/audio_mixer/frame_combiner.h ${WEBRTC_ROOT}/modules/audio_mixer/output_rate_calculator.h)
target_include_directories(webrtc_modules_audio_mixer_audio_mixer_impl PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_mixer_audio_mixer_impl PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_mixer_audio_mixer_impl PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_mixer_audio_mixer_impl PUBLIC webrtc_api_array_view webrtc_api_rtp_packet_info webrtc_api_scoped_refptr webrtc_api_audio_audio_frame_api webrtc_api_audio_audio_mixer_api webrtc_audio_utility_audio_frame_operations webrtc_common_audio_common_audio webrtc_modules_audio_mixer_audio_frame_manipulator webrtc_modules_audio_processing_api webrtc_modules_audio_processing_apm_logging webrtc_modules_audio_processing_audio_frame_view webrtc_modules_audio_processing_agc2_fixed_digital webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_conversions webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_metrics )

# modules/audio_processing/aec3:adaptive_fir_filter
add_library(webrtc_modules_audio_processing_aec3_adaptive_fir_filter INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_adaptive_fir_filter INTERFACE webrtc_api_array_view webrtc_modules_audio_processing_apm_logging webrtc_modules_audio_processing_aec3_aec3_common webrtc_modules_audio_processing_aec3_aec3_fft webrtc_modules_audio_processing_aec3_fft_data webrtc_modules_audio_processing_aec3_render_buffer webrtc_rtc_base_system_arch )
target_include_directories(webrtc_modules_audio_processing_aec3_adaptive_fir_filter INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:adaptive_fir_filter.headers
add_library(webrtc_modules_audio_processing_aec3_adaptive_fir_filter.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_adaptive_fir_filter.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_apm_logging.headers webrtc_modules_audio_processing_aec3_aec3_common.headers webrtc_modules_audio_processing_aec3_aec3_fft.headers webrtc_modules_audio_processing_aec3_fft_data.headers webrtc_modules_audio_processing_aec3_render_buffer.headers webrtc_rtc_base_system_arch.headers )
target_include_directories(webrtc_modules_audio_processing_aec3_adaptive_fir_filter.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:adaptive_fir_filter_erl
add_library(webrtc_modules_audio_processing_aec3_adaptive_fir_filter_erl INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_adaptive_fir_filter_erl INTERFACE webrtc_api_array_view webrtc_modules_audio_processing_aec3_aec3_common webrtc_rtc_base_system_arch )
target_include_directories(webrtc_modules_audio_processing_aec3_adaptive_fir_filter_erl INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:adaptive_fir_filter_erl.headers
add_library(webrtc_modules_audio_processing_aec3_adaptive_fir_filter_erl.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_adaptive_fir_filter_erl.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_aec3_aec3_common.headers webrtc_rtc_base_system_arch.headers )
target_include_directories(webrtc_modules_audio_processing_aec3_adaptive_fir_filter_erl.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3
add_library(webrtc_modules_audio_processing_aec3_aec3 ${WEBRTC_ROOT}/modules/audio_processing/aec3/adaptive_fir_filter.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/adaptive_fir_filter_erl.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/aec3_common.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/aec3_fft.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/aec_state.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/alignment_mixer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/api_call_jitter_metrics.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/block_buffer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/block_delay_buffer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/block_framer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/block_processor.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/block_processor_metrics.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/clockdrift_detector.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/coarse_filter_update_gain.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/comfort_noise_generator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/decimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/dominant_nearend_detector.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/downsampled_render_buffer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/echo_audibility.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/echo_canceller3.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/echo_path_delay_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/echo_path_variability.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/echo_remover.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/echo_remover_metrics.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/erl_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/erle_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/fft_buffer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/filter_analyzer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/frame_blocker.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/fullband_erle_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/matched_filter.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/matched_filter_lag_aggregator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/moving_average.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/refined_filter_update_gain.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/render_buffer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/render_delay_buffer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/render_delay_controller.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/render_delay_controller_metrics.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/render_signal_analyzer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/residual_echo_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/reverb_decay_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/reverb_frequency_response.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/reverb_model.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/reverb_model_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/signal_dependent_erle_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/spectrum_buffer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/stationarity_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/subband_erle_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/subband_nearend_detector.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/subtractor.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/subtractor_output.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/subtractor_output_analyzer.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/suppression_filter.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/suppression_gain.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/transparent_mode.cc)
target_include_directories(webrtc_modules_audio_processing_aec3_aec3 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_aec3_aec3 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_aec3_aec3 PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_aec3_aec3 PUBLIC webrtc_modules_audio_processing_aec3_aec3_avx2 absl::optional webrtc_api_array_view webrtc_api_audio_aec3_config webrtc_api_audio_echo_control webrtc_common_audio_common_audio_c webrtc_modules_audio_processing_apm_logging webrtc_modules_audio_processing_audio_buffer webrtc_modules_audio_processing_high_pass_filter webrtc_modules_audio_processing_aec3_adaptive_fir_filter webrtc_modules_audio_processing_aec3_adaptive_fir_filter_erl webrtc_modules_audio_processing_aec3_aec3_common webrtc_modules_audio_processing_aec3_aec3_fft webrtc_modules_audio_processing_aec3_fft_data webrtc_modules_audio_processing_aec3_matched_filter webrtc_modules_audio_processing_aec3_render_buffer webrtc_modules_audio_processing_aec3_vector_math webrtc_modules_audio_processing_utility_cascaded_biquad_filter webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/audio_processing/aec3:aec3.headers
add_library(webrtc_modules_audio_processing_aec3_aec3.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_aec3.headers INTERFACE webrtc_modules_audio_processing_aec3_aec3_avx2.headers webrtc_api_array_view.headers webrtc_api_audio_aec3_config.headers webrtc_api_audio_echo_control.headers webrtc_common_audio_common_audio_c.headers webrtc_modules_audio_processing_apm_logging.headers webrtc_modules_audio_processing_audio_buffer.headers webrtc_modules_audio_processing_high_pass_filter.headers webrtc_modules_audio_processing_aec3_adaptive_fir_filter.headers webrtc_modules_audio_processing_aec3_adaptive_fir_filter_erl.headers webrtc_modules_audio_processing_aec3_aec3_common.headers webrtc_modules_audio_processing_aec3_aec3_fft.headers webrtc_modules_audio_processing_aec3_fft_data.headers webrtc_modules_audio_processing_aec3_matched_filter.headers webrtc_modules_audio_processing_aec3_render_buffer.headers webrtc_modules_audio_processing_aec3_vector_math.headers webrtc_modules_audio_processing_utility_cascaded_biquad_filter.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_safe_minmax.headers webrtc_rtc_base_experiments_field_trial_parser.headers webrtc_rtc_base_system_arch.headers webrtc_system_wrappers_field_trial.headers webrtc_system_wrappers_metrics.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_processing_aec3_aec3.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:aec3_avx2
add_library(webrtc_modules_audio_processing_aec3_aec3_avx2 ${WEBRTC_ROOT}/modules/audio_processing/aec3/adaptive_fir_filter_avx2.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/adaptive_fir_filter_erl_avx2.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/fft_data_avx2.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/matched_filter_avx2.cc ${WEBRTC_ROOT}/modules/audio_processing/aec3/vector_math_avx2.cc)
target_include_directories(webrtc_modules_audio_processing_aec3_aec3_avx2 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_aec3_aec3_avx2 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_aec3_aec3_avx2 PRIVATE -GR- -mavx2 -mfma)
target_link_libraries(webrtc_modules_audio_processing_aec3_aec3_avx2 PUBLIC webrtc_api_array_view webrtc_modules_audio_processing_aec3_adaptive_fir_filter webrtc_modules_audio_processing_aec3_adaptive_fir_filter_erl webrtc_modules_audio_processing_aec3_fft_data webrtc_modules_audio_processing_aec3_matched_filter webrtc_modules_audio_processing_aec3_vector_math webrtc_rtc_base_checks )

# modules/audio_processing/aec3:aec3_avx2.headers
add_library(webrtc_modules_audio_processing_aec3_aec3_avx2.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_aec3_avx2.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_aec3_adaptive_fir_filter.headers webrtc_modules_audio_processing_aec3_adaptive_fir_filter_erl.headers webrtc_modules_audio_processing_aec3_fft_data.headers webrtc_modules_audio_processing_aec3_matched_filter.headers webrtc_modules_audio_processing_aec3_vector_math.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_aec3_aec3_avx2.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:aec3_common
add_library(webrtc_modules_audio_processing_aec3_aec3_common INTERFACE)
target_include_directories(webrtc_modules_audio_processing_aec3_aec3_common INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:aec3_common.headers
add_library(webrtc_modules_audio_processing_aec3_aec3_common.headers INTERFACE)
target_include_directories(webrtc_modules_audio_processing_aec3_aec3_common.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:aec3_fft
add_library(webrtc_modules_audio_processing_aec3_aec3_fft INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_aec3_fft INTERFACE webrtc_fft_size_128 webrtc_api_array_view webrtc_modules_audio_processing_aec3_aec3_common webrtc_modules_audio_processing_aec3_fft_data webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_arch )
target_include_directories(webrtc_modules_audio_processing_aec3_aec3_fft INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:aec3_fft.headers
add_library(webrtc_modules_audio_processing_aec3_aec3_fft.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_aec3_fft.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_aec3_aec3_common.headers webrtc_modules_audio_processing_aec3_fft_data.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_arch.headers )
target_include_directories(webrtc_modules_audio_processing_aec3_aec3_fft.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:fft_data
add_library(webrtc_modules_audio_processing_aec3_fft_data INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_fft_data INTERFACE webrtc_api_array_view webrtc_modules_audio_processing_aec3_aec3_common webrtc_rtc_base_system_arch )
target_include_directories(webrtc_modules_audio_processing_aec3_fft_data INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:fft_data.headers
add_library(webrtc_modules_audio_processing_aec3_fft_data.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_fft_data.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_aec3_aec3_common.headers webrtc_rtc_base_system_arch.headers )
target_include_directories(webrtc_modules_audio_processing_aec3_fft_data.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:matched_filter
add_library(webrtc_modules_audio_processing_aec3_matched_filter INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_matched_filter INTERFACE webrtc_api_array_view webrtc_modules_audio_processing_aec3_aec3_common webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_arch )
target_include_directories(webrtc_modules_audio_processing_aec3_matched_filter INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:matched_filter.headers
add_library(webrtc_modules_audio_processing_aec3_matched_filter.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_matched_filter.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_aec3_aec3_common.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_arch.headers )
target_include_directories(webrtc_modules_audio_processing_aec3_matched_filter.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:render_buffer
add_library(webrtc_modules_audio_processing_aec3_render_buffer INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_render_buffer INTERFACE webrtc_api_array_view webrtc_modules_audio_processing_aec3_aec3_common webrtc_modules_audio_processing_aec3_fft_data webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_arch )
target_include_directories(webrtc_modules_audio_processing_aec3_render_buffer INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:render_buffer.headers
add_library(webrtc_modules_audio_processing_aec3_render_buffer.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_render_buffer.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_aec3_aec3_common.headers webrtc_modules_audio_processing_aec3_fft_data.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_arch.headers )
target_include_directories(webrtc_modules_audio_processing_aec3_render_buffer.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:vector_math
add_library(webrtc_modules_audio_processing_aec3_vector_math INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_vector_math INTERFACE webrtc_api_array_view webrtc_modules_audio_processing_aec3_aec3_common webrtc_rtc_base_checks webrtc_rtc_base_system_arch )
target_include_directories(webrtc_modules_audio_processing_aec3_vector_math INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec3:vector_math.headers
add_library(webrtc_modules_audio_processing_aec3_vector_math.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec3_vector_math.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_aec3_aec3_common.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_system_arch.headers )
target_include_directories(webrtc_modules_audio_processing_aec3_vector_math.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec_dump
add_library(webrtc_modules_audio_processing_aec_dump_aec_dump INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec_dump_aec_dump INTERFACE webrtc_modules_audio_processing_aec_dump_interface webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_file_wrapper webrtc_rtc_base_system_rtc_export )
target_include_directories(webrtc_modules_audio_processing_aec_dump_aec_dump INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec_dump:aec_dump.headers
add_library(webrtc_modules_audio_processing_aec_dump_aec_dump.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec_dump_aec_dump.headers INTERFACE webrtc_modules_audio_processing_aec_dump_interface.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_file_wrapper.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_modules_audio_processing_aec_dump_aec_dump.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aec_dump:aec_dump_impl
add_library(webrtc_modules_audio_processing_aec_dump_aec_dump_impl ${WEBRTC_ROOT}/modules/audio_processing/aec_dump/aec_dump_impl.cc ${WEBRTC_ROOT}/modules/audio_processing/aec_dump/capture_stream_info.cc ${WEBRTC_ROOT}/modules/audio_processing/aec_dump/write_to_file_task.cc)
target_include_directories(webrtc_modules_audio_processing_aec_dump_aec_dump_impl PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_aec_dump_aec_dump_impl PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN GOOGLE_PROTOBUF_NO_RTTI GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_aec_dump_aec_dump_impl PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_aec_dump_aec_dump_impl PUBLIC webrtc_api_audio_audio_frame_api webrtc_api_task_queue_task_queue webrtc_modules_audio_processing_aec_dump_interface webrtc_modules_audio_processing_audioproc_debug_proto webrtc_modules_audio_processing_aec_dump_aec_dump webrtc_rtc_base_checks webrtc_rtc_base_ignore_wundef webrtc_rtc_base_protobuf_utils webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_system_file_wrapper webrtc_system_wrappers_system_wrappers )

# modules/audio_processing/aec_dump:aec_dump_impl.headers
add_library(webrtc_modules_audio_processing_aec_dump_aec_dump_impl.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec_dump_aec_dump_impl.headers INTERFACE webrtc_api_audio_audio_frame_api.headers webrtc_api_task_queue_task_queue.headers webrtc_modules_audio_processing_aec_dump_interface.headers webrtc_modules_audio_processing_aec_dump_aec_dump.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_ignore_wundef.headers webrtc_rtc_base_protobuf_utils.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_rtc_task_queue.headers webrtc_rtc_base_system_file_wrapper.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_processing_aec_dump_aec_dump_impl.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:aec_dump_interface
add_library(webrtc_modules_audio_processing_aec_dump_interface ${WEBRTC_ROOT}/modules/audio_processing/include/aec_dump.cc)
target_include_directories(webrtc_modules_audio_processing_aec_dump_interface PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_aec_dump_interface PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_aec_dump_interface PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_aec_dump_interface PUBLIC absl::core_headers webrtc_modules_audio_processing_api webrtc_modules_audio_processing_audio_frame_view )

# modules/audio_processing:aec_dump_interface.headers
add_library(webrtc_modules_audio_processing_aec_dump_interface.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aec_dump_interface.headers INTERFACE webrtc_modules_audio_processing_api.headers webrtc_modules_audio_processing_audio_frame_view.headers )
target_include_directories(webrtc_modules_audio_processing_aec_dump_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/aecm:aecm_core
add_library(webrtc_modules_audio_processing_aecm_aecm_core ${WEBRTC_ROOT}/modules/audio_processing/aecm/aecm_core.cc ${WEBRTC_ROOT}/modules/audio_processing/aecm/aecm_core_c.cc ${WEBRTC_ROOT}/modules/audio_processing/aecm/echo_control_mobile.cc)
target_include_directories(webrtc_modules_audio_processing_aecm_aecm_core PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_aecm_aecm_core PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_aecm_aecm_core PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_aecm_aecm_core PUBLIC webrtc_common_audio_common_audio_c webrtc_modules_audio_processing_utility_legacy_delay_estimator webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_sanitizer webrtc_system_wrappers_system_wrappers )

# modules/audio_processing/aecm:aecm_core.headers
add_library(webrtc_modules_audio_processing_aecm_aecm_core.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_aecm_aecm_core.headers INTERFACE webrtc_common_audio_common_audio_c.headers webrtc_modules_audio_processing_utility_legacy_delay_estimator.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_sanitizer.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_processing_aecm_aecm_core.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2:adaptive_digital
add_library(webrtc_modules_audio_processing_agc2_adaptive_digital ${WEBRTC_ROOT}/modules/audio_processing/agc2/adaptive_agc.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/adaptive_digital_gain_applier.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/adaptive_mode_level_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/saturation_protector.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/saturation_protector_buffer.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_adaptive_digital PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_adaptive_digital PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_adaptive_digital PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_adaptive_digital PUBLIC absl::optional webrtc_api_array_view webrtc_common_audio_common_audio webrtc_modules_audio_processing_api webrtc_modules_audio_processing_apm_logging webrtc_modules_audio_processing_audio_frame_view webrtc_modules_audio_processing_agc2_common webrtc_modules_audio_processing_agc2_cpu_features webrtc_modules_audio_processing_agc2_gain_applier webrtc_modules_audio_processing_agc2_noise_level_estimator webrtc_modules_audio_processing_agc2_rnn_vad_with_level webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_compare webrtc_rtc_base_safe_minmax webrtc_system_wrappers_metrics )

# modules/audio_processing/agc2:adaptive_digital.headers
add_library(webrtc_modules_audio_processing_agc2_adaptive_digital.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_adaptive_digital.headers INTERFACE webrtc_api_array_view.headers webrtc_common_audio_common_audio.headers webrtc_modules_audio_processing_api.headers webrtc_modules_audio_processing_apm_logging.headers webrtc_modules_audio_processing_audio_frame_view.headers webrtc_modules_audio_processing_agc2_common.headers webrtc_modules_audio_processing_agc2_cpu_features.headers webrtc_modules_audio_processing_agc2_gain_applier.headers webrtc_modules_audio_processing_agc2_noise_level_estimator.headers webrtc_modules_audio_processing_agc2_rnn_vad_with_level.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_safe_compare.headers webrtc_rtc_base_safe_minmax.headers webrtc_system_wrappers_metrics.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_adaptive_digital.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2:biquad_filter
add_library(webrtc_modules_audio_processing_agc2_biquad_filter ${WEBRTC_ROOT}/modules/audio_processing/agc2/biquad_filter.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_biquad_filter PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_biquad_filter PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_biquad_filter PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_biquad_filter PUBLIC webrtc_api_array_view webrtc_rtc_base_rtc_base_approved )

# modules/audio_processing/agc2:biquad_filter.headers
add_library(webrtc_modules_audio_processing_agc2_biquad_filter.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_biquad_filter.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_biquad_filter.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2:common
add_library(webrtc_modules_audio_processing_agc2_common INTERFACE)
target_include_directories(webrtc_modules_audio_processing_agc2_common INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2:common.headers
add_library(webrtc_modules_audio_processing_agc2_common.headers INTERFACE)
target_include_directories(webrtc_modules_audio_processing_agc2_common.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2:cpu_features
add_library(webrtc_modules_audio_processing_agc2_cpu_features ${WEBRTC_ROOT}/modules/audio_processing/agc2/cpu_features.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_cpu_features PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_cpu_features PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_cpu_features PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_cpu_features PUBLIC webrtc_rtc_base_stringutils webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers )

# modules/audio_processing/agc2:cpu_features.headers
add_library(webrtc_modules_audio_processing_agc2_cpu_features.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_cpu_features.headers INTERFACE webrtc_rtc_base_stringutils.headers webrtc_rtc_base_system_arch.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_cpu_features.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2:fixed_digital
add_library(webrtc_modules_audio_processing_agc2_fixed_digital ${WEBRTC_ROOT}/modules/audio_processing/agc2/fixed_digital_level_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/interpolated_gain_curve.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/limiter.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_fixed_digital PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_fixed_digital PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_fixed_digital PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_fixed_digital PUBLIC webrtc_api_array_view webrtc_common_audio_common_audio webrtc_modules_audio_processing_apm_logging webrtc_modules_audio_processing_audio_frame_view webrtc_modules_audio_processing_agc2_common webrtc_rtc_base_checks webrtc_rtc_base_gtest_prod webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_system_wrappers_metrics )

# modules/audio_processing/agc2:fixed_digital.headers
add_library(webrtc_modules_audio_processing_agc2_fixed_digital.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_fixed_digital.headers INTERFACE webrtc_api_array_view.headers webrtc_common_audio_common_audio.headers webrtc_modules_audio_processing_apm_logging.headers webrtc_modules_audio_processing_audio_frame_view.headers webrtc_modules_audio_processing_agc2_common.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_gtest_prod.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_safe_minmax.headers webrtc_system_wrappers_metrics.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_fixed_digital.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2:gain_applier
add_library(webrtc_modules_audio_processing_agc2_gain_applier ${WEBRTC_ROOT}/modules/audio_processing/agc2/gain_applier.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_gain_applier PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_gain_applier PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_gain_applier PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_gain_applier PUBLIC webrtc_api_array_view webrtc_modules_audio_processing_audio_frame_view webrtc_modules_audio_processing_agc2_common webrtc_rtc_base_safe_minmax )

# modules/audio_processing/agc2:gain_applier.headers
add_library(webrtc_modules_audio_processing_agc2_gain_applier.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_gain_applier.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_audio_frame_view.headers webrtc_modules_audio_processing_agc2_common.headers webrtc_rtc_base_safe_minmax.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_gain_applier.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2:noise_level_estimator
add_library(webrtc_modules_audio_processing_agc2_noise_level_estimator ${WEBRTC_ROOT}/modules/audio_processing/agc2/down_sampler.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/noise_level_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/noise_spectrum_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/signal_classifier.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_noise_level_estimator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_noise_level_estimator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_noise_level_estimator PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_noise_level_estimator PUBLIC webrtc_fft_size_128 webrtc_api_array_view webrtc_common_audio_common_audio webrtc_modules_audio_processing_apm_logging webrtc_modules_audio_processing_audio_frame_view webrtc_modules_audio_processing_agc2_biquad_filter webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_system_wrappers_system_wrappers )

# modules/audio_processing/agc2:noise_level_estimator.headers
add_library(webrtc_modules_audio_processing_agc2_noise_level_estimator.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_noise_level_estimator.headers INTERFACE webrtc_api_array_view.headers webrtc_common_audio_common_audio.headers webrtc_modules_audio_processing_apm_logging.headers webrtc_modules_audio_processing_audio_frame_view.headers webrtc_modules_audio_processing_agc2_biquad_filter.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_macromagic.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_noise_level_estimator.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/features_extraction.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/rnn.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad PUBLIC webrtc_rnnoise webrtc_api_array_view webrtc_modules_audio_processing_agc2_biquad_filter webrtc_modules_audio_processing_agc2_cpu_features webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_layers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_lp_residual webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_pitch webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_sequence_buffer webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_spectral_features webrtc_rtc_base_checks webrtc_rtc_base_safe_compare webrtc_rtc_base_safe_conversions )

# modules/audio_processing/agc2/rnn_vad:rnn_vad.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_agc2_biquad_filter.headers webrtc_modules_audio_processing_agc2_cpu_features.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_layers.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_lp_residual.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_pitch.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_sequence_buffer.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_spectral_features.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_compare.headers webrtc_rtc_base_safe_conversions.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_auto_correlation
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_auto_correlation ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/auto_correlation.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_auto_correlation PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_auto_correlation PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_auto_correlation PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_auto_correlation PUBLIC webrtc_api_array_view webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common webrtc_modules_audio_processing_utility_pffft_wrapper webrtc_rtc_base_checks )

# modules/audio_processing/agc2/rnn_vad:rnn_vad_auto_correlation.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_auto_correlation.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_auto_correlation.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common.headers webrtc_modules_audio_processing_utility_pffft_wrapper.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_auto_correlation.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_common
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common INTERFACE webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_common.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common.headers INTERFACE webrtc_rtc_base_system_arch.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_layers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_layers ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/rnn_fc.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/rnn_gru.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_layers PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_layers PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_layers PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_layers PUBLIC webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2 absl::strings webrtc_rnnoise webrtc_api_array_view webrtc_api_function_view webrtc_modules_audio_processing_agc2_cpu_features webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common webrtc_modules_audio_processing_agc2_rnn_vad_vector_math webrtc_rtc_base_checks webrtc_rtc_base_safe_conversions )

# modules/audio_processing/agc2/rnn_vad:rnn_vad_layers.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_layers.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_layers.headers INTERFACE webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2.headers webrtc_api_array_view.headers webrtc_api_function_view.headers webrtc_modules_audio_processing_agc2_cpu_features.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common.headers webrtc_modules_audio_processing_agc2_rnn_vad_vector_math.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_conversions.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_layers.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_lp_residual
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_lp_residual ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/lp_residual.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_lp_residual PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_lp_residual PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_lp_residual PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_lp_residual PUBLIC webrtc_api_array_view webrtc_rtc_base_checks webrtc_rtc_base_safe_compare )

# modules/audio_processing/agc2/rnn_vad:rnn_vad_lp_residual.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_lp_residual.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_lp_residual.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_compare.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_lp_residual.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_pitch
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_pitch ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/pitch_search.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/pitch_search_internal.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_pitch PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_pitch PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_pitch PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_pitch PUBLIC webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2 webrtc_api_array_view webrtc_modules_audio_processing_agc2_cpu_features webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_auto_correlation webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common webrtc_modules_audio_processing_agc2_rnn_vad_vector_math webrtc_rtc_base_checks webrtc_rtc_base_gtest_prod webrtc_rtc_base_safe_compare webrtc_rtc_base_safe_conversions webrtc_rtc_base_system_arch )

# modules/audio_processing/agc2/rnn_vad:rnn_vad_pitch.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_pitch.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_pitch.headers INTERFACE webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2.headers webrtc_api_array_view.headers webrtc_modules_audio_processing_agc2_cpu_features.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_auto_correlation.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common.headers webrtc_modules_audio_processing_agc2_rnn_vad_vector_math.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_gtest_prod.headers webrtc_rtc_base_safe_compare.headers webrtc_rtc_base_safe_conversions.headers webrtc_rtc_base_system_arch.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_pitch.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_ring_buffer
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_ring_buffer INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_ring_buffer INTERFACE webrtc_api_array_view webrtc_rtc_base_checks )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_ring_buffer INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_ring_buffer.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_ring_buffer.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_ring_buffer.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_ring_buffer.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_sequence_buffer
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_sequence_buffer INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_sequence_buffer INTERFACE webrtc_api_array_view webrtc_rtc_base_checks )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_sequence_buffer INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_sequence_buffer.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_sequence_buffer.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_sequence_buffer.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_sequence_buffer.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_spectral_features
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_spectral_features ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/spectral_features.cc ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/spectral_features_internal.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_spectral_features PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_spectral_features PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_spectral_features PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_spectral_features PUBLIC webrtc_api_array_view webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_ring_buffer webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_symmetric_matrix_buffer webrtc_modules_audio_processing_utility_pffft_wrapper webrtc_rtc_base_checks webrtc_rtc_base_safe_compare )

# modules/audio_processing/agc2/rnn_vad:rnn_vad_spectral_features.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_spectral_features.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_spectral_features.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_ring_buffer.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_symmetric_matrix_buffer.headers webrtc_modules_audio_processing_utility_pffft_wrapper.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_compare.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_spectral_features.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_symmetric_matrix_buffer
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_symmetric_matrix_buffer INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_symmetric_matrix_buffer INTERFACE webrtc_api_array_view webrtc_rtc_base_checks webrtc_rtc_base_safe_compare )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_symmetric_matrix_buffer INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:rnn_vad_symmetric_matrix_buffer.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_symmetric_matrix_buffer.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_symmetric_matrix_buffer.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_compare.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_symmetric_matrix_buffer.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:vector_math
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math INTERFACE webrtc_api_array_view webrtc_modules_audio_processing_agc2_cpu_features webrtc_rtc_base_checks webrtc_rtc_base_safe_conversions webrtc_rtc_base_system_arch )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:vector_math.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_agc2_cpu_features.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_conversions.headers webrtc_rtc_base_system_arch.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2/rnn_vad:vector_math_avx2
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2 ${WEBRTC_ROOT}/modules/audio_processing/agc2/rnn_vad/vector_math_avx2.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2 PRIVATE -GR- -mavx2 -mfma)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2 PUBLIC webrtc_api_array_view webrtc_modules_audio_processing_agc2_rnn_vad_vector_math webrtc_rtc_base_checks webrtc_rtc_base_safe_conversions )

# modules/audio_processing/agc2/rnn_vad:vector_math_avx2.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_agc2_rnn_vad_vector_math.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_conversions.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_vector_math_avx2.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc2:rnn_vad_with_level
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_with_level ${WEBRTC_ROOT}/modules/audio_processing/agc2/vad_with_level.cc)
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_with_level PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc2_rnn_vad_with_level PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc2_rnn_vad_with_level PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_with_level PUBLIC webrtc_api_array_view webrtc_common_audio_common_audio webrtc_modules_audio_processing_audio_frame_view webrtc_modules_audio_processing_agc2_common webrtc_modules_audio_processing_agc2_cpu_features webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common webrtc_rtc_base_checks )

# modules/audio_processing/agc2:rnn_vad_with_level.headers
add_library(webrtc_modules_audio_processing_agc2_rnn_vad_with_level.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc2_rnn_vad_with_level.headers INTERFACE webrtc_api_array_view.headers webrtc_common_audio_common_audio.headers webrtc_modules_audio_processing_audio_frame_view.headers webrtc_modules_audio_processing_agc2_common.headers webrtc_modules_audio_processing_agc2_cpu_features.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad.headers webrtc_modules_audio_processing_agc2_rnn_vad_rnn_vad_common.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_agc2_rnn_vad_with_level.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc
add_library(webrtc_modules_audio_processing_agc_agc ${WEBRTC_ROOT}/modules/audio_processing/agc/agc_manager_direct.cc)
target_include_directories(webrtc_modules_audio_processing_agc_agc PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc_agc PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc_agc PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc_agc PUBLIC absl::optional webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_modules_audio_processing_apm_logging webrtc_modules_audio_processing_audio_buffer webrtc_modules_audio_processing_audio_frame_view webrtc_modules_audio_processing_agc_clipping_predictor webrtc_modules_audio_processing_agc_clipping_predictor_evaluator webrtc_modules_audio_processing_agc_gain_control_interface webrtc_modules_audio_processing_agc_gain_map webrtc_modules_audio_processing_agc_level_estimation webrtc_modules_audio_processing_vad_vad webrtc_rtc_base_checks webrtc_rtc_base_gtest_prod webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/audio_processing/agc:agc.headers
add_library(webrtc_modules_audio_processing_agc_agc.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc_agc.headers INTERFACE webrtc_common_audio_common_audio.headers webrtc_common_audio_common_audio_c.headers webrtc_modules_audio_processing_apm_logging.headers webrtc_modules_audio_processing_audio_buffer.headers webrtc_modules_audio_processing_audio_frame_view.headers webrtc_modules_audio_processing_agc_clipping_predictor.headers webrtc_modules_audio_processing_agc_clipping_predictor_evaluator.headers webrtc_modules_audio_processing_agc_gain_control_interface.headers webrtc_modules_audio_processing_agc_gain_map.headers webrtc_modules_audio_processing_agc_level_estimation.headers webrtc_modules_audio_processing_vad_vad.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_gtest_prod.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_safe_minmax.headers webrtc_system_wrappers_field_trial.headers webrtc_system_wrappers_metrics.headers )
target_include_directories(webrtc_modules_audio_processing_agc_agc.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc:clipping_predictor
add_library(webrtc_modules_audio_processing_agc_clipping_predictor ${WEBRTC_ROOT}/modules/audio_processing/agc/clipping_predictor.cc)
target_include_directories(webrtc_modules_audio_processing_agc_clipping_predictor PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc_clipping_predictor PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc_clipping_predictor PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc_clipping_predictor PUBLIC absl::optional webrtc_common_audio_common_audio webrtc_modules_audio_processing_api webrtc_modules_audio_processing_audio_frame_view webrtc_modules_audio_processing_agc_clipping_predictor_level_buffer webrtc_modules_audio_processing_agc_gain_map webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_safe_minmax )

# modules/audio_processing/agc:clipping_predictor.headers
add_library(webrtc_modules_audio_processing_agc_clipping_predictor.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc_clipping_predictor.headers INTERFACE webrtc_common_audio_common_audio.headers webrtc_modules_audio_processing_api.headers webrtc_modules_audio_processing_audio_frame_view.headers webrtc_modules_audio_processing_agc_clipping_predictor_level_buffer.headers webrtc_modules_audio_processing_agc_gain_map.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_safe_minmax.headers )
target_include_directories(webrtc_modules_audio_processing_agc_clipping_predictor.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc:clipping_predictor_evaluator
add_library(webrtc_modules_audio_processing_agc_clipping_predictor_evaluator ${WEBRTC_ROOT}/modules/audio_processing/agc/clipping_predictor_evaluator.cc)
target_include_directories(webrtc_modules_audio_processing_agc_clipping_predictor_evaluator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc_clipping_predictor_evaluator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc_clipping_predictor_evaluator PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc_clipping_predictor_evaluator PUBLIC absl::optional webrtc_rtc_base_checks webrtc_rtc_base_logging )

# modules/audio_processing/agc:clipping_predictor_evaluator.headers
add_library(webrtc_modules_audio_processing_agc_clipping_predictor_evaluator.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc_clipping_predictor_evaluator.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_logging.headers )
target_include_directories(webrtc_modules_audio_processing_agc_clipping_predictor_evaluator.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc:clipping_predictor_level_buffer
add_library(webrtc_modules_audio_processing_agc_clipping_predictor_level_buffer ${WEBRTC_ROOT}/modules/audio_processing/agc/clipping_predictor_level_buffer.cc)
target_include_directories(webrtc_modules_audio_processing_agc_clipping_predictor_level_buffer PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc_clipping_predictor_level_buffer PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc_clipping_predictor_level_buffer PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc_clipping_predictor_level_buffer PUBLIC absl::optional webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_approved )

# modules/audio_processing/agc:clipping_predictor_level_buffer.headers
add_library(webrtc_modules_audio_processing_agc_clipping_predictor_level_buffer.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc_clipping_predictor_level_buffer.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_modules_audio_processing_agc_clipping_predictor_level_buffer.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc:gain_control_interface
add_library(webrtc_modules_audio_processing_agc_gain_control_interface INTERFACE)
target_include_directories(webrtc_modules_audio_processing_agc_gain_control_interface INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc:gain_control_interface.headers
add_library(webrtc_modules_audio_processing_agc_gain_control_interface.headers INTERFACE)
target_include_directories(webrtc_modules_audio_processing_agc_gain_control_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc:gain_map
add_library(webrtc_modules_audio_processing_agc_gain_map INTERFACE)
target_include_directories(webrtc_modules_audio_processing_agc_gain_map INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc:gain_map.headers
add_library(webrtc_modules_audio_processing_agc_gain_map.headers INTERFACE)
target_include_directories(webrtc_modules_audio_processing_agc_gain_map.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc:legacy_agc
add_library(webrtc_modules_audio_processing_agc_legacy_agc ${WEBRTC_ROOT}/modules/audio_processing/agc/legacy/analog_agc.cc ${WEBRTC_ROOT}/modules/audio_processing/agc/legacy/digital_agc.cc)
target_include_directories(webrtc_modules_audio_processing_agc_legacy_agc PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc_legacy_agc PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc_legacy_agc PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc_legacy_agc PUBLIC webrtc_fft_size_256 webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_system_wrappers )

# modules/audio_processing/agc:legacy_agc.headers
add_library(webrtc_modules_audio_processing_agc_legacy_agc.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc_legacy_agc.headers INTERFACE webrtc_common_audio_common_audio.headers webrtc_common_audio_common_audio_c.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_processing_agc_legacy_agc.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/agc:level_estimation
add_library(webrtc_modules_audio_processing_agc_level_estimation ${WEBRTC_ROOT}/modules/audio_processing/agc/agc.cc ${WEBRTC_ROOT}/modules/audio_processing/agc/loudness_histogram.cc ${WEBRTC_ROOT}/modules/audio_processing/agc/utility.cc)
target_include_directories(webrtc_modules_audio_processing_agc_level_estimation PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_agc_level_estimation PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_agc_level_estimation PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_agc_level_estimation PUBLIC webrtc_modules_audio_processing_vad_vad webrtc_rtc_base_checks )

# modules/audio_processing/agc:level_estimation.headers
add_library(webrtc_modules_audio_processing_agc_level_estimation.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_agc_level_estimation.headers INTERFACE webrtc_modules_audio_processing_vad_vad.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_agc_level_estimation.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:api
add_library(webrtc_modules_audio_processing_api ${WEBRTC_ROOT}/modules/audio_processing/include/audio_processing.cc)
target_include_directories(webrtc_modules_audio_processing_api PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_api PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_api PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_api PUBLIC absl::optional webrtc_api_array_view webrtc_api_scoped_refptr webrtc_api_audio_aec3_config webrtc_api_audio_audio_frame_api webrtc_api_audio_echo_control webrtc_modules_audio_processing_audio_frame_view webrtc_modules_audio_processing_audio_processing_statistics webrtc_modules_audio_processing_config webrtc_modules_audio_processing_agc_gain_control_interface webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_arch webrtc_rtc_base_system_file_wrapper webrtc_rtc_base_system_rtc_export )

# modules/audio_processing:api.headers
add_library(webrtc_modules_audio_processing_api.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_api.headers INTERFACE webrtc_api_array_view.headers webrtc_api_scoped_refptr.headers webrtc_api_audio_aec3_config.headers webrtc_api_audio_audio_frame_api.headers webrtc_api_audio_echo_control.headers webrtc_modules_audio_processing_audio_frame_view.headers webrtc_modules_audio_processing_audio_processing_statistics.headers webrtc_modules_audio_processing_config.headers webrtc_modules_audio_processing_agc_gain_control_interface.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_arch.headers webrtc_rtc_base_system_file_wrapper.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_modules_audio_processing_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:apm_logging
add_library(webrtc_modules_audio_processing_apm_logging ${WEBRTC_ROOT}/modules/audio_processing/logging/apm_data_dumper.cc)
target_include_directories(webrtc_modules_audio_processing_apm_logging PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_apm_logging PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_apm_logging PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_apm_logging PUBLIC absl::optional webrtc_api_array_view webrtc_common_audio_common_audio webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# modules/audio_processing:apm_logging.headers
add_library(webrtc_modules_audio_processing_apm_logging.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_apm_logging.headers INTERFACE webrtc_api_array_view.headers webrtc_common_audio_common_audio.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_modules_audio_processing_apm_logging.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:audio_buffer
add_library(webrtc_modules_audio_processing_audio_buffer ${WEBRTC_ROOT}/modules/audio_processing/audio_buffer.cc ${WEBRTC_ROOT}/modules/audio_processing/splitting_filter.cc ${WEBRTC_ROOT}/modules/audio_processing/three_band_filter_bank.cc)
target_include_directories(webrtc_modules_audio_processing_audio_buffer PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_audio_buffer PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_audio_buffer PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_audio_buffer PUBLIC webrtc_api_array_view webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_modules_audio_processing_api webrtc_rtc_base_checks )

# modules/audio_processing:audio_buffer.headers
add_library(webrtc_modules_audio_processing_audio_buffer.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_audio_buffer.headers INTERFACE webrtc_api_array_view.headers webrtc_common_audio_common_audio.headers webrtc_common_audio_common_audio_c.headers webrtc_modules_audio_processing_api.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_audio_buffer.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:audio_frame_proxies
add_library(webrtc_modules_audio_processing_audio_frame_proxies ${WEBRTC_ROOT}/modules/audio_processing/include/audio_frame_proxies.cc)
target_include_directories(webrtc_modules_audio_processing_audio_frame_proxies PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_audio_frame_proxies PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_audio_frame_proxies PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_audio_frame_proxies PUBLIC webrtc_api_audio_audio_frame_api webrtc_modules_audio_processing_api webrtc_modules_audio_processing_audio_frame_view )

# modules/audio_processing:audio_frame_proxies.headers
add_library(webrtc_modules_audio_processing_audio_frame_proxies.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_audio_frame_proxies.headers INTERFACE webrtc_api_audio_audio_frame_api.headers webrtc_modules_audio_processing_api.headers webrtc_modules_audio_processing_audio_frame_view.headers )
target_include_directories(webrtc_modules_audio_processing_audio_frame_proxies.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:audio_frame_view
add_library(webrtc_modules_audio_processing_audio_frame_view INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_audio_frame_view INTERFACE webrtc_api_array_view )
target_include_directories(webrtc_modules_audio_processing_audio_frame_view INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:audio_frame_view.headers
add_library(webrtc_modules_audio_processing_audio_frame_view.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_audio_frame_view.headers INTERFACE webrtc_api_array_view.headers )
target_include_directories(webrtc_modules_audio_processing_audio_frame_view.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing
add_library(webrtc_modules_audio_processing_audio_processing ${WEBRTC_ROOT}/modules/audio_processing/audio_processing_builder_impl.cc ${WEBRTC_ROOT}/modules/audio_processing/audio_processing_impl.cc ${WEBRTC_ROOT}/modules/audio_processing/echo_control_mobile_impl.cc ${WEBRTC_ROOT}/modules/audio_processing/echo_detector/circular_buffer.cc ${WEBRTC_ROOT}/modules/audio_processing/echo_detector/mean_variance_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/echo_detector/moving_max.cc ${WEBRTC_ROOT}/modules/audio_processing/echo_detector/normalized_covariance_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/gain_control_impl.cc ${WEBRTC_ROOT}/modules/audio_processing/gain_controller2.cc ${WEBRTC_ROOT}/modules/audio_processing/level_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/residual_echo_detector.cc ${WEBRTC_ROOT}/modules/audio_processing/typing_detection.cc)
target_include_directories(webrtc_modules_audio_processing_audio_processing PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_audio_processing PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_audio_processing PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_audio_processing PUBLIC absl::optional webrtc_fft_size_256 webrtc_api_array_view webrtc_api_function_view webrtc_api_audio_aec3_config webrtc_api_audio_audio_frame_api webrtc_api_audio_echo_control webrtc_audio_utility_audio_frame_operations webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_common_audio_fir_filter webrtc_common_audio_fir_filter_factory webrtc_modules_audio_processing_aec_dump_interface webrtc_modules_audio_processing_api webrtc_modules_audio_processing_apm_logging webrtc_modules_audio_processing_audio_buffer webrtc_modules_audio_processing_audio_frame_proxies webrtc_modules_audio_processing_audio_frame_view webrtc_modules_audio_processing_audio_processing_statistics webrtc_modules_audio_processing_config webrtc_modules_audio_processing_high_pass_filter webrtc_modules_audio_processing_optionally_built_submodule_creators webrtc_modules_audio_processing_rms_level webrtc_modules_audio_processing_voice_detection webrtc_modules_audio_processing_aec3_aec3 webrtc_modules_audio_processing_aec_dump_aec_dump webrtc_modules_audio_processing_aec_dump_aec_dump_impl webrtc_modules_audio_processing_aecm_aecm_core webrtc_modules_audio_processing_agc_agc webrtc_modules_audio_processing_agc_gain_control_interface webrtc_modules_audio_processing_agc_legacy_agc webrtc_modules_audio_processing_agc2_adaptive_digital webrtc_modules_audio_processing_agc2_fixed_digital webrtc_modules_audio_processing_agc2_gain_applier webrtc_modules_audio_processing_capture_levels_adjuster_capture_levels_adjuster webrtc_modules_audio_processing_ns_ns webrtc_modules_audio_processing_transient_transient_suppressor_api webrtc_modules_audio_processing_vad_vad webrtc_rtc_base_checks webrtc_rtc_base_gtest_prod webrtc_rtc_base_ignore_wundef webrtc_rtc_base_refcount webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_rtc_base_sanitizer webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_rtc_export webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/audio_processing:audio_processing.headers
add_library(webrtc_modules_audio_processing_audio_processing.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_audio_processing.headers INTERFACE webrtc_api_array_view.headers webrtc_api_function_view.headers webrtc_api_audio_aec3_config.headers webrtc_api_audio_audio_frame_api.headers webrtc_api_audio_echo_control.headers webrtc_audio_utility_audio_frame_operations.headers webrtc_common_audio_common_audio.headers webrtc_common_audio_common_audio_c.headers webrtc_common_audio_fir_filter.headers webrtc_common_audio_fir_filter_factory.headers webrtc_modules_audio_processing_aec_dump_interface.headers webrtc_modules_audio_processing_api.headers webrtc_modules_audio_processing_apm_logging.headers webrtc_modules_audio_processing_audio_buffer.headers webrtc_modules_audio_processing_audio_frame_proxies.headers webrtc_modules_audio_processing_audio_frame_view.headers webrtc_modules_audio_processing_audio_processing_statistics.headers webrtc_modules_audio_processing_config.headers webrtc_modules_audio_processing_high_pass_filter.headers webrtc_modules_audio_processing_optionally_built_submodule_creators.headers webrtc_modules_audio_processing_rms_level.headers webrtc_modules_audio_processing_voice_detection.headers webrtc_modules_audio_processing_aec3_aec3.headers webrtc_modules_audio_processing_aec_dump_aec_dump.headers webrtc_modules_audio_processing_aec_dump_aec_dump_impl.headers webrtc_modules_audio_processing_aecm_aecm_core.headers webrtc_modules_audio_processing_agc_agc.headers webrtc_modules_audio_processing_agc_gain_control_interface.headers webrtc_modules_audio_processing_agc_legacy_agc.headers webrtc_modules_audio_processing_agc2_adaptive_digital.headers webrtc_modules_audio_processing_agc2_fixed_digital.headers webrtc_modules_audio_processing_agc2_gain_applier.headers webrtc_modules_audio_processing_capture_levels_adjuster_capture_levels_adjuster.headers webrtc_modules_audio_processing_ns_ns.headers webrtc_modules_audio_processing_transient_transient_suppressor_api.headers webrtc_modules_audio_processing_vad_vad.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_gtest_prod.headers webrtc_rtc_base_ignore_wundef.headers webrtc_rtc_base_refcount.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_safe_minmax.headers webrtc_rtc_base_sanitizer.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_rtc_export.headers webrtc_system_wrappers_field_trial.headers webrtc_system_wrappers_metrics.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_processing_audio_processing.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:audio_processing_statistics
add_library(webrtc_modules_audio_processing_audio_processing_statistics ${WEBRTC_ROOT}/modules/audio_processing/include/audio_processing_statistics.cc)
target_include_directories(webrtc_modules_audio_processing_audio_processing_statistics PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_audio_processing_statistics PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_audio_processing_statistics PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_audio_processing_statistics PUBLIC absl::optional webrtc_rtc_base_system_rtc_export )

# modules/audio_processing:audio_processing_statistics.headers
add_library(webrtc_modules_audio_processing_audio_processing_statistics.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_audio_processing_statistics.headers INTERFACE webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_modules_audio_processing_audio_processing_statistics.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# //third_party/webrtc/files/stable/webrtc/modules/audio_processing:audioproc_debug_proto
add_library(webrtc_modules_audio_processing_audioproc_debug_proto)
protobuf_generate_with_plugin(
  TARGET webrtc_modules_audio_processing_audioproc_debug_proto
  PROTOS  ${WEBRTC_ROOT}/modules/audio_processing/debug.proto
  HEADERFILEEXTENSION .pb.h
  APPEND_PATH
  PROTOPATH  -I${WEBRTC_ROOT}/modules/audio_processing
  PROTOC_OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/modules/audio_processing)
target_include_directories(webrtc_modules_audio_processing_audioproc_debug_proto PUBLIC  ${CMAKE_CURRENT_BINARY_DIR}/modules/audio_processing)
add_library(webrtc_modules_audio_processing_audioproc_debug_proto_lib ALIAS webrtc_modules_audio_processing_audioproc_debug_proto)
target_link_libraries(webrtc_modules_audio_processing_audioproc_debug_proto PUBLIC libprotobuf)

# modules/audio_processing:audioproc_test_utils
add_library(webrtc_modules_audio_processing_audioproc_test_utils ${WEBRTC_ROOT}/modules/audio_processing/test/audio_buffer_tools.cc ${WEBRTC_ROOT}/modules/audio_processing/test/audio_processing_builder_for_testing.cc ${WEBRTC_ROOT}/modules/audio_processing/test/bitexactness_tools.cc ${WEBRTC_ROOT}/modules/audio_processing/test/performance_timer.cc ${WEBRTC_ROOT}/modules/audio_processing/test/simulator_buffers.cc ${WEBRTC_ROOT}/modules/audio_processing/test/test_utils.cc)
target_include_directories(webrtc_modules_audio_processing_audioproc_test_utils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_audioproc_test_utils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_modules_audio_processing_audioproc_test_utils PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_audioproc_test_utils PUBLIC gmock gtest absl::optional webrtc_api_array_view webrtc_api_audio_audio_frame_api webrtc_common_audio_common_audio webrtc_modules_audio_coding_neteq_input_audio_tools webrtc_modules_audio_processing_audio_processing webrtc_modules_audio_processing_api webrtc_modules_audio_processing_audio_buffer webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers webrtc_test_fileutils webrtc_test_test_support )

# modules/audio_processing/capture_levels_adjuster
add_library(webrtc_modules_audio_processing_capture_levels_adjuster_capture_levels_adjuster ${WEBRTC_ROOT}/modules/audio_processing/capture_levels_adjuster/audio_samples_scaler.cc ${WEBRTC_ROOT}/modules/audio_processing/capture_levels_adjuster/capture_levels_adjuster.cc)
target_include_directories(webrtc_modules_audio_processing_capture_levels_adjuster_capture_levels_adjuster PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_capture_levels_adjuster_capture_levels_adjuster PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_capture_levels_adjuster_capture_levels_adjuster PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_capture_levels_adjuster_capture_levels_adjuster PUBLIC webrtc_api_array_view webrtc_modules_audio_processing_audio_buffer webrtc_rtc_base_checks webrtc_rtc_base_safe_minmax )

# modules/audio_processing/capture_levels_adjuster:capture_levels_adjuster.headers
add_library(webrtc_modules_audio_processing_capture_levels_adjuster_capture_levels_adjuster.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_capture_levels_adjuster_capture_levels_adjuster.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_audio_buffer.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_minmax.headers )
target_include_directories(webrtc_modules_audio_processing_capture_levels_adjuster_capture_levels_adjuster.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:config
add_library(webrtc_modules_audio_processing_config ${WEBRTC_ROOT}/modules/audio_processing/include/config.cc)
target_include_directories(webrtc_modules_audio_processing_config PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_config PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_config PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_config PUBLIC webrtc_rtc_base_system_rtc_export )

# modules/audio_processing:config.headers
add_library(webrtc_modules_audio_processing_config.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_config.headers INTERFACE webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_modules_audio_processing_config.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:high_pass_filter
add_library(webrtc_modules_audio_processing_high_pass_filter ${WEBRTC_ROOT}/modules/audio_processing/high_pass_filter.cc)
target_include_directories(webrtc_modules_audio_processing_high_pass_filter PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_high_pass_filter PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_high_pass_filter PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_high_pass_filter PUBLIC webrtc_api_array_view webrtc_modules_audio_processing_audio_buffer webrtc_modules_audio_processing_utility_cascaded_biquad_filter webrtc_rtc_base_checks )

# modules/audio_processing:high_pass_filter.headers
add_library(webrtc_modules_audio_processing_high_pass_filter.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_high_pass_filter.headers INTERFACE webrtc_api_array_view.headers webrtc_modules_audio_processing_audio_buffer.headers webrtc_modules_audio_processing_utility_cascaded_biquad_filter.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_high_pass_filter.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:mocks
add_library(webrtc_modules_audio_processing_mocks INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_mocks INTERFACE webrtc_modules_audio_processing_audio_processing webrtc_modules_audio_processing_aec_dump_interface webrtc_modules_audio_processing_api webrtc_modules_audio_processing_audio_buffer webrtc_modules_audio_processing_audio_processing_statistics webrtc_test_test_support )
target_include_directories(webrtc_modules_audio_processing_mocks INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/ns
add_library(webrtc_modules_audio_processing_ns_ns ${WEBRTC_ROOT}/modules/audio_processing/ns/fast_math.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/histograms.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/noise_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/noise_suppressor.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/ns_fft.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/prior_signal_model.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/prior_signal_model_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/quantile_noise_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/signal_model.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/signal_model_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/speech_probability_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/suppression_params.cc ${WEBRTC_ROOT}/modules/audio_processing/ns/wiener_filter.cc)
target_include_directories(webrtc_modules_audio_processing_ns_ns PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_ns_ns PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_APM_DEBUG_DUMP=0 WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_ns_ns PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_ns_ns PUBLIC absl::optional webrtc_fft_size_128 webrtc_fft_size_256 webrtc_api_array_view webrtc_common_audio_common_audio_c webrtc_modules_audio_processing_apm_logging webrtc_modules_audio_processing_audio_buffer webrtc_modules_audio_processing_high_pass_filter webrtc_modules_audio_processing_utility_cascaded_biquad_filter webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_minmax webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/audio_processing/ns:ns.headers
add_library(webrtc_modules_audio_processing_ns_ns.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_ns_ns.headers INTERFACE webrtc_api_array_view.headers webrtc_common_audio_common_audio_c.headers webrtc_modules_audio_processing_apm_logging.headers webrtc_modules_audio_processing_audio_buffer.headers webrtc_modules_audio_processing_high_pass_filter.headers webrtc_modules_audio_processing_utility_cascaded_biquad_filter.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_safe_minmax.headers webrtc_rtc_base_system_arch.headers webrtc_system_wrappers_field_trial.headers webrtc_system_wrappers_metrics.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_audio_processing_ns_ns.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:optionally_built_submodule_creators
add_library(webrtc_modules_audio_processing_optionally_built_submodule_creators ${WEBRTC_ROOT}/modules/audio_processing/optionally_built_submodule_creators.cc)
target_include_directories(webrtc_modules_audio_processing_optionally_built_submodule_creators PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_optionally_built_submodule_creators PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_optionally_built_submodule_creators PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_optionally_built_submodule_creators PUBLIC webrtc_modules_audio_processing_transient_transient_suppressor_api webrtc_modules_audio_processing_transient_transient_suppressor_impl )

# modules/audio_processing:optionally_built_submodule_creators.headers
add_library(webrtc_modules_audio_processing_optionally_built_submodule_creators.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_optionally_built_submodule_creators.headers INTERFACE webrtc_modules_audio_processing_transient_transient_suppressor_api.headers webrtc_modules_audio_processing_transient_transient_suppressor_impl.headers )
target_include_directories(webrtc_modules_audio_processing_optionally_built_submodule_creators.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:rms_level
add_library(webrtc_modules_audio_processing_rms_level ${WEBRTC_ROOT}/modules/audio_processing/rms_level.cc)
target_include_directories(webrtc_modules_audio_processing_rms_level PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_rms_level PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_rms_level PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_rms_level PUBLIC absl::optional webrtc_api_array_view webrtc_rtc_base_checks )

# modules/audio_processing:rms_level.headers
add_library(webrtc_modules_audio_processing_rms_level.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_rms_level.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_rms_level.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/transient:transient_suppressor_api
add_library(webrtc_modules_audio_processing_transient_transient_suppressor_api INTERFACE)
target_include_directories(webrtc_modules_audio_processing_transient_transient_suppressor_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/transient:transient_suppressor_api.headers
add_library(webrtc_modules_audio_processing_transient_transient_suppressor_api.headers INTERFACE)
target_include_directories(webrtc_modules_audio_processing_transient_transient_suppressor_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/transient:transient_suppressor_impl
add_library(webrtc_modules_audio_processing_transient_transient_suppressor_impl ${WEBRTC_ROOT}/modules/audio_processing/transient/moving_moments.cc ${WEBRTC_ROOT}/modules/audio_processing/transient/transient_detector.cc ${WEBRTC_ROOT}/modules/audio_processing/transient/transient_suppressor_impl.cc ${WEBRTC_ROOT}/modules/audio_processing/transient/wpd_node.cc ${WEBRTC_ROOT}/modules/audio_processing/transient/wpd_tree.cc)
target_include_directories(webrtc_modules_audio_processing_transient_transient_suppressor_impl PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_transient_transient_suppressor_impl PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_transient_transient_suppressor_impl PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_transient_transient_suppressor_impl PUBLIC webrtc_fft_size_256 webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_common_audio_fir_filter webrtc_common_audio_fir_filter_factory webrtc_modules_audio_processing_transient_transient_suppressor_api webrtc_rtc_base_checks webrtc_rtc_base_gtest_prod webrtc_rtc_base_logging )

# modules/audio_processing/transient:transient_suppressor_impl.headers
add_library(webrtc_modules_audio_processing_transient_transient_suppressor_impl.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_transient_transient_suppressor_impl.headers INTERFACE webrtc_common_audio_common_audio.headers webrtc_common_audio_common_audio_c.headers webrtc_common_audio_fir_filter.headers webrtc_common_audio_fir_filter_factory.headers webrtc_modules_audio_processing_transient_transient_suppressor_api.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_gtest_prod.headers webrtc_rtc_base_logging.headers )
target_include_directories(webrtc_modules_audio_processing_transient_transient_suppressor_impl.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/utility:cascaded_biquad_filter
add_library(webrtc_modules_audio_processing_utility_cascaded_biquad_filter ${WEBRTC_ROOT}/modules/audio_processing/utility/cascaded_biquad_filter.cc)
target_include_directories(webrtc_modules_audio_processing_utility_cascaded_biquad_filter PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_utility_cascaded_biquad_filter PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_utility_cascaded_biquad_filter PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_utility_cascaded_biquad_filter PUBLIC webrtc_api_array_view webrtc_rtc_base_checks )

# modules/audio_processing/utility:cascaded_biquad_filter.headers
add_library(webrtc_modules_audio_processing_utility_cascaded_biquad_filter.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_utility_cascaded_biquad_filter.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_utility_cascaded_biquad_filter.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/utility:legacy_delay_estimator
add_library(webrtc_modules_audio_processing_utility_legacy_delay_estimator ${WEBRTC_ROOT}/modules/audio_processing/utility/delay_estimator.cc ${WEBRTC_ROOT}/modules/audio_processing/utility/delay_estimator_wrapper.cc)
target_include_directories(webrtc_modules_audio_processing_utility_legacy_delay_estimator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_utility_legacy_delay_estimator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_utility_legacy_delay_estimator PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_utility_legacy_delay_estimator PUBLIC webrtc_rtc_base_checks )

# modules/audio_processing/utility:legacy_delay_estimator.headers
add_library(webrtc_modules_audio_processing_utility_legacy_delay_estimator.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_utility_legacy_delay_estimator.headers INTERFACE webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_utility_legacy_delay_estimator.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/utility:pffft_wrapper
add_library(webrtc_modules_audio_processing_utility_pffft_wrapper ${WEBRTC_ROOT}/modules/audio_processing/utility/pffft_wrapper.cc)
target_include_directories(webrtc_modules_audio_processing_utility_pffft_wrapper PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_utility_pffft_wrapper PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_utility_pffft_wrapper PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_utility_pffft_wrapper PUBLIC webrtc_pffft webrtc_api_array_view webrtc_rtc_base_checks )

# modules/audio_processing/utility:pffft_wrapper.headers
add_library(webrtc_modules_audio_processing_utility_pffft_wrapper.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_utility_pffft_wrapper.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_utility_pffft_wrapper.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing/vad
add_library(webrtc_modules_audio_processing_vad_vad ${WEBRTC_ROOT}/modules/audio_processing/vad/gmm.cc ${WEBRTC_ROOT}/modules/audio_processing/vad/pitch_based_vad.cc ${WEBRTC_ROOT}/modules/audio_processing/vad/pitch_internal.cc ${WEBRTC_ROOT}/modules/audio_processing/vad/pole_zero_filter.cc ${WEBRTC_ROOT}/modules/audio_processing/vad/standalone_vad.cc ${WEBRTC_ROOT}/modules/audio_processing/vad/vad_audio_proc.cc ${WEBRTC_ROOT}/modules/audio_processing/vad/vad_circular_buffer.cc ${WEBRTC_ROOT}/modules/audio_processing/vad/voice_activity_detector.cc)
target_include_directories(webrtc_modules_audio_processing_vad_vad PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_vad_vad PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_vad_vad PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_vad_vad PUBLIC webrtc_fft_size_256 webrtc_audio_utility_audio_frame_operations webrtc_common_audio_common_audio webrtc_common_audio_common_audio_c webrtc_modules_audio_coding_isac_vad webrtc_rtc_base_checks )

# modules/audio_processing/vad:vad.headers
add_library(webrtc_modules_audio_processing_vad_vad.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_vad_vad.headers INTERFACE webrtc_audio_utility_audio_frame_operations.headers webrtc_common_audio_common_audio.headers webrtc_common_audio_common_audio_c.headers webrtc_modules_audio_coding_isac_vad.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_vad_vad.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/audio_processing:voice_detection
add_library(webrtc_modules_audio_processing_voice_detection ${WEBRTC_ROOT}/modules/audio_processing/voice_detection.cc)
target_include_directories(webrtc_modules_audio_processing_voice_detection PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_audio_processing_voice_detection PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_audio_processing_voice_detection PRIVATE -GR-)
target_link_libraries(webrtc_modules_audio_processing_voice_detection PUBLIC webrtc_api_audio_audio_frame_api webrtc_common_audio_common_audio_c webrtc_modules_audio_processing_api webrtc_modules_audio_processing_audio_buffer webrtc_rtc_base_checks )

# modules/audio_processing:voice_detection.headers
add_library(webrtc_modules_audio_processing_voice_detection.headers INTERFACE)
target_link_libraries(webrtc_modules_audio_processing_voice_detection.headers INTERFACE webrtc_api_audio_audio_frame_api.headers webrtc_common_audio_common_audio_c.headers webrtc_modules_audio_processing_api.headers webrtc_modules_audio_processing_audio_buffer.headers webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_audio_processing_voice_detection.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/congestion_controller
add_library(webrtc_modules_congestion_controller_congestion_controller ${WEBRTC_ROOT}/modules/congestion_controller/receive_side_congestion_controller.cc ${WEBRTC_ROOT}/modules/congestion_controller/remb_throttler.cc)
target_include_directories(webrtc_modules_congestion_controller_congestion_controller PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_congestion_controller PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_congestion_controller PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_congestion_controller PUBLIC webrtc_api_transport_field_trial_based_config webrtc_api_transport_network_control webrtc_api_units_data_rate webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_modules_module_api webrtc_modules_pacing_pacing webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_rtc_base webrtc_rtc_base_synchronization_mutex )

# modules/congestion_controller/goog_cc:alr_detector
add_library(webrtc_modules_congestion_controller_goog_cc_alr_detector ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/alr_detector.cc)
target_include_directories(webrtc_modules_congestion_controller_goog_cc_alr_detector PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_goog_cc_alr_detector PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_goog_cc_alr_detector PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_goog_cc_alr_detector PUBLIC absl::optional webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_logging_rtc_event_pacing webrtc_modules_pacing_interval_budget webrtc_rtc_base_checks webrtc_rtc_base_safe_conversions webrtc_rtc_base_timeutils webrtc_rtc_base_experiments_alr_experiment webrtc_rtc_base_experiments_field_trial_parser )

# modules/congestion_controller/goog_cc:delay_based_bwe
add_library(webrtc_modules_congestion_controller_goog_cc_delay_based_bwe ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/delay_based_bwe.cc ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/inter_arrival_delta.cc)
target_include_directories(webrtc_modules_congestion_controller_goog_cc_delay_based_bwe PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_goog_cc_delay_based_bwe PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_goog_cc_delay_based_bwe PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_goog_cc_delay_based_bwe PUBLIC absl::strings absl::optional webrtc_api_network_state_predictor_api webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_logging_rtc_event_bwe webrtc_modules_congestion_controller_goog_cc_estimators webrtc_modules_pacing_pacing webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_experiments_field_trial_parser webrtc_system_wrappers_metrics )

# modules/congestion_controller/goog_cc:estimators
add_library(webrtc_modules_congestion_controller_goog_cc_estimators ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/acknowledged_bitrate_estimator.cc ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/acknowledged_bitrate_estimator_interface.cc ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/bitrate_estimator.cc ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/probe_bitrate_estimator.cc ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/robust_throughput_estimator.cc ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/trendline_estimator.cc)
target_include_directories(webrtc_modules_congestion_controller_goog_cc_estimators PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_goog_cc_estimators PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_goog_cc_estimators PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_goog_cc_estimators PUBLIC absl::strings absl::optional webrtc_api_network_state_predictor_api webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_rate webrtc_api_units_timestamp webrtc_logging_rtc_event_bwe webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_macromagic webrtc_rtc_base_rtc_numerics webrtc_rtc_base_safe_conversions webrtc_rtc_base_safe_minmax webrtc_rtc_base_experiments_field_trial_parser )

# modules/congestion_controller/goog_cc
add_library(webrtc_modules_congestion_controller_goog_cc_goog_cc ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/goog_cc_network_control.cc)
target_include_directories(webrtc_modules_congestion_controller_goog_cc_goog_cc PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_goog_cc_goog_cc PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_goog_cc_goog_cc PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_goog_cc_goog_cc PUBLIC absl::strings absl::optional webrtc_api_network_state_predictor_api webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_field_trial_based_config webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_logging_rtc_event_bwe webrtc_logging_rtc_event_pacing webrtc_modules_module_api webrtc_modules_congestion_controller_goog_cc_alr_detector webrtc_modules_congestion_controller_goog_cc_delay_based_bwe webrtc_modules_congestion_controller_goog_cc_estimators webrtc_modules_congestion_controller_goog_cc_loss_based_controller webrtc_modules_congestion_controller_goog_cc_probe_controller webrtc_modules_congestion_controller_goog_cc_pushback_controller webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_experiments_alr_experiment webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_experiments_rate_control_settings webrtc_system_wrappers_system_wrappers )

# modules/congestion_controller/goog_cc:link_capacity_estimator
add_library(webrtc_modules_congestion_controller_goog_cc_link_capacity_estimator ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/link_capacity_estimator.cc)
target_include_directories(webrtc_modules_congestion_controller_goog_cc_link_capacity_estimator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_goog_cc_link_capacity_estimator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_goog_cc_link_capacity_estimator PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_goog_cc_link_capacity_estimator PUBLIC absl::optional webrtc_api_units_data_rate webrtc_rtc_base_safe_minmax )

# modules/congestion_controller/goog_cc:loss_based_controller
add_library(webrtc_modules_congestion_controller_goog_cc_loss_based_controller ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/loss_based_bandwidth_estimation.cc ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/send_side_bandwidth_estimation.cc)
target_include_directories(webrtc_modules_congestion_controller_goog_cc_loss_based_controller PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_goog_cc_loss_based_controller PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_goog_cc_loss_based_controller PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_goog_cc_loss_based_controller PUBLIC absl::strings absl::optional webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_rate webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_logging_rtc_event_bwe webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_experiments_field_trial_parser webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/congestion_controller/goog_cc:probe_controller
add_library(webrtc_modules_congestion_controller_goog_cc_probe_controller ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/probe_controller.cc)
target_include_directories(webrtc_modules_congestion_controller_goog_cc_probe_controller PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_goog_cc_probe_controller PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_goog_cc_probe_controller PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_goog_cc_probe_controller PUBLIC absl::core_headers absl::strings absl::optional webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_rate webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_logging_rtc_event_bwe webrtc_logging_rtc_event_pacing webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_macromagic webrtc_rtc_base_safe_conversions webrtc_rtc_base_experiments_field_trial_parser webrtc_system_wrappers_metrics )

# modules/congestion_controller/goog_cc:pushback_controller
add_library(webrtc_modules_congestion_controller_goog_cc_pushback_controller ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/congestion_window_pushback_controller.cc)
target_include_directories(webrtc_modules_congestion_controller_goog_cc_pushback_controller PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_goog_cc_pushback_controller PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_goog_cc_pushback_controller PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_goog_cc_pushback_controller PUBLIC absl::strings absl::optional webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_size webrtc_rtc_base_checks webrtc_rtc_base_experiments_rate_control_settings )

# modules/congestion_controller/goog_cc:test_goog_cc_printer
add_library(webrtc_modules_congestion_controller_goog_cc_test_goog_cc_printer ${WEBRTC_ROOT}/modules/congestion_controller/goog_cc/test/goog_cc_printer.cc)
target_include_directories(webrtc_modules_congestion_controller_goog_cc_test_goog_cc_printer PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_goog_cc_test_goog_cc_printer PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_goog_cc_test_goog_cc_printer PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_goog_cc_test_goog_cc_printer PUBLIC absl::optional webrtc_api_rtc_event_log_rtc_event_log webrtc_api_transport_goog_cc webrtc_api_transport_network_control webrtc_api_units_timestamp webrtc_modules_congestion_controller_goog_cc_goog_cc webrtc_modules_congestion_controller_goog_cc_alr_detector webrtc_modules_congestion_controller_goog_cc_delay_based_bwe webrtc_modules_congestion_controller_goog_cc_estimators webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator webrtc_rtc_base_checks webrtc_test_logging_log_writer )

# modules/congestion_controller/rtp:control_handler
add_library(webrtc_modules_congestion_controller_rtp_control_handler ${WEBRTC_ROOT}/modules/congestion_controller/rtp/control_handler.cc)
target_include_directories(webrtc_modules_congestion_controller_rtp_control_handler PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_rtp_control_handler PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_rtp_control_handler PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_rtp_control_handler PUBLIC absl::optional webrtc_api_sequence_checker webrtc_api_transport_network_control webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_time_delta webrtc_modules_pacing_pacing webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_safe_minmax webrtc_rtc_base_system_no_unique_address webrtc_system_wrappers_field_trial )

# modules/congestion_controller/rtp:transport_feedback
add_library(webrtc_modules_congestion_controller_rtp_transport_feedback ${WEBRTC_ROOT}/modules/congestion_controller/rtp/transport_feedback_adapter.cc ${WEBRTC_ROOT}/modules/congestion_controller/rtp/transport_feedback_demuxer.cc)
target_include_directories(webrtc_modules_congestion_controller_rtp_transport_feedback PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_congestion_controller_rtp_transport_feedback PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_congestion_controller_rtp_transport_feedback PRIVATE -GR-)
target_link_libraries(webrtc_modules_congestion_controller_rtp_transport_feedback PUBLIC absl::algorithm_container absl::optional webrtc_api_sequence_checker webrtc_api_transport_network_control webrtc_api_units_data_size webrtc_api_units_timestamp webrtc_modules_module_api_public webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_network_sent_packet webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial )

# modules:module_api
add_library(webrtc_modules_module_api INTERFACE)
target_include_directories(webrtc_modules_module_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules:module_api.headers
add_library(webrtc_modules_module_api.headers INTERFACE)
target_include_directories(webrtc_modules_module_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules:module_api_public
add_library(webrtc_modules_module_api_public INTERFACE)
target_link_libraries(webrtc_modules_module_api_public INTERFACE absl::optional )
target_include_directories(webrtc_modules_module_api_public INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules:module_api_public.headers
add_library(webrtc_modules_module_api_public.headers INTERFACE)
target_include_directories(webrtc_modules_module_api_public.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules:module_fec_api
add_library(webrtc_modules_module_fec_api INTERFACE)
target_include_directories(webrtc_modules_module_fec_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules:module_fec_api.headers
add_library(webrtc_modules_module_fec_api.headers INTERFACE)
target_include_directories(webrtc_modules_module_fec_api.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/pacing:interval_budget
add_library(webrtc_modules_pacing_interval_budget ${WEBRTC_ROOT}/modules/pacing/interval_budget.cc)
target_include_directories(webrtc_modules_pacing_interval_budget PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_pacing_interval_budget PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_pacing_interval_budget PRIVATE -GR-)
target_link_libraries(webrtc_modules_pacing_interval_budget PUBLIC webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# modules/pacing
add_library(webrtc_modules_pacing_pacing ${WEBRTC_ROOT}/modules/pacing/bitrate_prober.cc ${WEBRTC_ROOT}/modules/pacing/paced_sender.cc ${WEBRTC_ROOT}/modules/pacing/pacing_controller.cc ${WEBRTC_ROOT}/modules/pacing/packet_router.cc ${WEBRTC_ROOT}/modules/pacing/round_robin_packet_queue.cc ${WEBRTC_ROOT}/modules/pacing/task_queue_paced_sender.cc)
target_include_directories(webrtc_modules_pacing_pacing PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_pacing_pacing PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_pacing_pacing PRIVATE -GR-)
target_link_libraries(webrtc_modules_pacing_pacing PUBLIC absl::memory absl::strings absl::optional webrtc_api_function_view webrtc_api_sequence_checker webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_api_transport_field_trial_based_config webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_logging_rtc_event_bwe webrtc_logging_rtc_event_pacing webrtc_modules_module_api webrtc_modules_pacing_interval_budget webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_utility_utility webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_to_queued_task webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_metrics )

# modules/remote_bitrate_estimator
add_library(webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator ${WEBRTC_ROOT}/modules/remote_bitrate_estimator/aimd_rate_control.cc ${WEBRTC_ROOT}/modules/remote_bitrate_estimator/bwe_defines.cc ${WEBRTC_ROOT}/modules/remote_bitrate_estimator/inter_arrival.cc ${WEBRTC_ROOT}/modules/remote_bitrate_estimator/overuse_detector.cc ${WEBRTC_ROOT}/modules/remote_bitrate_estimator/overuse_estimator.cc ${WEBRTC_ROOT}/modules/remote_bitrate_estimator/packet_arrival_map.cc ${WEBRTC_ROOT}/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc ${WEBRTC_ROOT}/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc ${WEBRTC_ROOT}/modules/remote_bitrate_estimator/remote_estimator_proxy.cc)
target_include_directories(webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator PRIVATE -GR-)
target_link_libraries(webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator PUBLIC absl::strings absl::optional webrtc_api_network_state_predictor_api webrtc_api_rtp_headers webrtc_api_transport_field_trial_based_config webrtc_api_transport_network_control webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_modules_module_api webrtc_modules_module_api_public webrtc_modules_congestion_controller_goog_cc_link_capacity_estimator webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_rtc_base_safe_minmax webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/rtp_rtcp:mock_rtp_rtcp
add_library(webrtc_modules_rtp_rtcp_mock_rtp_rtcp INTERFACE)
target_link_libraries(webrtc_modules_rtp_rtcp_mock_rtp_rtcp INTERFACE absl::optional webrtc_api_video_video_bitrate_allocation webrtc_modules_module_api webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_test_test_support )
target_include_directories(webrtc_modules_rtp_rtcp_mock_rtp_rtcp INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/rtp_rtcp
add_library(webrtc_modules_rtp_rtcp_rtp_rtcp ${WEBRTC_ROOT}/modules/rtp_rtcp/source/absolute_capture_time_interpolator.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/absolute_capture_time_receiver.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/absolute_capture_time_sender.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/active_decode_targets_helper.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/capture_clock_offset_updater.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/create_video_rtp_depacketizer.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/dtmf_queue.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/fec_private_tables_bursty.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/fec_private_tables_random.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/flexfec_header_reader_writer.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/flexfec_receiver.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/flexfec_sender.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/forward_error_correction.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/forward_error_correction_internal.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/packet_loss_stats.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/packet_sequencer.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/receive_statistics_impl.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/remote_ntp_time_estimator.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_nack_stats.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_receiver.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_sender.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_descriptor_authentication.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_format.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_format_h264.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_format_video_generic.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_format_vp8.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_format_vp9.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_header_extension_size.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_packet_history.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_packetizer_av1.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_rtcp_impl2.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_sender.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_sender_audio.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_sender_egress.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_sender_video.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_sender_video_frame_transformer_delegate.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_sequence_number_map.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_utility.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/source_tracker.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/time_util.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/tmmbr_help.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/ulpfec_generator.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/ulpfec_header_reader_writer.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/ulpfec_receiver_impl.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/video_rtp_depacketizer.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/video_rtp_depacketizer_av1.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/video_rtp_depacketizer_generic.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/video_rtp_depacketizer_h264.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/video_rtp_depacketizer_raw.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/video_rtp_depacketizer_vp8.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/video_rtp_depacketizer_vp9.cc)
target_include_directories(webrtc_modules_rtp_rtcp_rtp_rtcp PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_rtp_rtcp_rtp_rtcp PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_rtp_rtcp_rtp_rtcp PRIVATE -GR-)
target_link_libraries(webrtc_modules_rtp_rtcp_rtp_rtcp PUBLIC absl::algorithm_container absl::core_headers absl::algorithm_container absl::memory absl::strings absl::optional absl::variant webrtc_api_array_view webrtc_api_frame_transformer_interface webrtc_api_function_view webrtc_api_libjingle_peerconnection_api webrtc_api_rtp_headers webrtc_api_rtp_packet_info webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_transport_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_crypto_frame_encryptor_interface webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_api_transport_rtp_dependency_descriptor webrtc_api_transport_rtp_rtp_source webrtc_api_units_data_rate webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_api_video_encoded_frame webrtc_api_video_encoded_image webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_video_frame_type webrtc_api_video_video_layers_allocation webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_call_rtp_interfaces webrtc_common_video_common_video webrtc_logging_rtc_event_audio webrtc_logging_rtc_event_rtp_rtcp webrtc_modules_module_api_public webrtc_modules_module_fec_api webrtc_modules_audio_coding_audio_coding_module_typedefs webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_rtp_rtcp_rtp_video_header webrtc_modules_video_coding_codec_globals_headers webrtc_rtc_base_checks webrtc_rtc_base_divide_round webrtc_rtc_base_gtest_prod webrtc_rtc_base_rate_limiter webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_rtc_base_safe_minmax webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_repeating_task webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_time_timestamp_extrapolator webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_metrics )

# modules/rtp_rtcp:rtp_rtcp_format
add_library(webrtc_modules_rtp_rtcp_rtp_rtcp_format ${WEBRTC_ROOT}/modules/rtp_rtcp/include/report_block_data.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/include/rtp_rtcp_defines.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/app.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/bye.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/common_header.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/compound_packet.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/dlrr.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/extended_jitter_report.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/extended_reports.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/fir.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/loss_notification.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/nack.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/pli.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/psfb.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/receiver_report.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/remb.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/remote_estimate.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/report_block.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/rrtr.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/rtpfb.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/sdes.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/sender_report.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/tmmbn.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/tmmbr.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_dependency_descriptor_extension.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_dependency_descriptor_reader.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_dependency_descriptor_reader.h ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_dependency_descriptor_writer.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_dependency_descriptor_writer.h ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_generic_frame_descriptor.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_generic_frame_descriptor_extension.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_header_extension_map.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_header_extensions.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_packet.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_packet_received.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_packet_to_send.cc ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_video_layers_allocation_extension.cc)
target_include_directories(webrtc_modules_rtp_rtcp_rtp_rtcp_format PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_rtp_rtcp_rtp_rtcp_format PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_rtp_rtcp_rtp_rtcp_format PRIVATE -GR-)
target_link_libraries(webrtc_modules_rtp_rtcp_rtp_rtcp_format PUBLIC absl::algorithm_container absl::strings absl::optional absl::variant webrtc_api_array_view webrtc_api_function_view webrtc_api_refcountedbase webrtc_api_rtp_headers webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_audio_codecs_audio_codecs_api webrtc_api_transport_network_control webrtc_api_transport_rtp_dependency_descriptor webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_api_video_video_frame webrtc_api_video_video_layers_allocation webrtc_api_video_video_rtp_headers webrtc_common_video_common_video webrtc_modules_module_api_public webrtc_modules_video_coding_codec_globals_headers webrtc_rtc_base_checks webrtc_rtc_base_divide_round webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_system_wrappers )

# modules/rtp_rtcp:rtp_rtcp_format.headers
add_library(webrtc_modules_rtp_rtcp_rtp_rtcp_format.headers INTERFACE)
target_link_libraries(webrtc_modules_rtp_rtcp_rtp_rtcp_format.headers INTERFACE webrtc_api_array_view.headers webrtc_api_function_view.headers webrtc_api_refcountedbase.headers webrtc_api_rtp_headers.headers webrtc_api_rtp_parameters.headers webrtc_api_scoped_refptr.headers webrtc_api_audio_codecs_audio_codecs_api.headers webrtc_api_transport_network_control.headers webrtc_api_transport_rtp_dependency_descriptor.headers webrtc_api_units_time_delta.headers webrtc_api_units_timestamp.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_layers_allocation.headers webrtc_api_video_video_rtp_headers.headers webrtc_common_video_common_video.headers webrtc_modules_module_api_public.headers webrtc_modules_video_coding_codec_globals_headers.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_divide_round.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_rtp_rtcp_rtp_rtcp_format.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/rtp_rtcp:rtp_video_header
add_library(webrtc_modules_rtp_rtcp_rtp_video_header ${WEBRTC_ROOT}/modules/rtp_rtcp/source/rtp_video_header.cc)
target_include_directories(webrtc_modules_rtp_rtcp_rtp_video_header PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_rtp_rtcp_rtp_video_header PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_rtp_rtcp_rtp_video_header PRIVATE -GR-)
target_link_libraries(webrtc_modules_rtp_rtcp_rtp_video_header PUBLIC absl::algorithm_container absl::optional absl::variant webrtc_api_transport_rtp_dependency_descriptor webrtc_api_video_video_frame webrtc_api_video_video_frame_type webrtc_api_video_video_rtp_headers webrtc_modules_video_coding_codec_globals_headers )

# modules/rtp_rtcp:rtp_video_header.headers
add_library(webrtc_modules_rtp_rtcp_rtp_video_header.headers INTERFACE)
target_link_libraries(webrtc_modules_rtp_rtcp_rtp_video_header.headers INTERFACE webrtc_api_transport_rtp_dependency_descriptor.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_frame_type.headers webrtc_api_video_video_rtp_headers.headers webrtc_modules_video_coding_codec_globals_headers.headers )
target_include_directories(webrtc_modules_rtp_rtcp_rtp_video_header.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/third_party/g711:g711_3p
add_library(webrtc_modules_third_party_g711_g711_3p ${WEBRTC_ROOT}/modules/third_party/g711/g711.c)
target_include_directories(webrtc_modules_third_party_g711_g711_3p PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_third_party_g711_g711_3p PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_third_party_g711_g711_3p PRIVATE -GR- -TC)

# modules/third_party/g722:g722_3p
add_library(webrtc_modules_third_party_g722_g722_3p ${WEBRTC_ROOT}/modules/third_party/g722/g722_decode.c ${WEBRTC_ROOT}/modules/third_party/g722/g722_encode.c)
target_include_directories(webrtc_modules_third_party_g722_g722_3p PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_third_party_g722_g722_3p PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_third_party_g722_g722_3p PRIVATE -GR- -TC)

# modules/utility
add_library(webrtc_modules_utility_utility ${WEBRTC_ROOT}/modules/utility/source/process_thread_impl.cc)
target_include_directories(webrtc_modules_utility_utility PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_utility_utility PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_utility_utility PRIVATE -GR-)
target_link_libraries(webrtc_modules_utility_utility PUBLIC webrtc_api_sequence_checker webrtc_api_task_queue_task_queue webrtc_common_audio_common_audio webrtc_modules_module_api webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers )

# modules/utility:utility.headers
add_library(webrtc_modules_utility_utility.headers INTERFACE)
target_link_libraries(webrtc_modules_utility_utility.headers INTERFACE webrtc_api_sequence_checker.headers webrtc_api_task_queue_task_queue.headers webrtc_common_audio_common_audio.headers webrtc_modules_module_api.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_system_arch.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_utility_utility.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/video_capture:video_capture_internal_impl
add_library(webrtc_modules_video_capture_video_capture_internal_impl ${WEBRTC_ROOT}/modules/video_capture/windows/device_info_ds.cc ${WEBRTC_ROOT}/modules/video_capture/windows/help_functions_ds.cc ${WEBRTC_ROOT}/modules/video_capture/windows/sink_filter_ds.cc ${WEBRTC_ROOT}/modules/video_capture/windows/video_capture_ds.cc ${WEBRTC_ROOT}/modules/video_capture/windows/video_capture_factory_windows.cc)
target_include_directories(webrtc_modules_video_capture_video_capture_internal_impl PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_capture_video_capture_internal_impl PRIVATE RTC_ENABLE_VP9 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_WIN)
target_compile_options(webrtc_modules_video_capture_video_capture_internal_impl PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_capture_video_capture_internal_impl PUBLIC webrtc_api_scoped_refptr webrtc_modules_video_capture_video_capture_module webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers ole32::ole32 oleaut32::oleaut32 strmiids::strmiids user32::user32)

# modules/video_capture:video_capture_module
add_library(webrtc_modules_video_capture_video_capture_module ${WEBRTC_ROOT}/modules/video_capture/device_info_impl.cc ${WEBRTC_ROOT}/modules/video_capture/video_capture_factory.cc ${WEBRTC_ROOT}/modules/video_capture/video_capture_impl.cc)
target_include_directories(webrtc_modules_video_capture_video_capture_module PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_capture_video_capture_module PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_capture_video_capture_module PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_capture_video_capture_module PUBLIC absl::strings webrtc-yuv webrtc_api_scoped_refptr webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_common_video_common_video webrtc_media_rtc_media_base webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_stringutils webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers )

# modules/video_coding:chain_diff_calculator
add_library(webrtc_modules_video_coding_chain_diff_calculator ${WEBRTC_ROOT}/modules/video_coding/chain_diff_calculator.cc)
target_include_directories(webrtc_modules_video_coding_chain_diff_calculator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_chain_diff_calculator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_chain_diff_calculator PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_chain_diff_calculator PUBLIC absl::algorithm_container absl::optional webrtc_rtc_base_checks webrtc_rtc_base_logging )

# modules/video_coding:codec_globals_headers
add_library(webrtc_modules_video_coding_codec_globals_headers INTERFACE)
target_link_libraries(webrtc_modules_video_coding_codec_globals_headers INTERFACE webrtc_rtc_base_checks )
target_include_directories(webrtc_modules_video_coding_codec_globals_headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/video_coding:codec_globals_headers.headers
add_library(webrtc_modules_video_coding_codec_globals_headers.headers INTERFACE)
target_link_libraries(webrtc_modules_video_coding_codec_globals_headers.headers INTERFACE webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_modules_video_coding_codec_globals_headers.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/video_coding/codecs/av1:av1_svc_config
add_library(webrtc_modules_video_coding_codecs_av1_av1_svc_config ${WEBRTC_ROOT}/modules/video_coding/codecs/av1/av1_svc_config.cc)
target_include_directories(webrtc_modules_video_coding_codecs_av1_av1_svc_config PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_codecs_av1_av1_svc_config PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_codecs_av1_av1_svc_config PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_codecs_av1_av1_svc_config PUBLIC webrtc_api_video_codecs_video_codecs_api webrtc_modules_video_coding_svc_scalability_structures webrtc_modules_video_coding_svc_scalable_video_controller webrtc_rtc_base_checks webrtc_rtc_base_logging )

# modules/video_coding/codecs/av1:libaom_av1_decoder
add_library(webrtc_modules_video_coding_codecs_av1_libaom_av1_decoder ${WEBRTC_ROOT}/modules/video_coding/codecs/av1/libaom_av1_decoder_absent.cc)
target_include_directories(webrtc_modules_video_coding_codecs_av1_libaom_av1_decoder PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_codecs_av1_libaom_av1_decoder PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_codecs_av1_libaom_av1_decoder PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_codecs_av1_libaom_av1_decoder PUBLIC absl::core_headers webrtc_api_video_codecs_video_codecs_api )

# modules/video_coding/codecs/av1:libaom_av1_encoder
add_library(webrtc_modules_video_coding_codecs_av1_libaom_av1_encoder ${WEBRTC_ROOT}/modules/video_coding/codecs/av1/libaom_av1_encoder_absent.cc)
target_include_directories(webrtc_modules_video_coding_codecs_av1_libaom_av1_encoder PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_codecs_av1_libaom_av1_encoder PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_codecs_av1_libaom_av1_encoder PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_codecs_av1_libaom_av1_encoder PUBLIC absl::algorithm_container absl::core_headers absl::optional webrtc_api_video_codecs_video_codecs_api webrtc_modules_video_coding_svc_scalability_structures webrtc_modules_video_coding_svc_scalable_video_controller )

# modules/video_coding:conditional_dependency_on_ffmpeg_and_openh264
add_library(webrtc_modules_video_coding_conditional_dependency_on_ffmpeg_and_openh264 INTERFACE)
target_include_directories(webrtc_modules_video_coding_conditional_dependency_on_ffmpeg_and_openh264 INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/video_coding:encoded_frame
add_library(webrtc_modules_video_coding_encoded_frame ${WEBRTC_ROOT}/modules/video_coding/encoded_frame.cc)
target_include_directories(webrtc_modules_video_coding_encoded_frame PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_encoded_frame PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_encoded_frame PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_encoded_frame PUBLIC absl::optional absl::variant webrtc_api_video_encoded_image webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_modules_module_api_public webrtc_modules_rtp_rtcp_rtp_video_header webrtc_modules_video_coding_codec_globals_headers webrtc_modules_video_coding_video_codec_interface webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_experiments_alr_experiment webrtc_rtc_base_experiments_rtt_mult_experiment webrtc_rtc_base_system_rtc_export webrtc_system_wrappers_system_wrappers )

# modules/video_coding:encoded_frame.headers
add_library(webrtc_modules_video_coding_encoded_frame.headers INTERFACE)
target_link_libraries(webrtc_modules_video_coding_encoded_frame.headers INTERFACE webrtc_api_video_encoded_image.headers webrtc_api_video_video_frame.headers webrtc_api_video_video_rtp_headers.headers webrtc_modules_module_api_public.headers webrtc_modules_rtp_rtcp_rtp_video_header.headers webrtc_modules_video_coding_codec_globals_headers.headers webrtc_modules_video_coding_video_codec_interface.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_experiments_alr_experiment.headers webrtc_rtc_base_experiments_rtt_mult_experiment.headers webrtc_rtc_base_system_rtc_export.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_modules_video_coding_encoded_frame.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/video_coding:frame_dependencies_calculator
add_library(webrtc_modules_video_coding_frame_dependencies_calculator ${WEBRTC_ROOT}/modules/video_coding/frame_dependencies_calculator.cc)
target_include_directories(webrtc_modules_video_coding_frame_dependencies_calculator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_frame_dependencies_calculator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_frame_dependencies_calculator PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_frame_dependencies_calculator PUBLIC absl::algorithm_container absl::algorithm_container absl::optional webrtc_api_array_view webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor webrtc_rtc_base_checks webrtc_rtc_base_logging )

# modules/video_coding:nack_module
add_library(webrtc_modules_video_coding_nack_module ${WEBRTC_ROOT}/modules/video_coding/histogram.cc ${WEBRTC_ROOT}/modules/video_coding/nack_module2.cc)
target_include_directories(webrtc_modules_video_coding_nack_module PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_nack_module PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_nack_module PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_nack_module PUBLIC webrtc_api_sequence_checker webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_modules_module_api webrtc_modules_utility_utility webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_repeating_task webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial )

# modules/video_coding:simulcast_test_fixture_impl
add_library(webrtc_modules_video_coding_simulcast_test_fixture_impl ${WEBRTC_ROOT}/modules/video_coding/utility/simulcast_test_fixture_impl.cc)
target_include_directories(webrtc_modules_video_coding_simulcast_test_fixture_impl PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_simulcast_test_fixture_impl PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_modules_video_coding_simulcast_test_fixture_impl PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_simulcast_test_fixture_impl PUBLIC webrtc_api_mock_video_decoder webrtc_api_mock_video_encoder webrtc_api_simulcast_test_fixture_api webrtc_api_video_encoded_image webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_modules_video_coding_video_coding webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_test_test_support )

# modules/video_coding/svc:scalability_structures
add_library(webrtc_modules_video_coding_svc_scalability_structures ${WEBRTC_ROOT}/modules/video_coding/svc/create_scalability_structure.cc ${WEBRTC_ROOT}/modules/video_coding/svc/scalability_structure_full_svc.cc ${WEBRTC_ROOT}/modules/video_coding/svc/scalability_structure_key_svc.cc ${WEBRTC_ROOT}/modules/video_coding/svc/scalability_structure_l2t2_key_shift.cc ${WEBRTC_ROOT}/modules/video_coding/svc/scalability_structure_simulcast.cc)
target_include_directories(webrtc_modules_video_coding_svc_scalability_structures PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_svc_scalability_structures PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_svc_scalability_structures PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_svc_scalability_structures PUBLIC absl::core_headers absl::strings absl::optional webrtc_api_transport_rtp_dependency_descriptor webrtc_api_video_video_bitrate_allocation webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor webrtc_modules_video_coding_svc_scalable_video_controller webrtc_rtc_base_checks webrtc_rtc_base_logging )

# modules/video_coding/svc:scalable_video_controller
add_library(webrtc_modules_video_coding_svc_scalable_video_controller ${WEBRTC_ROOT}/modules/video_coding/svc/scalable_video_controller_no_layering.cc)
target_include_directories(webrtc_modules_video_coding_svc_scalable_video_controller PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_svc_scalable_video_controller PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_svc_scalable_video_controller PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_svc_scalable_video_controller PUBLIC absl::algorithm_container absl::optional webrtc_api_transport_rtp_dependency_descriptor webrtc_api_video_video_bitrate_allocation webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor webrtc_rtc_base_checks )

# modules/video_coding/svc:svc_rate_allocator
add_library(webrtc_modules_video_coding_svc_svc_rate_allocator ${WEBRTC_ROOT}/modules/video_coding/svc/svc_rate_allocator.cc)
target_include_directories(webrtc_modules_video_coding_svc_svc_rate_allocator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_svc_svc_rate_allocator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_svc_svc_rate_allocator PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_svc_svc_rate_allocator PUBLIC absl::algorithm_container webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator webrtc_api_video_video_codec_constants webrtc_api_video_codecs_video_codecs_api webrtc_modules_video_coding_svc_scalability_structures webrtc_rtc_base_checks webrtc_rtc_base_experiments_stable_target_rate_experiment )

# modules/video_coding:video_codec_interface
add_library(webrtc_modules_video_coding_video_codec_interface ${WEBRTC_ROOT}/modules/video_coding/include/video_codec_interface.cc ${WEBRTC_ROOT}/modules/video_coding/video_coding_defines.cc)
target_include_directories(webrtc_modules_video_coding_video_codec_interface PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_video_codec_interface PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_video_codec_interface PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_video_codec_interface PUBLIC absl::optional webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor webrtc_modules_video_coding_codec_globals_headers webrtc_rtc_base_system_rtc_export )

# modules/video_coding:video_codec_interface.headers
add_library(webrtc_modules_video_coding_video_codec_interface.headers INTERFACE)
target_link_libraries(webrtc_modules_video_coding_video_codec_interface.headers INTERFACE webrtc_api_video_video_frame.headers webrtc_api_video_video_rtp_headers.headers webrtc_api_video_codecs_video_codecs_api.headers webrtc_common_video_common_video.headers webrtc_common_video_generic_frame_descriptor_generic_frame_descriptor.headers webrtc_modules_video_coding_codec_globals_headers.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_modules_video_coding_video_codec_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/video_coding
add_library(webrtc_modules_video_coding_video_coding ${WEBRTC_ROOT}/modules/video_coding/codec_timer.cc ${WEBRTC_ROOT}/modules/video_coding/decoder_database.cc ${WEBRTC_ROOT}/modules/video_coding/fec_controller_default.cc ${WEBRTC_ROOT}/modules/video_coding/frame_buffer2.cc ${WEBRTC_ROOT}/modules/video_coding/frame_object.cc ${WEBRTC_ROOT}/modules/video_coding/generic_decoder.cc ${WEBRTC_ROOT}/modules/video_coding/h264_sprop_parameter_sets.cc ${WEBRTC_ROOT}/modules/video_coding/h264_sps_pps_tracker.cc ${WEBRTC_ROOT}/modules/video_coding/inter_frame_delay.cc ${WEBRTC_ROOT}/modules/video_coding/jitter_estimator.cc ${WEBRTC_ROOT}/modules/video_coding/loss_notification_controller.cc ${WEBRTC_ROOT}/modules/video_coding/media_opt_util.cc ${WEBRTC_ROOT}/modules/video_coding/packet_buffer.cc ${WEBRTC_ROOT}/modules/video_coding/rtp_frame_id_only_ref_finder.cc ${WEBRTC_ROOT}/modules/video_coding/rtp_frame_reference_finder.cc ${WEBRTC_ROOT}/modules/video_coding/rtp_generic_ref_finder.cc ${WEBRTC_ROOT}/modules/video_coding/rtp_seq_num_only_ref_finder.cc ${WEBRTC_ROOT}/modules/video_coding/rtp_vp8_ref_finder.cc ${WEBRTC_ROOT}/modules/video_coding/rtp_vp9_ref_finder.cc ${WEBRTC_ROOT}/modules/video_coding/rtt_filter.cc ${WEBRTC_ROOT}/modules/video_coding/timestamp_map.cc ${WEBRTC_ROOT}/modules/video_coding/timing.cc ${WEBRTC_ROOT}/modules/video_coding/unique_timestamp_counter.cc ${WEBRTC_ROOT}/modules/video_coding/video_codec_initializer.cc ${WEBRTC_ROOT}/modules/video_coding/video_receiver2.cc)
target_include_directories(webrtc_modules_video_coding_video_coding PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_video_coding PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_video_coding PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_video_coding PUBLIC absl::core_headers absl::algorithm_container absl::memory absl::optional absl::variant webrtc_api_array_view webrtc_api_fec_controller_api webrtc_api_rtp_headers webrtc_api_rtp_packet_info webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_units_data_rate webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_encoded_frame webrtc_api_video_encoded_image webrtc_api_video_video_adaptation webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator webrtc_api_video_video_bitrate_allocator_factory webrtc_api_video_video_frame webrtc_api_video_video_frame_type webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_modules_module_api webrtc_modules_module_api_public webrtc_modules_module_fec_api webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_rtp_rtcp_rtp_video_header webrtc_modules_video_coding_codec_globals_headers webrtc_modules_video_coding_encoded_frame webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_modules_video_coding_webrtc_vp9_helpers webrtc_modules_video_coding_codecs_av1_av1_svc_config webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_threading webrtc_rtc_base_experiments_alr_experiment webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_experiments_jitter_upper_bound_experiment webrtc_rtc_base_experiments_min_video_bitrate_experiment webrtc_rtc_base_experiments_rate_control_settings webrtc_rtc_base_experiments_rtt_mult_experiment webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_task_utils_repeating_task webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_base64_base64 webrtc_rtc_base_time_timestamp_extrapolator webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/video_coding:video_coding_utility
add_library(webrtc_modules_video_coding_video_coding_utility ${WEBRTC_ROOT}/modules/video_coding/utility/decoded_frames_history.cc ${WEBRTC_ROOT}/modules/video_coding/utility/frame_dropper.cc ${WEBRTC_ROOT}/modules/video_coding/utility/framerate_controller.cc ${WEBRTC_ROOT}/modules/video_coding/utility/ivf_file_reader.cc ${WEBRTC_ROOT}/modules/video_coding/utility/ivf_file_writer.cc ${WEBRTC_ROOT}/modules/video_coding/utility/qp_parser.cc ${WEBRTC_ROOT}/modules/video_coding/utility/quality_scaler.cc ${WEBRTC_ROOT}/modules/video_coding/utility/simulcast_rate_allocator.cc ${WEBRTC_ROOT}/modules/video_coding/utility/simulcast_utility.cc ${WEBRTC_ROOT}/modules/video_coding/utility/vp8_header_parser.cc ${WEBRTC_ROOT}/modules/video_coding/utility/vp9_uncompressed_header_parser.cc)
target_include_directories(webrtc_modules_video_coding_video_coding_utility PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_video_coding_utility PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_video_coding_utility PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_video_coding_utility PUBLIC absl::strings absl::optional webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_video_encoded_frame webrtc_api_video_encoded_image webrtc_api_video_video_adaptation webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_video_coding_video_codec_interface webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_weak_ptr webrtc_rtc_base_experiments_quality_scaler_settings webrtc_rtc_base_experiments_quality_scaling_experiment webrtc_rtc_base_experiments_rate_control_settings webrtc_rtc_base_experiments_stable_target_rate_experiment webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_arch webrtc_rtc_base_system_file_wrapper webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_task_utils_repeating_task webrtc_rtc_base_task_utils_to_queued_task webrtc_system_wrappers_field_trial )

# modules/video_coding:webrtc_h264
add_library(webrtc_modules_video_coding_webrtc_h264 ${WEBRTC_ROOT}/modules/video_coding/codecs/h264/h264.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/h264/h264_color_space.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/h264/h264_decoder_impl.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/h264/h264_encoder_impl.cc)
target_include_directories(webrtc_modules_video_coding_webrtc_h264 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_webrtc_h264 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_webrtc_h264 PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_webrtc_h264 PUBLIC absl::strings absl::optional webrtc-yuv webrtc_api_video_video_frame webrtc_api_video_video_frame_i010 webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_media_rtc_h264_profile_id webrtc_media_rtc_media_base webrtc_modules_video_coding_conditional_dependency_on_ffmpeg_and_openh264 webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_system_rtc_export webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/video_coding:webrtc_libvpx_interface
add_library(webrtc_modules_video_coding_webrtc_libvpx_interface ${WEBRTC_ROOT}/modules/video_coding/codecs/interface/libvpx_interface.cc)
target_include_directories(webrtc_modules_video_coding_webrtc_libvpx_interface PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_webrtc_libvpx_interface PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_webrtc_libvpx_interface PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_webrtc_libvpx_interface PUBLIC libvpx webrtc_rtc_base_checks )

# modules/video_coding:webrtc_multiplex
add_library(webrtc_modules_video_coding_webrtc_multiplex ${WEBRTC_ROOT}/modules/video_coding/codecs/multiplex/augmented_video_frame_buffer.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/multiplex/multiplex_decoder_adapter.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/multiplex/multiplex_encoded_image_packer.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/multiplex/multiplex_encoder_adapter.cc)
target_include_directories(webrtc_modules_video_coding_webrtc_multiplex PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_webrtc_multiplex PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_webrtc_multiplex PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_webrtc_multiplex PUBLIC webrtc_api_fec_controller_api webrtc_api_scoped_refptr webrtc_api_video_encoded_image webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_media_rtc_media_base webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_synchronization_mutex )

# modules/video_coding:webrtc_vp8
add_library(webrtc_modules_video_coding_webrtc_vp8 ${WEBRTC_ROOT}/modules/video_coding/codecs/vp8/libvpx_vp8_decoder.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/vp8/libvpx_vp8_encoder.cc)
target_include_directories(webrtc_modules_video_coding_webrtc_vp8 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_webrtc_vp8 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_webrtc_vp8 PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_webrtc_vp8 PUBLIC absl::algorithm_container absl::optional webrtc-yuv libvpx webrtc_api_fec_controller_api webrtc_api_scoped_refptr webrtc_api_video_encoded_image webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_api_video_codecs_vp8_temporal_layers_factory webrtc_common_video_common_video webrtc_modules_video_coding_codec_globals_headers webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_modules_video_coding_webrtc_libvpx_interface webrtc_modules_video_coding_webrtc_vp8_temporal_layers webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_rtc_base_experiments_cpu_speed_experiment webrtc_rtc_base_experiments_encoder_info_settings webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_experiments_rate_control_settings webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/video_coding:webrtc_vp8_temporal_layers
add_library(webrtc_modules_video_coding_webrtc_vp8_temporal_layers ${WEBRTC_ROOT}/modules/video_coding/codecs/vp8/default_temporal_layers.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/vp8/screenshare_layers.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/vp8/temporal_layers_checker.cc)
target_include_directories(webrtc_modules_video_coding_webrtc_vp8_temporal_layers PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_webrtc_vp8_temporal_layers PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_webrtc_vp8_temporal_layers PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_webrtc_vp8_temporal_layers PUBLIC absl::optional webrtc_api_fec_controller_api webrtc_api_video_codecs_video_codecs_api webrtc_modules_video_coding_codec_globals_headers webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# modules/video_coding:webrtc_vp9
add_library(webrtc_modules_video_coding_webrtc_vp9 ${WEBRTC_ROOT}/modules/video_coding/codecs/vp9/libvpx_vp9_decoder.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/vp9/libvpx_vp9_encoder.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/vp9/vp9.cc ${WEBRTC_ROOT}/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc)
target_include_directories(webrtc_modules_video_coding_webrtc_vp9 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_webrtc_vp9 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_webrtc_vp9 PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_webrtc_vp9 PUBLIC absl::algorithm_container absl::memory absl::strings webrtc-yuv libvpx webrtc_api_fec_controller_api webrtc_api_refcountedbase webrtc_api_scoped_refptr webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_api_video_video_frame webrtc_api_video_video_frame_i010 webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_media_rtc_media_base webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_modules_video_coding_webrtc_libvpx_interface webrtc_modules_video_coding_webrtc_vp9_helpers webrtc_modules_video_coding_svc_scalability_structures webrtc_modules_video_coding_svc_scalable_video_controller webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_experiments_encoder_info_settings webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_experiments_rate_control_settings webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_field_trial )

# modules/video_coding:webrtc_vp9_helpers
add_library(webrtc_modules_video_coding_webrtc_vp9_helpers ${WEBRTC_ROOT}/modules/video_coding/codecs/vp9/svc_config.cc)
target_include_directories(webrtc_modules_video_coding_webrtc_vp9_helpers PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_coding_webrtc_vp9_helpers PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_coding_webrtc_vp9_helpers PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_coding_webrtc_vp9_helpers PUBLIC absl::algorithm_container webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator webrtc_api_video_video_codec_constants webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_modules_video_coding_codec_globals_headers webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_svc_svc_rate_allocator webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_experiments_stable_target_rate_experiment )

# modules/video_processing:denoiser_filter
add_library(webrtc_modules_video_processing_denoiser_filter INTERFACE)
target_include_directories(webrtc_modules_video_processing_denoiser_filter INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# modules/video_processing
add_library(webrtc_modules_video_processing_video_processing ${WEBRTC_ROOT}/modules/video_processing/util/denoiser_filter.cc ${WEBRTC_ROOT}/modules/video_processing/util/denoiser_filter_c.cc ${WEBRTC_ROOT}/modules/video_processing/util/noise_estimation.cc ${WEBRTC_ROOT}/modules/video_processing/util/skin_detection.cc ${WEBRTC_ROOT}/modules/video_processing/video_denoiser.cc)
target_include_directories(webrtc_modules_video_processing_video_processing PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_processing_video_processing PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_processing_video_processing PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_processing_video_processing PUBLIC webrtc_modules_video_processing_video_processing_sse2 webrtc-yuv webrtc_api_scoped_refptr webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_common_audio_common_audio webrtc_common_video_common_video webrtc_modules_utility_utility webrtc_modules_video_processing_denoiser_filter webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_arch webrtc_system_wrappers_system_wrappers )

# modules/video_processing:video_processing_sse2
add_library(webrtc_modules_video_processing_video_processing_sse2 ${WEBRTC_ROOT}/modules/video_processing/util/denoiser_filter_sse2.cc)
target_include_directories(webrtc_modules_video_processing_video_processing_sse2 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_modules_video_processing_video_processing_sse2 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_modules_video_processing_video_processing_sse2 PRIVATE -GR-)
target_link_libraries(webrtc_modules_video_processing_video_processing_sse2 PUBLIC webrtc_modules_video_processing_denoiser_filter webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_system_wrappers )

# net/dcsctp/common:internal_types
add_library(webrtc_net_dcsctp_common_internal_types INTERFACE)
target_link_libraries(webrtc_net_dcsctp_common_internal_types INTERFACE webrtc_net_dcsctp_public_strong_alias webrtc_net_dcsctp_public_types )
target_include_directories(webrtc_net_dcsctp_common_internal_types INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/common:math
add_library(webrtc_net_dcsctp_common_math INTERFACE)
target_include_directories(webrtc_net_dcsctp_common_math INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/common:pair_hash
add_library(webrtc_net_dcsctp_common_pair_hash INTERFACE)
target_include_directories(webrtc_net_dcsctp_common_pair_hash INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/common:sequence_numbers
add_library(webrtc_net_dcsctp_common_sequence_numbers INTERFACE)
target_link_libraries(webrtc_net_dcsctp_common_sequence_numbers INTERFACE webrtc_net_dcsctp_common_internal_types )
target_include_directories(webrtc_net_dcsctp_common_sequence_numbers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/common:str_join
add_library(webrtc_net_dcsctp_common_str_join INTERFACE)
target_link_libraries(webrtc_net_dcsctp_common_str_join INTERFACE absl::strings webrtc_rtc_base_stringutils )
target_include_directories(webrtc_net_dcsctp_common_str_join INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/packet:bounded_io
add_library(webrtc_net_dcsctp_packet_bounded_io INTERFACE)
target_link_libraries(webrtc_net_dcsctp_packet_bounded_io INTERFACE webrtc_api_array_view webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )
target_include_directories(webrtc_net_dcsctp_packet_bounded_io INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/packet:chunk
add_library(webrtc_net_dcsctp_packet_chunk ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/abort_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/cookie_ack_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/cookie_echo_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/data_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/error_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/forward_tsn_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/heartbeat_ack_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/heartbeat_request_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/idata_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/iforward_tsn_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/init_ack_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/init_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/reconfig_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/sack_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/shutdown_ack_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/shutdown_chunk.cc ${WEBRTC_ROOT}/net/dcsctp/packet/chunk/shutdown_complete_chunk.cc)
target_include_directories(webrtc_net_dcsctp_packet_chunk PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_packet_chunk PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_packet_chunk PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_packet_chunk PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_math webrtc_net_dcsctp_common_str_join webrtc_net_dcsctp_packet_bounded_io webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_packet_error_cause webrtc_net_dcsctp_packet_parameter webrtc_net_dcsctp_packet_tlv_trait webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/packet:chunk_validators
add_library(webrtc_net_dcsctp_packet_chunk_validators ${WEBRTC_ROOT}/net/dcsctp/packet/chunk_validators.cc)
target_include_directories(webrtc_net_dcsctp_packet_chunk_validators PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_packet_chunk_validators PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_packet_chunk_validators PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_packet_chunk_validators PUBLIC webrtc_net_dcsctp_packet_chunk webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/packet:crc32c
add_library(webrtc_net_dcsctp_packet_crc32c ${WEBRTC_ROOT}/net/dcsctp/packet/crc32c.cc)
target_include_directories(webrtc_net_dcsctp_packet_crc32c PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_packet_crc32c PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_packet_crc32c PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_packet_crc32c PUBLIC crc32c webrtc_api_array_view webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/packet:data
add_library(webrtc_net_dcsctp_packet_data INTERFACE)
target_link_libraries(webrtc_net_dcsctp_packet_data INTERFACE webrtc_net_dcsctp_common_internal_types webrtc_net_dcsctp_public_types webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )
target_include_directories(webrtc_net_dcsctp_packet_data INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/packet:error_cause
add_library(webrtc_net_dcsctp_packet_error_cause ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/cookie_received_while_shutting_down_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/error_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/invalid_mandatory_parameter_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/invalid_stream_identifier_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/missing_mandatory_parameter_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/no_user_data_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/out_of_resource_error_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/protocol_violation_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/restart_of_an_association_with_new_address_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/stale_cookie_error_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/unrecognized_chunk_type_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/unrecognized_parameter_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/unresolvable_address_cause.cc ${WEBRTC_ROOT}/net/dcsctp/packet/error_cause/user_initiated_abort_cause.cc)
target_include_directories(webrtc_net_dcsctp_packet_error_cause PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_packet_error_cause PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_packet_error_cause PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_packet_error_cause PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_internal_types webrtc_net_dcsctp_common_math webrtc_net_dcsctp_common_str_join webrtc_net_dcsctp_packet_bounded_io webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_packet_parameter webrtc_net_dcsctp_packet_tlv_trait webrtc_net_dcsctp_public_types webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/packet:parameter
add_library(webrtc_net_dcsctp_packet_parameter ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/add_incoming_streams_request_parameter.cc ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/add_outgoing_streams_request_parameter.cc ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/forward_tsn_supported_parameter.cc ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/heartbeat_info_parameter.cc ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/incoming_ssn_reset_request_parameter.cc ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/outgoing_ssn_reset_request_parameter.cc ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/parameter.cc ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/reconfiguration_response_parameter.cc ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/ssn_tsn_reset_request_parameter.cc ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/state_cookie_parameter.cc ${WEBRTC_ROOT}/net/dcsctp/packet/parameter/supported_extensions_parameter.cc)
target_include_directories(webrtc_net_dcsctp_packet_parameter PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_packet_parameter PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_packet_parameter PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_packet_parameter PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_internal_types webrtc_net_dcsctp_common_math webrtc_net_dcsctp_common_str_join webrtc_net_dcsctp_packet_bounded_io webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_packet_tlv_trait webrtc_net_dcsctp_public_types webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/packet:sctp_packet
add_library(webrtc_net_dcsctp_packet_sctp_packet ${WEBRTC_ROOT}/net/dcsctp/packet/sctp_packet.cc)
target_include_directories(webrtc_net_dcsctp_packet_sctp_packet PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_packet_sctp_packet PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_packet_sctp_packet PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_packet_sctp_packet PUBLIC absl::memory absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_internal_types webrtc_net_dcsctp_common_math webrtc_net_dcsctp_packet_bounded_io webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_crc32c webrtc_net_dcsctp_public_types webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/packet:tlv_trait
add_library(webrtc_net_dcsctp_packet_tlv_trait ${WEBRTC_ROOT}/net/dcsctp/packet/tlv_trait.cc)
target_include_directories(webrtc_net_dcsctp_packet_tlv_trait PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_packet_tlv_trait PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_packet_tlv_trait PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_packet_tlv_trait PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_packet_bounded_io webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/public:factory
add_library(webrtc_net_dcsctp_public_factory ${WEBRTC_ROOT}/net/dcsctp/public/dcsctp_socket_factory.cc)
target_include_directories(webrtc_net_dcsctp_public_factory PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_public_factory PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_public_factory PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_public_factory PUBLIC absl::strings webrtc_net_dcsctp_public_socket webrtc_net_dcsctp_public_types webrtc_net_dcsctp_socket_dcsctp_socket )

# net/dcsctp/public:socket
add_library(webrtc_net_dcsctp_public_socket INTERFACE)
target_link_libraries(webrtc_net_dcsctp_public_socket INTERFACE absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_public_types webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )
target_include_directories(webrtc_net_dcsctp_public_socket INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/public:strong_alias
add_library(webrtc_net_dcsctp_public_strong_alias INTERFACE)
target_include_directories(webrtc_net_dcsctp_public_strong_alias INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/public:types
add_library(webrtc_net_dcsctp_public_types INTERFACE)
target_link_libraries(webrtc_net_dcsctp_public_types INTERFACE webrtc_api_array_view webrtc_net_dcsctp_public_strong_alias )
target_include_directories(webrtc_net_dcsctp_public_types INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/rx:data_tracker
add_library(webrtc_net_dcsctp_rx_data_tracker ${WEBRTC_ROOT}/net/dcsctp/rx/data_tracker.cc)
target_include_directories(webrtc_net_dcsctp_rx_data_tracker PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_rx_data_tracker PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_rx_data_tracker PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_rx_data_tracker PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_sequence_numbers webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_timer_timer webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/rx:reassembly_queue
add_library(webrtc_net_dcsctp_rx_reassembly_queue ${WEBRTC_ROOT}/net/dcsctp/rx/reassembly_queue.cc)
target_include_directories(webrtc_net_dcsctp_rx_reassembly_queue PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_rx_reassembly_queue PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_rx_reassembly_queue PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_rx_reassembly_queue PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_internal_types webrtc_net_dcsctp_common_sequence_numbers webrtc_net_dcsctp_common_str_join webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_packet_parameter webrtc_net_dcsctp_public_types webrtc_net_dcsctp_rx_reassembly_streams webrtc_net_dcsctp_rx_traditional_reassembly_streams webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/rx:reassembly_streams
add_library(webrtc_net_dcsctp_rx_reassembly_streams INTERFACE)
target_link_libraries(webrtc_net_dcsctp_rx_reassembly_streams INTERFACE absl::strings webrtc_api_array_view webrtc_net_dcsctp_common_sequence_numbers webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_public_types )
target_include_directories(webrtc_net_dcsctp_rx_reassembly_streams INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/rx:traditional_reassembly_streams
add_library(webrtc_net_dcsctp_rx_traditional_reassembly_streams ${WEBRTC_ROOT}/net/dcsctp/rx/traditional_reassembly_streams.cc)
target_include_directories(webrtc_net_dcsctp_rx_traditional_reassembly_streams PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_rx_traditional_reassembly_streams PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_rx_traditional_reassembly_streams PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_rx_traditional_reassembly_streams PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_sequence_numbers webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_public_types webrtc_net_dcsctp_rx_reassembly_streams webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/socket:context
add_library(webrtc_net_dcsctp_socket_context INTERFACE)
target_link_libraries(webrtc_net_dcsctp_socket_context INTERFACE absl::strings webrtc_net_dcsctp_common_internal_types webrtc_net_dcsctp_packet_sctp_packet webrtc_net_dcsctp_public_socket webrtc_net_dcsctp_public_types )
target_include_directories(webrtc_net_dcsctp_socket_context INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# net/dcsctp/socket:dcsctp_socket
add_library(webrtc_net_dcsctp_socket_dcsctp_socket ${WEBRTC_ROOT}/net/dcsctp/socket/dcsctp_socket.cc ${WEBRTC_ROOT}/net/dcsctp/socket/state_cookie.cc)
target_include_directories(webrtc_net_dcsctp_socket_dcsctp_socket PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_socket_dcsctp_socket PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_socket_dcsctp_socket PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_socket_dcsctp_socket PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_api_refcountedbase webrtc_api_scoped_refptr webrtc_net_dcsctp_common_internal_types webrtc_net_dcsctp_packet_bounded_io webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_chunk_validators webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_packet_error_cause webrtc_net_dcsctp_packet_parameter webrtc_net_dcsctp_packet_sctp_packet webrtc_net_dcsctp_packet_tlv_trait webrtc_net_dcsctp_public_socket webrtc_net_dcsctp_public_types webrtc_net_dcsctp_rx_data_tracker webrtc_net_dcsctp_rx_reassembly_queue webrtc_net_dcsctp_socket_context webrtc_net_dcsctp_socket_heartbeat_handler webrtc_net_dcsctp_socket_stream_reset_handler webrtc_net_dcsctp_socket_transmission_control_block webrtc_net_dcsctp_timer_timer webrtc_net_dcsctp_tx_retransmission_error_counter webrtc_net_dcsctp_tx_retransmission_queue webrtc_net_dcsctp_tx_retransmission_timeout webrtc_net_dcsctp_tx_rr_send_queue webrtc_net_dcsctp_tx_send_queue webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/socket:heartbeat_handler
add_library(webrtc_net_dcsctp_socket_heartbeat_handler ${WEBRTC_ROOT}/net/dcsctp/socket/heartbeat_handler.cc)
target_include_directories(webrtc_net_dcsctp_socket_heartbeat_handler PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_socket_heartbeat_handler PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_socket_heartbeat_handler PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_socket_heartbeat_handler PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_packet_bounded_io webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_parameter webrtc_net_dcsctp_packet_sctp_packet webrtc_net_dcsctp_public_socket webrtc_net_dcsctp_public_types webrtc_net_dcsctp_socket_context webrtc_net_dcsctp_timer_timer webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/socket:stream_reset_handler
add_library(webrtc_net_dcsctp_socket_stream_reset_handler ${WEBRTC_ROOT}/net/dcsctp/socket/stream_reset_handler.cc)
target_include_directories(webrtc_net_dcsctp_socket_stream_reset_handler PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_socket_stream_reset_handler PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_socket_stream_reset_handler PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_socket_stream_reset_handler PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_internal_types webrtc_net_dcsctp_common_str_join webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_parameter webrtc_net_dcsctp_packet_sctp_packet webrtc_net_dcsctp_packet_tlv_trait webrtc_net_dcsctp_public_socket webrtc_net_dcsctp_public_types webrtc_net_dcsctp_rx_data_tracker webrtc_net_dcsctp_rx_reassembly_queue webrtc_net_dcsctp_socket_context webrtc_net_dcsctp_timer_timer webrtc_net_dcsctp_tx_retransmission_queue webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/socket:transmission_control_block
add_library(webrtc_net_dcsctp_socket_transmission_control_block ${WEBRTC_ROOT}/net/dcsctp/socket/transmission_control_block.cc)
target_include_directories(webrtc_net_dcsctp_socket_transmission_control_block PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_socket_transmission_control_block PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_socket_transmission_control_block PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_socket_transmission_control_block PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_sequence_numbers webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_sctp_packet webrtc_net_dcsctp_public_socket webrtc_net_dcsctp_public_types webrtc_net_dcsctp_rx_data_tracker webrtc_net_dcsctp_rx_reassembly_queue webrtc_net_dcsctp_socket_context webrtc_net_dcsctp_socket_heartbeat_handler webrtc_net_dcsctp_socket_stream_reset_handler webrtc_net_dcsctp_timer_timer webrtc_net_dcsctp_tx_retransmission_error_counter webrtc_net_dcsctp_tx_retransmission_queue webrtc_net_dcsctp_tx_retransmission_timeout webrtc_net_dcsctp_tx_send_queue webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/timer:task_queue_timeout
add_library(webrtc_net_dcsctp_timer_task_queue_timeout ${WEBRTC_ROOT}/net/dcsctp/timer/task_queue_timeout.cc)
target_include_directories(webrtc_net_dcsctp_timer_task_queue_timeout PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_timer_task_queue_timeout PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_timer_task_queue_timeout PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_timer_task_queue_timeout PUBLIC webrtc_api_array_view webrtc_api_task_queue_task_queue webrtc_net_dcsctp_public_socket webrtc_net_dcsctp_public_strong_alias webrtc_net_dcsctp_public_types webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task )

# net/dcsctp/timer
add_library(webrtc_net_dcsctp_timer_timer ${WEBRTC_ROOT}/net/dcsctp/timer/timer.cc)
target_include_directories(webrtc_net_dcsctp_timer_timer PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_timer_timer PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_timer_timer PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_timer_timer PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_public_socket webrtc_net_dcsctp_public_strong_alias webrtc_net_dcsctp_public_types webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/tx:retransmission_error_counter
add_library(webrtc_net_dcsctp_tx_retransmission_error_counter ${WEBRTC_ROOT}/net/dcsctp/tx/retransmission_error_counter.cc)
target_include_directories(webrtc_net_dcsctp_tx_retransmission_error_counter PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_tx_retransmission_error_counter PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_tx_retransmission_error_counter PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_tx_retransmission_error_counter PUBLIC absl::strings webrtc_net_dcsctp_public_types webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/tx:retransmission_queue
add_library(webrtc_net_dcsctp_tx_retransmission_queue ${WEBRTC_ROOT}/net/dcsctp/tx/retransmission_queue.cc)
target_include_directories(webrtc_net_dcsctp_tx_retransmission_queue PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_tx_retransmission_queue PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_tx_retransmission_queue PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_tx_retransmission_queue PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_math webrtc_net_dcsctp_common_pair_hash webrtc_net_dcsctp_common_sequence_numbers webrtc_net_dcsctp_common_str_join webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_public_types webrtc_net_dcsctp_timer_timer webrtc_net_dcsctp_tx_retransmission_timeout webrtc_net_dcsctp_tx_send_queue webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/tx:retransmission_timeout
add_library(webrtc_net_dcsctp_tx_retransmission_timeout ${WEBRTC_ROOT}/net/dcsctp/tx/retransmission_timeout.cc)
target_include_directories(webrtc_net_dcsctp_tx_retransmission_timeout PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_tx_retransmission_timeout PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_tx_retransmission_timeout PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_tx_retransmission_timeout PUBLIC webrtc_net_dcsctp_public_types webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/tx:rr_send_queue
add_library(webrtc_net_dcsctp_tx_rr_send_queue ${WEBRTC_ROOT}/net/dcsctp/tx/rr_send_queue.cc)
target_include_directories(webrtc_net_dcsctp_tx_rr_send_queue PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_net_dcsctp_tx_rr_send_queue PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN DLOG_ALWAYS_ON WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_net_dcsctp_tx_rr_send_queue PRIVATE -GR-)
target_link_libraries(webrtc_net_dcsctp_tx_rr_send_queue PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_pair_hash webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_public_socket webrtc_net_dcsctp_public_types webrtc_net_dcsctp_tx_send_queue webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# net/dcsctp/tx:send_queue
add_library(webrtc_net_dcsctp_tx_send_queue INTERFACE)
target_link_libraries(webrtc_net_dcsctp_tx_send_queue INTERFACE absl::optional webrtc_api_array_view webrtc_net_dcsctp_common_internal_types webrtc_net_dcsctp_packet_chunk webrtc_net_dcsctp_packet_data webrtc_net_dcsctp_public_types )
target_include_directories(webrtc_net_dcsctp_tx_send_queue INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# p2p:fake_ice_transport
add_library(webrtc_p2p_fake_ice_transport INTERFACE)
target_link_libraries(webrtc_p2p_fake_ice_transport INTERFACE absl::algorithm_container absl::optional webrtc_api_libjingle_peerconnection_api webrtc_p2p_rtc_p2p webrtc_rtc_base_rtc_base webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task )
target_include_directories(webrtc_p2p_fake_ice_transport INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# p2p:fake_port_allocator
add_library(webrtc_p2p_fake_port_allocator INTERFACE)
target_link_libraries(webrtc_p2p_fake_port_allocator INTERFACE webrtc_p2p_rtc_p2p webrtc_rtc_base_rtc_base webrtc_rtc_base_net_helpers webrtc_rtc_base_threading )
target_include_directories(webrtc_p2p_fake_port_allocator INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# p2p:p2p_server_utils
add_library(webrtc_p2p_p2p_server_utils ${WEBRTC_ROOT}/p2p/base/stun_server.cc ${WEBRTC_ROOT}/p2p/base/turn_server.cc)
target_include_directories(webrtc_p2p_p2p_server_utils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_p2p_p2p_server_utils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_p2p_p2p_server_utils PRIVATE -GR-)
target_link_libraries(webrtc_p2p_p2p_server_utils PUBLIC absl::algorithm_container absl::memory webrtc_api_packet_socket_factory webrtc_api_sequence_checker webrtc_api_transport_stun_types webrtc_p2p_rtc_p2p webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_socket_address webrtc_rtc_base_threading webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_sigslot_sigslot )

# p2p:p2p_test_utils
add_library(webrtc_p2p_p2p_test_utils ${WEBRTC_ROOT}/p2p/base/test_stun_server.cc)
target_include_directories(webrtc_p2p_p2p_test_utils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_p2p_p2p_test_utils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_p2p_p2p_test_utils PRIVATE -GR-)
target_link_libraries(webrtc_p2p_p2p_test_utils PUBLIC absl::algorithm_container absl::optional webrtc_api_libjingle_peerconnection_api webrtc_api_packet_socket_factory webrtc_api_sequence_checker webrtc_api_crypto_options webrtc_api_transport_stun_types webrtc_p2p_fake_ice_transport webrtc_p2p_fake_port_allocator webrtc_p2p_p2p_server_utils webrtc_p2p_rtc_p2p webrtc_rtc_base_rtc_base webrtc_rtc_base_async_resolver_interface webrtc_rtc_base_async_socket webrtc_rtc_base_gunit_helpers webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_socket_address webrtc_rtc_base_socket_server webrtc_rtc_base_threading webrtc_rtc_base_third_party_sigslot_sigslot webrtc_test_test_support )

# p2p:rtc_p2p
add_library(webrtc_p2p_rtc_p2p ${WEBRTC_ROOT}/p2p/base/async_stun_tcp_socket.cc ${WEBRTC_ROOT}/p2p/base/basic_async_resolver_factory.cc ${WEBRTC_ROOT}/p2p/base/basic_ice_controller.cc ${WEBRTC_ROOT}/p2p/base/basic_packet_socket_factory.cc ${WEBRTC_ROOT}/p2p/base/connection.cc ${WEBRTC_ROOT}/p2p/base/connection_info.cc ${WEBRTC_ROOT}/p2p/base/default_ice_transport_factory.cc ${WEBRTC_ROOT}/p2p/base/dtls_transport.cc ${WEBRTC_ROOT}/p2p/base/dtls_transport_internal.cc ${WEBRTC_ROOT}/p2p/base/ice_controller_interface.cc ${WEBRTC_ROOT}/p2p/base/ice_credentials_iterator.cc ${WEBRTC_ROOT}/p2p/base/ice_transport_internal.cc ${WEBRTC_ROOT}/p2p/base/p2p_constants.cc ${WEBRTC_ROOT}/p2p/base/p2p_transport_channel.cc ${WEBRTC_ROOT}/p2p/base/packet_transport_internal.cc ${WEBRTC_ROOT}/p2p/base/port.cc ${WEBRTC_ROOT}/p2p/base/port_allocator.cc ${WEBRTC_ROOT}/p2p/base/port_interface.cc ${WEBRTC_ROOT}/p2p/base/pseudo_tcp.cc ${WEBRTC_ROOT}/p2p/base/regathering_controller.cc ${WEBRTC_ROOT}/p2p/base/stun_port.cc ${WEBRTC_ROOT}/p2p/base/stun_request.cc ${WEBRTC_ROOT}/p2p/base/tcp_port.cc ${WEBRTC_ROOT}/p2p/base/transport_description.cc ${WEBRTC_ROOT}/p2p/base/transport_description_factory.cc ${WEBRTC_ROOT}/p2p/base/turn_port.cc ${WEBRTC_ROOT}/p2p/client/basic_port_allocator.cc ${WEBRTC_ROOT}/p2p/client/turn_port_factory.cc)
target_include_directories(webrtc_p2p_rtc_p2p PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_p2p_rtc_p2p PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_p2p_rtc_p2p PRIVATE -GR-)
target_link_libraries(webrtc_p2p_rtc_p2p PUBLIC absl::algorithm_container absl::memory absl::strings absl::optional webrtc_api_array_view webrtc_api_async_dns_resolver webrtc_api_libjingle_peerconnection_api webrtc_api_packet_socket_factory webrtc_api_rtc_error webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_crypto_options webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_api_transport_enums webrtc_api_transport_stun_types webrtc_logging_ice_log webrtc_rtc_base_rtc_base webrtc_rtc_base_async_resolver_interface webrtc_rtc_base_async_socket webrtc_rtc_base_callback_list webrtc_rtc_base_checks webrtc_rtc_base_ip_address webrtc_rtc_base_net_helpers webrtc_rtc_base_network_constants webrtc_rtc_base_rtc_numerics webrtc_rtc_base_safe_minmax webrtc_rtc_base_socket webrtc_rtc_base_socket_address webrtc_rtc_base_socket_server webrtc_rtc_base_threading webrtc_rtc_base_weak_ptr webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_network_sent_packet webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_system_rtc_export webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_base64_base64 webrtc_rtc_base_third_party_sigslot_sigslot webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# p2p:rtc_p2p.headers
add_library(webrtc_p2p_rtc_p2p.headers INTERFACE)
target_link_libraries(webrtc_p2p_rtc_p2p.headers INTERFACE webrtc_api_array_view.headers webrtc_api_async_dns_resolver.headers webrtc_api_libjingle_peerconnection_api.headers webrtc_api_packet_socket_factory.headers webrtc_api_rtc_error.headers webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_api_crypto_options.headers webrtc_api_rtc_event_log_rtc_event_log.headers webrtc_api_task_queue_task_queue.headers webrtc_api_transport_enums.headers webrtc_api_transport_stun_types.headers webrtc_logging_ice_log.headers webrtc_rtc_base_async_resolver_interface.headers webrtc_rtc_base_async_socket.headers webrtc_rtc_base_callback_list.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_ip_address.headers webrtc_rtc_base_net_helpers.headers webrtc_rtc_base_network_constants.headers webrtc_rtc_base_rtc_base.headers webrtc_rtc_base_rtc_numerics.headers webrtc_rtc_base_safe_minmax.headers webrtc_rtc_base_socket.headers webrtc_rtc_base_socket_address.headers webrtc_rtc_base_socket_server.headers webrtc_rtc_base_threading.headers webrtc_rtc_base_weak_ptr.headers webrtc_rtc_base_experiments_field_trial_parser.headers webrtc_rtc_base_network_sent_packet.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_no_unique_address.headers webrtc_rtc_base_system_rtc_export.headers webrtc_rtc_base_task_utils_pending_task_safety_flag.headers webrtc_rtc_base_task_utils_to_queued_task.headers webrtc_rtc_base_third_party_base64_base64.headers webrtc_rtc_base_third_party_sigslot_sigslot.headers webrtc_system_wrappers_field_trial.headers webrtc_system_wrappers_metrics.headers )
target_include_directories(webrtc_p2p_rtc_p2p.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# pc:audio_rtp_receiver
add_library(webrtc_pc_audio_rtp_receiver ${WEBRTC_ROOT}/pc/audio_rtp_receiver.cc)
target_include_directories(webrtc_pc_audio_rtp_receiver PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_audio_rtp_receiver PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_audio_rtp_receiver PRIVATE -GR-)
target_link_libraries(webrtc_pc_audio_rtp_receiver PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_frame_transformer_interface webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_crypto_frame_decryptor_interface webrtc_api_transport_rtp_rtp_source webrtc_media_rtc_media_base webrtc_pc_audio_track webrtc_pc_jitter_buffer_delay webrtc_pc_media_stream webrtc_pc_remote_audio_source webrtc_pc_rtc_pc_base webrtc_pc_rtp_receiver webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_refcount webrtc_rtc_base_threading webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task )

# pc:audio_track
add_library(webrtc_pc_audio_track ${WEBRTC_ROOT}/pc/audio_track.cc)
target_include_directories(webrtc_pc_audio_track PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_audio_track PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_audio_track PRIVATE -GR-)
target_link_libraries(webrtc_pc_audio_track PUBLIC webrtc_api_media_stream_interface webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_rtc_base_checks webrtc_rtc_base_refcount )

# pc:connection_context
add_library(webrtc_pc_connection_context ${WEBRTC_ROOT}/pc/connection_context.cc)
target_include_directories(webrtc_pc_connection_context PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_connection_context PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_connection_context PRIVATE -GR-)
target_link_libraries(webrtc_pc_connection_context PUBLIC webrtc_api_callfactory_api webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_refcountedbase webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_neteq_neteq_api webrtc_api_transport_field_trial_based_config webrtc_api_transport_sctp_transport_factory_interface webrtc_api_transport_webrtc_key_value_config webrtc_media_rtc_data_sctp_transport_factory webrtc_media_rtc_media_base webrtc_p2p_rtc_p2p webrtc_pc_rtc_pc_base webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_threading webrtc_rtc_base_task_utils_to_queued_task )

# pc:dtmf_sender
add_library(webrtc_pc_dtmf_sender ${WEBRTC_ROOT}/pc/dtmf_sender.cc)
target_include_directories(webrtc_pc_dtmf_sender PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_dtmf_sender PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_dtmf_sender PRIVATE -GR-)
target_link_libraries(webrtc_pc_dtmf_sender PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_libjingle_peerconnection_api webrtc_api_scoped_refptr webrtc_pc_proxy webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_threading webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_sigslot_sigslot )

# pc:integration_test_helpers
add_library(webrtc_pc_integration_test_helpers ${WEBRTC_ROOT}/pc/test/integration_test_helpers.cc)
target_include_directories(webrtc_pc_integration_test_helpers PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_integration_test_helpers PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN HAVE_WEBRTC_VIDEO WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_pc_integration_test_helpers PRIVATE -GR-)
target_link_libraries(webrtc_pc_integration_test_helpers PUBLIC absl::algorithm_container absl::memory absl::strings absl::optional webrtc_api_array_view webrtc_api_audio_options_api webrtc_api_callfactory_api webrtc_api_create_peerconnection_factory webrtc_api_fake_frame_decryptor webrtc_api_fake_frame_encryptor webrtc_api_function_view webrtc_api_libjingle_logging_api webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_mock_rtp webrtc_api_packet_socket_factory webrtc_api_rtc_error webrtc_api_rtc_stats_api webrtc_api_rtp_parameters webrtc_api_rtp_transceiver_direction webrtc_api_scoped_refptr webrtc_api_audio_audio_mixer_api webrtc_api_crypto_frame_decryptor_interface webrtc_api_crypto_frame_encryptor_interface webrtc_api_crypto_options webrtc_api_rtc_event_log_rtc_event_log webrtc_api_rtc_event_log_rtc_event_log_factory webrtc_api_task_queue_task_queue webrtc_api_task_queue_default_task_queue_factory webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_api_transport_rtp_rtp_source webrtc_api_units_time_delta webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_call_call_interfaces webrtc_call_adaptation_resource_adaptation_test_utilities webrtc_logging_fake_rtc_event_log webrtc_media_rtc_audio_video webrtc_media_rtc_media_base webrtc_media_rtc_media_config webrtc_media_rtc_media_engine_defaults webrtc_media_rtc_media_tests_utils webrtc_modules_audio_device_audio_device_api webrtc_modules_audio_processing_api webrtc_modules_audio_processing_audio_processing_statistics webrtc_modules_audio_processing_audioproc_test_utils webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_p2p_fake_ice_transport webrtc_p2p_fake_port_allocator webrtc_p2p_p2p_server_utils webrtc_p2p_p2p_test_utils webrtc_p2p_rtc_p2p webrtc_pc_audio_rtp_receiver webrtc_pc_audio_track webrtc_pc_dtmf_sender webrtc_pc_jitter_buffer_delay webrtc_pc_media_stream webrtc_pc_pc_test_utils webrtc_pc_peerconnection webrtc_pc_remote_audio_source webrtc_pc_rtc_pc_base webrtc_pc_rtp_parameters_conversion webrtc_pc_rtp_receiver webrtc_pc_rtp_sender webrtc_pc_rtp_transceiver webrtc_pc_session_description webrtc_pc_usage_pattern webrtc_pc_video_rtp_receiver webrtc_pc_video_rtp_track_source webrtc_pc_video_track webrtc_pc_video_track_source webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_gunit_helpers webrtc_rtc_base_ip_address webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_rtc_json webrtc_rtc_base_socket_address webrtc_rtc_base_threading webrtc_rtc_base_timeutils webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_base64_base64 webrtc_rtc_base_third_party_sigslot_sigslot webrtc_system_wrappers_metrics webrtc_test_field_trial webrtc_test_fileutils webrtc_test_rtp_test_utils webrtc_test_test_support webrtc_test_pc_sctp_fake_sctp_transport )

# pc:jitter_buffer_delay
add_library(webrtc_pc_jitter_buffer_delay ${WEBRTC_ROOT}/pc/jitter_buffer_delay.cc)
target_include_directories(webrtc_pc_jitter_buffer_delay PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_jitter_buffer_delay PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_jitter_buffer_delay PRIVATE -GR-)
target_link_libraries(webrtc_pc_jitter_buffer_delay PUBLIC absl::optional webrtc_api_sequence_checker webrtc_rtc_base_checks webrtc_rtc_base_safe_conversions webrtc_rtc_base_safe_minmax webrtc_rtc_base_system_no_unique_address )

# pc:libjingle_peerconnection
add_library(webrtc_pc_libjingle_peerconnection INTERFACE)
target_link_libraries(webrtc_pc_libjingle_peerconnection INTERFACE webrtc_api_libjingle_peerconnection_api webrtc_pc_peerconnection )
target_include_directories(webrtc_pc_libjingle_peerconnection INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# pc:media_protocol_names
add_library(webrtc_pc_media_protocol_names ${WEBRTC_ROOT}/pc/media_protocol_names.cc)
target_include_directories(webrtc_pc_media_protocol_names PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_media_protocol_names PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_media_protocol_names PRIVATE -GR-)

# pc:media_stream
add_library(webrtc_pc_media_stream ${WEBRTC_ROOT}/pc/media_stream.cc)
target_include_directories(webrtc_pc_media_stream PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_media_stream PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_media_stream PRIVATE -GR-)
target_link_libraries(webrtc_pc_media_stream PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_scoped_refptr webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_refcount )

# pc:pc_test_utils
add_library(webrtc_pc_pc_test_utils ${WEBRTC_ROOT}/pc/test/fake_audio_capture_module.cc ${WEBRTC_ROOT}/pc/test/peer_connection_test_wrapper.cc)
target_include_directories(webrtc_pc_pc_test_utils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_pc_test_utils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_pc_pc_test_utils PRIVATE -GR-)
target_link_libraries(webrtc_pc_pc_test_utils PUBLIC absl::optional webrtc_api_audio_options_api webrtc_api_create_frame_generator webrtc_api_create_peerconnection_factory webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_rtc_error webrtc_api_rtc_stats_api webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_audio_audio_mixer_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_task_queue_task_queue webrtc_api_task_queue_default_task_queue_factory webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_builtin_video_decoder_factory webrtc_api_video_codecs_builtin_video_encoder_factory webrtc_api_video_codecs_video_codecs_api webrtc_call_call_interfaces webrtc_media_rtc_media webrtc_media_rtc_media_base webrtc_media_rtc_media_tests_utils webrtc_modules_audio_device_audio_device webrtc_modules_audio_processing_audio_processing webrtc_modules_audio_processing_api webrtc_p2p_fake_port_allocator webrtc_p2p_p2p_test_utils webrtc_p2p_rtc_p2p webrtc_pc_jitter_buffer_delay webrtc_pc_libjingle_peerconnection webrtc_pc_peerconnection webrtc_pc_rtc_pc_base webrtc_pc_rtp_receiver webrtc_pc_rtp_sender webrtc_pc_video_track_source webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_gunit_helpers webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_task_queue_for_test webrtc_rtc_base_threading webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_repeating_task webrtc_rtc_base_third_party_sigslot_sigslot webrtc_test_test_support webrtc_test_video_test_common )

# pc:peer_connection_message_handler
add_library(webrtc_pc_peer_connection_message_handler ${WEBRTC_ROOT}/pc/peer_connection_message_handler.cc)
target_include_directories(webrtc_pc_peer_connection_message_handler PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_peer_connection_message_handler PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_peer_connection_message_handler PRIVATE -GR-)
target_link_libraries(webrtc_pc_peer_connection_message_handler PUBLIC webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_rtc_error webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_pc_stats_collector_interface webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_threading )

# pc:peerconnection
add_library(webrtc_pc_peerconnection ${WEBRTC_ROOT}/pc/data_channel_controller.cc ${WEBRTC_ROOT}/pc/data_channel_utils.cc ${WEBRTC_ROOT}/pc/ice_server_parsing.cc ${WEBRTC_ROOT}/pc/jsep_ice_candidate.cc ${WEBRTC_ROOT}/pc/jsep_session_description.cc ${WEBRTC_ROOT}/pc/local_audio_source.cc ${WEBRTC_ROOT}/pc/media_stream_observer.cc ${WEBRTC_ROOT}/pc/peer_connection.cc ${WEBRTC_ROOT}/pc/peer_connection_factory.cc ${WEBRTC_ROOT}/pc/rtc_stats_collector.cc ${WEBRTC_ROOT}/pc/rtc_stats_traversal.cc ${WEBRTC_ROOT}/pc/sctp_data_channel.cc ${WEBRTC_ROOT}/pc/sdp_offer_answer.cc ${WEBRTC_ROOT}/pc/sdp_serializer.cc ${WEBRTC_ROOT}/pc/sdp_utils.cc ${WEBRTC_ROOT}/pc/stats_collector.cc ${WEBRTC_ROOT}/pc/track_media_info_map.cc ${WEBRTC_ROOT}/pc/webrtc_sdp.cc ${WEBRTC_ROOT}/pc/webrtc_session_description_factory.cc)
target_include_directories(webrtc_pc_peerconnection PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_peerconnection PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_peerconnection PRIVATE -GR-)
target_link_libraries(webrtc_pc_peerconnection PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_api_async_dns_resolver webrtc_api_audio_options_api webrtc_api_call_api webrtc_api_callfactory_api webrtc_api_fec_controller_api webrtc_api_frame_transformer_interface webrtc_api_ice_transport_factory webrtc_api_libjingle_logging_api webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_network_state_predictor_api webrtc_api_packet_socket_factory webrtc_api_priority webrtc_api_rtc_error webrtc_api_rtc_event_log_output_file webrtc_api_rtc_stats_api webrtc_api_rtp_parameters webrtc_api_rtp_transceiver_direction webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_adaptation_resource_adaptation_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_crypto_frame_decryptor_interface webrtc_api_crypto_options webrtc_api_neteq_neteq_api webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_api_transport_bitrate_settings webrtc_api_transport_datagram_transport_interface webrtc_api_transport_enums webrtc_api_transport_field_trial_based_config webrtc_api_transport_network_control webrtc_api_transport_sctp_transport_factory_interface webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_rate webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_video_bitrate_allocator_factory webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_call_call_interfaces webrtc_call_rtp_interfaces webrtc_call_rtp_sender webrtc_common_video_common_video webrtc_logging_ice_log webrtc_media_rtc_data_sctp_transport_internal webrtc_media_rtc_media_base webrtc_media_rtc_media_config webrtc_modules_audio_processing_audio_processing_statistics webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_p2p_rtc_p2p webrtc_pc_audio_rtp_receiver webrtc_pc_audio_track webrtc_pc_connection_context webrtc_pc_dtmf_sender webrtc_pc_jitter_buffer_delay webrtc_pc_media_protocol_names webrtc_pc_media_stream webrtc_pc_peer_connection_message_handler webrtc_pc_proxy webrtc_pc_remote_audio_source webrtc_pc_rtc_pc_base webrtc_pc_rtp_parameters_conversion webrtc_pc_rtp_receiver webrtc_pc_rtp_sender webrtc_pc_rtp_transceiver webrtc_pc_rtp_transmission_manager webrtc_pc_sdp_state_provider webrtc_pc_session_description webrtc_pc_simulcast_description webrtc_pc_stats_collector_interface webrtc_pc_transceiver_list webrtc_pc_usage_pattern webrtc_pc_video_rtp_receiver webrtc_pc_video_track webrtc_pc_video_track_source webrtc_rtc_base_rtc_base webrtc_rtc_base_callback_list webrtc_rtc_base_checks webrtc_rtc_base_ip_address webrtc_rtc_base_network_constants webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_operations_chain webrtc_rtc_base_safe_minmax webrtc_rtc_base_socket_address webrtc_rtc_base_threading webrtc_rtc_base_weak_ptr webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_network_sent_packet webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_file_wrapper webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_system_rtc_export webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_base64_base64 webrtc_rtc_base_third_party_sigslot_sigslot webrtc_stats_stats webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# pc:peerconnection_unittests
  android_add_executable(TARGET webrtc_pc_peerconnection_unittests NODISTRIBUTE SRC ${WEBRTC_ROOT}/pc/data_channel_integrationtest.cc ${WEBRTC_ROOT}/pc/data_channel_unittest.cc ${WEBRTC_ROOT}/pc/dtmf_sender_unittest.cc ${WEBRTC_ROOT}/pc/ice_server_parsing_unittest.cc ${WEBRTC_ROOT}/pc/jitter_buffer_delay_unittest.cc ${WEBRTC_ROOT}/pc/jsep_session_description_unittest.cc ${WEBRTC_ROOT}/pc/local_audio_source_unittest.cc ${WEBRTC_ROOT}/pc/media_stream_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_adaptation_integrationtest.cc ${WEBRTC_ROOT}/pc/peer_connection_bundle_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_crypto_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_data_channel_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_end_to_end_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_factory_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_header_extension_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_histogram_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_ice_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_integrationtest.cc ${WEBRTC_ROOT}/pc/peer_connection_interface_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_jsep_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_media_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_rtp_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_signaling_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_simulcast_unittest.cc ${WEBRTC_ROOT}/pc/peer_connection_wrapper.cc ${WEBRTC_ROOT}/pc/peer_connection_wrapper.h ${WEBRTC_ROOT}/pc/proxy_unittest.cc ${WEBRTC_ROOT}/pc/rtc_stats_collector_unittest.cc ${WEBRTC_ROOT}/pc/rtc_stats_integrationtest.cc ${WEBRTC_ROOT}/pc/rtc_stats_traversal_unittest.cc ${WEBRTC_ROOT}/pc/rtp_media_utils_unittest.cc ${WEBRTC_ROOT}/pc/rtp_parameters_conversion_unittest.cc ${WEBRTC_ROOT}/pc/rtp_sender_receiver_unittest.cc ${WEBRTC_ROOT}/pc/rtp_transceiver_unittest.cc ${WEBRTC_ROOT}/pc/sctp_utils_unittest.cc ${WEBRTC_ROOT}/pc/sdp_serializer_unittest.cc ${WEBRTC_ROOT}/pc/stats_collector_unittest.cc ${WEBRTC_ROOT}/pc/test/fake_audio_capture_module_unittest.cc ${WEBRTC_ROOT}/pc/test/test_sdp_strings.h ${WEBRTC_ROOT}/pc/track_media_info_map_unittest.cc ${WEBRTC_ROOT}/pc/video_rtp_track_source_unittest.cc ${WEBRTC_ROOT}/pc/video_track_unittest.cc ${WEBRTC_ROOT}/pc/webrtc_sdp_unittest.cc)
target_include_directories(webrtc_pc_peerconnection_unittests PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_peerconnection_unittests PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN HAVE_WEBRTC_VIDEO WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_pc_peerconnection_unittests PRIVATE -GR-)
target_link_libraries(webrtc_pc_peerconnection_unittests PUBLIC absl::algorithm_container absl::memory absl::strings absl::optional webrtc_api_array_view webrtc_api_audio_options_api webrtc_api_callfactory_api webrtc_api_create_peerconnection_factory webrtc_api_fake_frame_decryptor webrtc_api_fake_frame_encryptor webrtc_api_function_view webrtc_api_libjingle_logging_api webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_mock_rtp webrtc_api_packet_socket_factory webrtc_api_rtc_error webrtc_api_rtc_event_log_output_file webrtc_api_rtc_stats_api webrtc_api_rtp_parameters webrtc_api_rtp_transceiver_direction webrtc_api_scoped_refptr webrtc_api_audio_audio_mixer_api webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_builtin_audio_decoder_factory webrtc_api_audio_codecs_builtin_audio_encoder_factory webrtc_api_audio_codecs_opus_audio_decoder_factory webrtc_api_audio_codecs_opus_audio_encoder_factory webrtc_api_audio_codecs_L16_audio_decoder_L16 webrtc_api_audio_codecs_L16_audio_encoder_L16 webrtc_api_crypto_frame_decryptor_interface webrtc_api_crypto_frame_encryptor_interface webrtc_api_crypto_options webrtc_api_rtc_event_log_rtc_event_log webrtc_api_rtc_event_log_rtc_event_log_factory webrtc_api_task_queue_task_queue webrtc_api_task_queue_default_task_queue_factory webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_api_transport_rtp_rtp_source webrtc_api_units_time_delta webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_builtin_video_decoder_factory webrtc_api_video_codecs_builtin_video_encoder_factory webrtc_api_video_codecs_video_codecs_api webrtc_call_call_interfaces webrtc_call_adaptation_resource_adaptation_test_utilities webrtc_logging_fake_rtc_event_log webrtc_media_rtc_audio_video webrtc_media_rtc_data_sctp_transport_internal webrtc_media_rtc_media_base webrtc_media_rtc_media_config webrtc_media_rtc_media_engine_defaults webrtc_media_rtc_media_tests_utils webrtc_modules_audio_device_audio_device_api webrtc_modules_audio_processing_audio_processing webrtc_modules_audio_processing_api webrtc_modules_audio_processing_audio_processing_statistics webrtc_modules_audio_processing_audioproc_test_utils webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_utility_utility webrtc_p2p_fake_ice_transport webrtc_p2p_fake_port_allocator webrtc_p2p_p2p_server_utils webrtc_p2p_p2p_test_utils webrtc_p2p_rtc_p2p webrtc_pc_audio_rtp_receiver webrtc_pc_audio_track webrtc_pc_dtmf_sender webrtc_pc_integration_test_helpers webrtc_pc_jitter_buffer_delay webrtc_pc_libjingle_peerconnection webrtc_pc_media_stream webrtc_pc_pc_test_utils webrtc_pc_peerconnection webrtc_pc_proxy webrtc_pc_remote_audio_source webrtc_pc_rtc_pc webrtc_pc_rtc_pc_base webrtc_pc_rtp_parameters_conversion webrtc_pc_rtp_receiver webrtc_pc_rtp_sender webrtc_pc_rtp_transceiver webrtc_pc_session_description webrtc_pc_usage_pattern webrtc_pc_video_rtp_receiver webrtc_pc_video_rtp_track_source webrtc_pc_video_track webrtc_pc_video_track_source webrtc_pc_scenario_tests_pc_scenario_tests webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_gunit_helpers webrtc_rtc_base_ip_address webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_rtc_json webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_safe_conversions webrtc_rtc_base_socket_address webrtc_rtc_base_threading webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_third_party_base64_base64 webrtc_rtc_base_third_party_sigslot_sigslot webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics webrtc_test_audio_codec_mocks webrtc_test_field_trial webrtc_test_fileutils webrtc_test_rtp_test_utils webrtc_test_test_common webrtc_test_test_main webrtc_test_test_support webrtc_test_pc_sctp_fake_sctp_transport )

# pc:proxy
add_library(webrtc_pc_proxy ${WEBRTC_ROOT}/pc/proxy.cc)
target_include_directories(webrtc_pc_proxy PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_proxy PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_proxy PRIVATE -GR-)
target_link_libraries(webrtc_pc_proxy PUBLIC webrtc_api_scoped_refptr webrtc_api_task_queue_task_queue webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_threading webrtc_rtc_base_system_rtc_export )

# pc:remote_audio_source
add_library(webrtc_pc_remote_audio_source ${WEBRTC_ROOT}/pc/remote_audio_source.cc)
target_include_directories(webrtc_pc_remote_audio_source PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_remote_audio_source PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_remote_audio_source PRIVATE -GR-)
target_link_libraries(webrtc_pc_remote_audio_source PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_call_api webrtc_api_media_stream_interface webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_media_rtc_media_base webrtc_pc_rtc_pc_base webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_conversions webrtc_rtc_base_stringutils webrtc_rtc_base_threading webrtc_rtc_base_synchronization_mutex )

# pc:rtc_pc
add_library(webrtc_pc_rtc_pc INTERFACE)
target_link_libraries(webrtc_pc_rtc_pc INTERFACE libsrtp webrtc_media_rtc_audio_video webrtc_pc_rtc_pc_base )
target_include_directories(webrtc_pc_rtc_pc INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# pc:rtc_pc_base
add_library(webrtc_pc_rtc_pc_base ${WEBRTC_ROOT}/pc/channel.cc ${WEBRTC_ROOT}/pc/channel_manager.cc ${WEBRTC_ROOT}/pc/dtls_srtp_transport.cc ${WEBRTC_ROOT}/pc/dtls_transport.cc ${WEBRTC_ROOT}/pc/external_hmac.cc ${WEBRTC_ROOT}/pc/ice_transport.cc ${WEBRTC_ROOT}/pc/jsep_transport.cc ${WEBRTC_ROOT}/pc/jsep_transport_collection.cc ${WEBRTC_ROOT}/pc/jsep_transport_controller.cc ${WEBRTC_ROOT}/pc/media_session.cc ${WEBRTC_ROOT}/pc/rtcp_mux_filter.cc ${WEBRTC_ROOT}/pc/rtp_media_utils.cc ${WEBRTC_ROOT}/pc/rtp_transport.cc ${WEBRTC_ROOT}/pc/sctp_data_channel_transport.cc ${WEBRTC_ROOT}/pc/sctp_transport.cc ${WEBRTC_ROOT}/pc/sctp_utils.cc ${WEBRTC_ROOT}/pc/srtp_filter.cc ${WEBRTC_ROOT}/pc/srtp_session.cc ${WEBRTC_ROOT}/pc/srtp_transport.cc ${WEBRTC_ROOT}/pc/transport_stats.cc ${WEBRTC_ROOT}/pc/video_track_source_proxy.cc)
target_include_directories(webrtc_pc_rtc_pc_base PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_rtc_pc_base PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_rtc_pc_base PRIVATE -GR- -Ithird_party/libsrtp/include)
target_link_libraries(webrtc_pc_rtc_pc_base PUBLIC absl::algorithm_container absl::core_headers absl::memory absl::strings absl::optional libsrtp webrtc_api_array_view webrtc_api_async_dns_resolver webrtc_api_audio_options_api webrtc_api_call_api webrtc_api_function_view webrtc_api_ice_transport_factory webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_packet_socket_factory webrtc_api_priority webrtc_api_rtc_error webrtc_api_rtp_headers webrtc_api_rtp_parameters webrtc_api_rtp_transceiver_direction webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_crypto_options webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_api_transport_datagram_transport_interface webrtc_api_transport_enums webrtc_api_transport_sctp_transport_factory_interface webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_video_bitrate_allocator_factory webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_call_call_interfaces webrtc_call_rtp_interfaces webrtc_call_rtp_receiver webrtc_common_video_common_video webrtc_logging_ice_log webrtc_media_rtc_data_sctp_transport_internal webrtc_media_rtc_media_base webrtc_media_rtc_media_config webrtc_media_rtc_sdp_video_format_utils webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_p2p_rtc_p2p webrtc_pc_media_protocol_names webrtc_pc_proxy webrtc_pc_session_description webrtc_pc_simulcast_description webrtc_rtc_base_rtc_base webrtc_rtc_base_callback_list webrtc_rtc_base_checks webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_socket webrtc_rtc_base_socket_address webrtc_rtc_base_stringutils webrtc_rtc_base_threading webrtc_rtc_base_network_sent_packet webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_file_wrapper webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_system_rtc_export webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_base64_base64 webrtc_rtc_base_third_party_sigslot_sigslot webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics )

# pc:rtc_pc_unittests
  android_add_executable(TARGET webrtc_pc_rtc_pc_unittests NODISTRIBUTE SRC ${WEBRTC_ROOT}/pc/channel_manager_unittest.cc ${WEBRTC_ROOT}/pc/channel_unittest.cc ${WEBRTC_ROOT}/pc/dtls_srtp_transport_unittest.cc ${WEBRTC_ROOT}/pc/dtls_transport_unittest.cc ${WEBRTC_ROOT}/pc/ice_transport_unittest.cc ${WEBRTC_ROOT}/pc/jsep_transport_controller_unittest.cc ${WEBRTC_ROOT}/pc/jsep_transport_unittest.cc ${WEBRTC_ROOT}/pc/media_session_unittest.cc ${WEBRTC_ROOT}/pc/rtcp_mux_filter_unittest.cc ${WEBRTC_ROOT}/pc/rtp_transport_unittest.cc ${WEBRTC_ROOT}/pc/sctp_transport_unittest.cc ${WEBRTC_ROOT}/pc/session_description_unittest.cc ${WEBRTC_ROOT}/pc/srtp_filter_unittest.cc ${WEBRTC_ROOT}/pc/srtp_session_unittest.cc ${WEBRTC_ROOT}/pc/srtp_transport_unittest.cc ${WEBRTC_ROOT}/pc/test/rtp_transport_test_util.h ${WEBRTC_ROOT}/pc/test/srtp_test_util.h ${WEBRTC_ROOT}/pc/used_ids_unittest.cc ${WEBRTC_ROOT}/pc/video_rtp_receiver_unittest.cc)
target_include_directories(webrtc_pc_rtc_pc_unittests PRIVATE ${WEBRTC_ROOT}/pc/../third_party/libsrtp/srtp ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_rtc_pc_unittests PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_pc_rtc_pc_unittests PRIVATE -GR-)
target_link_libraries(webrtc_pc_rtc_pc_unittests PUBLIC absl::algorithm_container absl::memory absl::strings webrtc_api_array_view webrtc_api_audio_options_api webrtc_api_ice_transport_factory webrtc_api_libjingle_peerconnection_api webrtc_api_rtc_error webrtc_api_rtp_headers webrtc_api_rtp_parameters webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_test_mock_recordable_encoded_frame webrtc_call_rtp_interfaces webrtc_call_rtp_receiver webrtc_media_rtc_data_sctp_transport_internal webrtc_media_rtc_media_base webrtc_media_rtc_media_tests_utils webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_p2p_fake_ice_transport webrtc_p2p_fake_port_allocator webrtc_p2p_p2p_test_utils webrtc_p2p_rtc_p2p webrtc_pc_libjingle_peerconnection webrtc_pc_pc_test_utils webrtc_pc_peerconnection webrtc_pc_rtc_pc webrtc_pc_rtc_pc_base webrtc_pc_session_description webrtc_pc_video_rtp_receiver webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_gunit_helpers webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_threading webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_sigslot_sigslot webrtc_system_wrappers_metrics webrtc_test_field_trial webrtc_test_test_main webrtc_test_test_support strmiids::strmiids)

# pc:rtp_parameters_conversion
add_library(webrtc_pc_rtp_parameters_conversion ${WEBRTC_ROOT}/pc/rtp_parameters_conversion.cc)
target_include_directories(webrtc_pc_rtp_parameters_conversion PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_rtp_parameters_conversion PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_rtp_parameters_conversion PRIVATE -GR-)
target_link_libraries(webrtc_pc_rtp_parameters_conversion PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_api_libjingle_peerconnection_api webrtc_api_rtc_error webrtc_api_rtp_parameters webrtc_media_rtc_media_base webrtc_pc_rtc_pc_base webrtc_pc_session_description webrtc_rtc_base_rtc_base webrtc_rtc_base_checks )

# pc:rtp_receiver
add_library(webrtc_pc_rtp_receiver ${WEBRTC_ROOT}/pc/rtp_receiver.cc)
target_include_directories(webrtc_pc_rtp_receiver PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_rtp_receiver PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_rtp_receiver PRIVATE -GR-)
target_link_libraries(webrtc_pc_rtp_receiver PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_crypto_frame_decryptor_interface webrtc_api_video_video_frame webrtc_media_rtc_media_base webrtc_pc_media_stream webrtc_pc_rtc_pc_base webrtc_pc_video_track_source webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_threading )

# pc:rtp_sender
add_library(webrtc_pc_rtp_sender ${WEBRTC_ROOT}/pc/rtp_sender.cc)
target_include_directories(webrtc_pc_rtp_sender PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_rtp_sender PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_rtp_sender PRIVATE -GR-)
target_link_libraries(webrtc_pc_rtp_sender PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_audio_options_api webrtc_api_frame_transformer_interface webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_priority webrtc_api_rtc_error webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_crypto_frame_encryptor_interface webrtc_media_rtc_media_base webrtc_pc_dtmf_sender webrtc_pc_stats_collector_interface webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_threading webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_third_party_sigslot_sigslot )

# pc:rtp_transceiver
add_library(webrtc_pc_rtp_transceiver ${WEBRTC_ROOT}/pc/rtp_transceiver.cc)
target_include_directories(webrtc_pc_rtp_transceiver PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_rtp_transceiver PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_rtp_transceiver PRIVATE -GR-)
target_link_libraries(webrtc_pc_rtp_transceiver PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_array_view webrtc_api_libjingle_peerconnection_api webrtc_api_rtc_error webrtc_api_rtp_parameters webrtc_api_rtp_transceiver_direction webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_task_queue_task_queue webrtc_media_rtc_media_base webrtc_pc_proxy webrtc_pc_rtc_pc_base webrtc_pc_rtp_parameters_conversion webrtc_pc_rtp_receiver webrtc_pc_rtp_sender webrtc_pc_session_description webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_macromagic webrtc_rtc_base_refcount webrtc_rtc_base_threading webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_sigslot_sigslot )

# pc:rtp_transmission_manager
add_library(webrtc_pc_rtp_transmission_manager ${WEBRTC_ROOT}/pc/rtp_transmission_manager.cc)
target_include_directories(webrtc_pc_rtp_transmission_manager PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_rtp_transmission_manager PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_rtp_transmission_manager PRIVATE -GR-)
target_link_libraries(webrtc_pc_rtp_transmission_manager PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_rtc_error webrtc_api_rtp_parameters webrtc_api_rtp_transceiver_direction webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_media_rtc_media_base webrtc_pc_audio_rtp_receiver webrtc_pc_rtc_pc_base webrtc_pc_rtp_receiver webrtc_pc_rtp_sender webrtc_pc_rtp_transceiver webrtc_pc_stats_collector_interface webrtc_pc_transceiver_list webrtc_pc_usage_pattern webrtc_pc_video_rtp_receiver webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_threading webrtc_rtc_base_weak_ptr webrtc_rtc_base_third_party_sigslot_sigslot )

# pc/scenario_tests:pc_scenario_tests
add_library(webrtc_pc_scenario_tests_pc_scenario_tests ${WEBRTC_ROOT}/pc/scenario_tests/goog_cc_test.cc)
target_include_directories(webrtc_pc_scenario_tests_pc_scenario_tests PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_scenario_tests_pc_scenario_tests PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_pc_scenario_tests_pc_scenario_tests PRIVATE -GR-)
target_link_libraries(webrtc_pc_scenario_tests_pc_scenario_tests PUBLIC webrtc_api_rtc_stats_api webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_pc_pc_test_utils webrtc_pc_rtc_pc_base webrtc_test_field_trial webrtc_test_test_support webrtc_test_peer_scenario_peer_scenario )

# pc:sdp_state_provider
add_library(webrtc_pc_sdp_state_provider INTERFACE)
target_link_libraries(webrtc_pc_sdp_state_provider INTERFACE webrtc_api_libjingle_peerconnection_api webrtc_pc_rtc_pc_base )
target_include_directories(webrtc_pc_sdp_state_provider INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# pc:session_description
add_library(webrtc_pc_session_description ${WEBRTC_ROOT}/pc/session_description.cc)
target_include_directories(webrtc_pc_session_description PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_session_description PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_session_description PRIVATE -GR-)
target_link_libraries(webrtc_pc_session_description PUBLIC absl::algorithm_container absl::memory webrtc_api_libjingle_peerconnection_api webrtc_api_rtp_parameters webrtc_api_rtp_transceiver_direction webrtc_media_rtc_media_base webrtc_p2p_rtc_p2p webrtc_pc_media_protocol_names webrtc_pc_simulcast_description webrtc_rtc_base_checks webrtc_rtc_base_socket_address webrtc_rtc_base_system_rtc_export )

# pc:simulcast_description
add_library(webrtc_pc_simulcast_description ${WEBRTC_ROOT}/pc/simulcast_description.cc)
target_include_directories(webrtc_pc_simulcast_description PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_simulcast_description PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_simulcast_description PRIVATE -GR-)
target_link_libraries(webrtc_pc_simulcast_description PUBLIC webrtc_rtc_base_checks webrtc_rtc_base_socket_address webrtc_rtc_base_system_rtc_export )

# pc:stats_collector_interface
add_library(webrtc_pc_stats_collector_interface INTERFACE)
target_link_libraries(webrtc_pc_stats_collector_interface INTERFACE webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface )
target_include_directories(webrtc_pc_stats_collector_interface INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# pc:transceiver_list
add_library(webrtc_pc_transceiver_list ${WEBRTC_ROOT}/pc/transceiver_list.cc)
target_include_directories(webrtc_pc_transceiver_list PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_transceiver_list PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_transceiver_list PRIVATE -GR-)
target_link_libraries(webrtc_pc_transceiver_list PUBLIC absl::optional webrtc_api_libjingle_peerconnection_api webrtc_api_rtc_error webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_pc_rtp_transceiver webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_rtc_base_system_no_unique_address )

# pc:usage_pattern
add_library(webrtc_pc_usage_pattern ${WEBRTC_ROOT}/pc/usage_pattern.cc)
target_include_directories(webrtc_pc_usage_pattern PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_usage_pattern PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_usage_pattern PRIVATE -GR-)
target_link_libraries(webrtc_pc_usage_pattern PUBLIC webrtc_api_libjingle_peerconnection_api webrtc_rtc_base_logging webrtc_system_wrappers_metrics )

# pc:video_rtp_receiver
add_library(webrtc_pc_video_rtp_receiver ${WEBRTC_ROOT}/pc/video_rtp_receiver.cc)
target_include_directories(webrtc_pc_video_rtp_receiver PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_video_rtp_receiver PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_video_rtp_receiver PRIVATE -GR-)
target_link_libraries(webrtc_pc_video_rtp_receiver PUBLIC absl::algorithm_container absl::strings absl::optional webrtc_api_frame_transformer_interface webrtc_api_libjingle_peerconnection_api webrtc_api_media_stream_interface webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_crypto_frame_decryptor_interface webrtc_api_transport_rtp_rtp_source webrtc_api_video_recordable_encoded_frame webrtc_api_video_video_frame webrtc_media_rtc_media_base webrtc_pc_jitter_buffer_delay webrtc_pc_media_stream webrtc_pc_rtc_pc_base webrtc_pc_rtp_receiver webrtc_pc_video_rtp_track_source webrtc_pc_video_track webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_threading webrtc_rtc_base_system_no_unique_address )

# pc:video_rtp_track_source
add_library(webrtc_pc_video_rtp_track_source ${WEBRTC_ROOT}/pc/video_rtp_track_source.cc)
target_include_directories(webrtc_pc_video_rtp_track_source PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_video_rtp_track_source PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_video_rtp_track_source PRIVATE -GR-)
target_link_libraries(webrtc_pc_video_rtp_track_source PUBLIC webrtc_api_sequence_checker webrtc_api_video_recordable_encoded_frame webrtc_api_video_video_frame webrtc_media_rtc_media_base webrtc_pc_video_track_source webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_no_unique_address )

# pc:video_track
add_library(webrtc_pc_video_track ${WEBRTC_ROOT}/pc/video_track.cc)
target_include_directories(webrtc_pc_video_track PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_video_track PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_video_track PRIVATE -GR-)
target_link_libraries(webrtc_pc_video_track PUBLIC webrtc_api_media_stream_interface webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_video_video_frame webrtc_media_rtc_media_base webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_refcount webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_threading )

# pc:video_track_source
add_library(webrtc_pc_video_track_source ${WEBRTC_ROOT}/pc/video_track_source.cc)
target_include_directories(webrtc_pc_video_track_source PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_pc_video_track_source PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_pc_video_track_source PRIVATE -GR-)
target_link_libraries(webrtc_pc_video_track_source PUBLIC absl::optional webrtc_api_media_stream_interface webrtc_api_sequence_checker webrtc_api_video_recordable_encoded_frame webrtc_api_video_video_frame webrtc_media_rtc_media_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_rtc_export )

# rtc_base:async_resolver_interface
add_library(webrtc_rtc_base_async_resolver_interface ${WEBRTC_ROOT}/rtc_base/async_resolver_interface.cc)
target_include_directories(webrtc_rtc_base_async_resolver_interface PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_async_resolver_interface PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_async_resolver_interface PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_async_resolver_interface PUBLIC webrtc_rtc_base_socket_address webrtc_rtc_base_system_rtc_export webrtc_rtc_base_third_party_sigslot_sigslot )

# rtc_base:async_resolver_interface.headers
add_library(webrtc_rtc_base_async_resolver_interface.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_async_resolver_interface.headers INTERFACE webrtc_rtc_base_socket_address.headers webrtc_rtc_base_system_rtc_export.headers webrtc_rtc_base_third_party_sigslot_sigslot.headers )
target_include_directories(webrtc_rtc_base_async_resolver_interface.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:async_socket
add_library(webrtc_rtc_base_async_socket ${WEBRTC_ROOT}/rtc_base/async_socket.cc)
target_include_directories(webrtc_rtc_base_async_socket PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_async_socket PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_async_socket PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_async_socket PUBLIC webrtc_rtc_base_checks webrtc_rtc_base_socket webrtc_rtc_base_socket_address webrtc_rtc_base_third_party_sigslot_sigslot )

# rtc_base:async_socket.headers
add_library(webrtc_rtc_base_async_socket.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_async_socket.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_socket.headers webrtc_rtc_base_socket_address.headers webrtc_rtc_base_third_party_sigslot_sigslot.headers )
target_include_directories(webrtc_rtc_base_async_socket.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:atomicops
add_library(webrtc_rtc_base_atomicops INTERFACE)
target_include_directories(webrtc_rtc_base_atomicops INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:atomicops.headers
add_library(webrtc_rtc_base_atomicops.headers INTERFACE)
target_include_directories(webrtc_rtc_base_atomicops.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:audio_format_to_string
add_library(webrtc_rtc_base_audio_format_to_string ${WEBRTC_ROOT}/rtc_base/strings/audio_format_to_string.cc)
target_include_directories(webrtc_rtc_base_audio_format_to_string PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_audio_format_to_string PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_audio_format_to_string PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_audio_format_to_string PUBLIC webrtc_api_audio_codecs_audio_codecs_api webrtc_rtc_base_stringutils )

# rtc_base:audio_format_to_string.headers
add_library(webrtc_rtc_base_audio_format_to_string.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_audio_format_to_string.headers INTERFACE webrtc_api_audio_codecs_audio_codecs_api.headers webrtc_rtc_base_stringutils.headers )
target_include_directories(webrtc_rtc_base_audio_format_to_string.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:callback_list
add_library(webrtc_rtc_base_callback_list ${WEBRTC_ROOT}/rtc_base/callback_list.cc)
target_include_directories(webrtc_rtc_base_callback_list PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_callback_list PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_callback_list PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_callback_list PUBLIC webrtc_api_function_view webrtc_rtc_base_checks webrtc_rtc_base_untyped_function webrtc_rtc_base_system_assume webrtc_rtc_base_system_inline )

# rtc_base:callback_list.headers
add_library(webrtc_rtc_base_callback_list.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_callback_list.headers INTERFACE webrtc_api_function_view.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_untyped_function.headers webrtc_rtc_base_system_assume.headers webrtc_rtc_base_system_inline.headers )
target_include_directories(webrtc_rtc_base_callback_list.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:checks
add_library(webrtc_rtc_base_checks ${WEBRTC_ROOT}/rtc_base/checks.cc)
target_include_directories(webrtc_rtc_base_checks PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_checks PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_checks PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_checks PUBLIC absl::type_traits absl::strings webrtc_rtc_base_safe_compare webrtc_rtc_base_system_inline webrtc_rtc_base_system_rtc_export )

# rtc_base:checks.headers
add_library(webrtc_rtc_base_checks.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_checks.headers INTERFACE webrtc_rtc_base_safe_compare.headers webrtc_rtc_base_system_inline.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_rtc_base_checks.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:compile_assert_c
add_library(webrtc_rtc_base_compile_assert_c INTERFACE)
target_include_directories(webrtc_rtc_base_compile_assert_c INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:compile_assert_c.headers
add_library(webrtc_rtc_base_compile_assert_c.headers INTERFACE)
target_include_directories(webrtc_rtc_base_compile_assert_c.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:criticalsection
add_library(webrtc_rtc_base_criticalsection ${WEBRTC_ROOT}/rtc_base/deprecated/recursive_critical_section.cc)
target_include_directories(webrtc_rtc_base_criticalsection PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_criticalsection PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_criticalsection PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_criticalsection PUBLIC webrtc_rtc_base_atomicops webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_rtc_base_platform_thread_types webrtc_rtc_base_synchronization_yield webrtc_rtc_base_system_unused )

# rtc_base:criticalsection.headers
add_library(webrtc_rtc_base_criticalsection.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_criticalsection.headers INTERFACE webrtc_rtc_base_atomicops.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_platform_thread_types.headers webrtc_rtc_base_synchronization_yield.headers webrtc_rtc_base_system_unused.headers )
target_include_directories(webrtc_rtc_base_criticalsection.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:divide_round
add_library(webrtc_rtc_base_divide_round INTERFACE)
target_link_libraries(webrtc_rtc_base_divide_round INTERFACE webrtc_rtc_base_checks webrtc_rtc_base_safe_compare )
target_include_directories(webrtc_rtc_base_divide_round INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:divide_round.headers
add_library(webrtc_rtc_base_divide_round.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_divide_round.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_compare.headers )
target_include_directories(webrtc_rtc_base_divide_round.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/experiments:alr_experiment
add_library(webrtc_rtc_base_experiments_alr_experiment ${WEBRTC_ROOT}/rtc_base/experiments/alr_experiment.cc)
target_include_directories(webrtc_rtc_base_experiments_alr_experiment PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_alr_experiment PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_alr_experiment PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_alr_experiment PUBLIC absl::optional webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_rtc_base_rtc_base_approved )

# rtc_base/experiments:alr_experiment.headers
add_library(webrtc_rtc_base_experiments_alr_experiment.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_experiments_alr_experiment.headers INTERFACE webrtc_api_transport_field_trial_based_config.headers webrtc_api_transport_webrtc_key_value_config.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_rtc_base_experiments_alr_experiment.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/experiments:balanced_degradation_settings
add_library(webrtc_rtc_base_experiments_balanced_degradation_settings ${WEBRTC_ROOT}/rtc_base/experiments/balanced_degradation_settings.cc)
target_include_directories(webrtc_rtc_base_experiments_balanced_degradation_settings PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_balanced_degradation_settings PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_balanced_degradation_settings PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_balanced_degradation_settings PUBLIC absl::optional webrtc_api_video_codecs_video_codecs_api webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_experiments_field_trial_parser webrtc_system_wrappers_field_trial )

# rtc_base/experiments:cpu_speed_experiment
add_library(webrtc_rtc_base_experiments_cpu_speed_experiment ${WEBRTC_ROOT}/rtc_base/experiments/cpu_speed_experiment.cc)
target_include_directories(webrtc_rtc_base_experiments_cpu_speed_experiment PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_cpu_speed_experiment PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_cpu_speed_experiment PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_cpu_speed_experiment PUBLIC absl::optional webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_experiments_field_trial_parser webrtc_system_wrappers_field_trial )

# rtc_base/experiments:encoder_info_settings
add_library(webrtc_rtc_base_experiments_encoder_info_settings ${WEBRTC_ROOT}/rtc_base/experiments/encoder_info_settings.cc)
target_include_directories(webrtc_rtc_base_experiments_encoder_info_settings PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_encoder_info_settings PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_encoder_info_settings PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_encoder_info_settings PUBLIC absl::optional webrtc_api_video_codecs_video_codecs_api webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_experiments_field_trial_parser webrtc_system_wrappers_field_trial )

# rtc_base/experiments:field_trial_parser
add_library(webrtc_rtc_base_experiments_field_trial_parser ${WEBRTC_ROOT}/rtc_base/experiments/field_trial_list.cc ${WEBRTC_ROOT}/rtc_base/experiments/field_trial_parser.cc ${WEBRTC_ROOT}/rtc_base/experiments/field_trial_units.cc ${WEBRTC_ROOT}/rtc_base/experiments/struct_parameters_parser.cc)
target_include_directories(webrtc_rtc_base_experiments_field_trial_parser PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_field_trial_parser PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_field_trial_parser PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_field_trial_parser PUBLIC absl::memory absl::strings absl::optional webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_time_delta webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_safe_conversions webrtc_rtc_base_stringutils )

# rtc_base/experiments:field_trial_parser.headers
add_library(webrtc_rtc_base_experiments_field_trial_parser.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_experiments_field_trial_parser.headers INTERFACE webrtc_api_units_data_rate.headers webrtc_api_units_data_size.headers webrtc_api_units_time_delta.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_safe_conversions.headers webrtc_rtc_base_stringutils.headers )
target_include_directories(webrtc_rtc_base_experiments_field_trial_parser.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/experiments:jitter_upper_bound_experiment
add_library(webrtc_rtc_base_experiments_jitter_upper_bound_experiment ${WEBRTC_ROOT}/rtc_base/experiments/jitter_upper_bound_experiment.cc)
target_include_directories(webrtc_rtc_base_experiments_jitter_upper_bound_experiment PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_jitter_upper_bound_experiment PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_jitter_upper_bound_experiment PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_jitter_upper_bound_experiment PUBLIC absl::optional webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_field_trial )

# rtc_base/experiments:keyframe_interval_settings_experiment
add_library(webrtc_rtc_base_experiments_keyframe_interval_settings_experiment ${WEBRTC_ROOT}/rtc_base/experiments/keyframe_interval_settings.cc)
target_include_directories(webrtc_rtc_base_experiments_keyframe_interval_settings_experiment PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_keyframe_interval_settings_experiment PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_keyframe_interval_settings_experiment PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_keyframe_interval_settings_experiment PUBLIC absl::optional webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_rtc_base_experiments_field_trial_parser )

# rtc_base/experiments:min_video_bitrate_experiment
add_library(webrtc_rtc_base_experiments_min_video_bitrate_experiment ${WEBRTC_ROOT}/rtc_base/experiments/min_video_bitrate_experiment.cc)
target_include_directories(webrtc_rtc_base_experiments_min_video_bitrate_experiment PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_min_video_bitrate_experiment PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_min_video_bitrate_experiment PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_min_video_bitrate_experiment PUBLIC absl::optional webrtc_api_units_data_rate webrtc_api_video_video_frame webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_experiments_field_trial_parser webrtc_system_wrappers_field_trial )

# rtc_base/experiments:normalize_simulcast_size_experiment
add_library(webrtc_rtc_base_experiments_normalize_simulcast_size_experiment ${WEBRTC_ROOT}/rtc_base/experiments/normalize_simulcast_size_experiment.cc)
target_include_directories(webrtc_rtc_base_experiments_normalize_simulcast_size_experiment PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_normalize_simulcast_size_experiment PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_normalize_simulcast_size_experiment PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_normalize_simulcast_size_experiment PUBLIC absl::optional webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_field_trial )

# rtc_base/experiments:quality_rampup_experiment
add_library(webrtc_rtc_base_experiments_quality_rampup_experiment ${WEBRTC_ROOT}/rtc_base/experiments/quality_rampup_experiment.cc)
target_include_directories(webrtc_rtc_base_experiments_quality_rampup_experiment PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_quality_rampup_experiment PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_quality_rampup_experiment PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_quality_rampup_experiment PUBLIC absl::optional webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_experiments_field_trial_parser webrtc_system_wrappers_field_trial )

# rtc_base/experiments:quality_scaler_settings
add_library(webrtc_rtc_base_experiments_quality_scaler_settings ${WEBRTC_ROOT}/rtc_base/experiments/quality_scaler_settings.cc)
target_include_directories(webrtc_rtc_base_experiments_quality_scaler_settings PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_quality_scaler_settings PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_quality_scaler_settings PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_quality_scaler_settings PUBLIC absl::optional webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_experiments_field_trial_parser webrtc_system_wrappers_field_trial )

# rtc_base/experiments:quality_scaling_experiment
add_library(webrtc_rtc_base_experiments_quality_scaling_experiment ${WEBRTC_ROOT}/rtc_base/experiments/quality_scaling_experiment.cc)
target_include_directories(webrtc_rtc_base_experiments_quality_scaling_experiment PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_quality_scaling_experiment PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_quality_scaling_experiment PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_quality_scaling_experiment PUBLIC absl::optional webrtc_api_video_codecs_video_codecs_api webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_field_trial )

# rtc_base/experiments:rate_control_settings
add_library(webrtc_rtc_base_experiments_rate_control_settings ${WEBRTC_ROOT}/rtc_base/experiments/rate_control_settings.cc)
target_include_directories(webrtc_rtc_base_experiments_rate_control_settings PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_rate_control_settings PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_rate_control_settings PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_rate_control_settings PUBLIC absl::strings absl::optional webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_api_units_data_size webrtc_api_video_codecs_video_codecs_api webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_experiments_field_trial_parser webrtc_system_wrappers_field_trial )

# rtc_base/experiments:rtt_mult_experiment
add_library(webrtc_rtc_base_experiments_rtt_mult_experiment ${WEBRTC_ROOT}/rtc_base/experiments/rtt_mult_experiment.cc)
target_include_directories(webrtc_rtc_base_experiments_rtt_mult_experiment PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_rtt_mult_experiment PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_rtt_mult_experiment PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_rtt_mult_experiment PUBLIC absl::optional webrtc_rtc_base_rtc_base_approved webrtc_system_wrappers_field_trial )

# rtc_base/experiments:rtt_mult_experiment.headers
add_library(webrtc_rtc_base_experiments_rtt_mult_experiment.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_experiments_rtt_mult_experiment.headers INTERFACE webrtc_rtc_base_rtc_base_approved.headers webrtc_system_wrappers_field_trial.headers )
target_include_directories(webrtc_rtc_base_experiments_rtt_mult_experiment.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/experiments:stable_target_rate_experiment
add_library(webrtc_rtc_base_experiments_stable_target_rate_experiment ${WEBRTC_ROOT}/rtc_base/experiments/stable_target_rate_experiment.cc)
target_include_directories(webrtc_rtc_base_experiments_stable_target_rate_experiment PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_experiments_stable_target_rate_experiment PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_experiments_stable_target_rate_experiment PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_experiments_stable_target_rate_experiment PUBLIC absl::optional webrtc_api_transport_field_trial_based_config webrtc_api_transport_webrtc_key_value_config webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_experiments_rate_control_settings )

# rtc_base:gtest_prod
add_library(webrtc_rtc_base_gtest_prod INTERFACE)
target_include_directories(webrtc_rtc_base_gtest_prod INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:gtest_prod.headers
add_library(webrtc_rtc_base_gtest_prod.headers INTERFACE)
target_include_directories(webrtc_rtc_base_gtest_prod.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:gunit_helpers
add_library(webrtc_rtc_base_gunit_helpers ${WEBRTC_ROOT}/rtc_base/gunit.cc)
target_include_directories(webrtc_rtc_base_gunit_helpers PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_gunit_helpers PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_rtc_base_gunit_helpers PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_gunit_helpers PUBLIC absl::strings webrtc_rtc_base_rtc_base webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_stringutils webrtc_rtc_base_threading webrtc_test_test_support )

# rtc_base:ignore_wundef
add_library(webrtc_rtc_base_ignore_wundef INTERFACE)
target_include_directories(webrtc_rtc_base_ignore_wundef INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:ignore_wundef.headers
add_library(webrtc_rtc_base_ignore_wundef.headers INTERFACE)
target_include_directories(webrtc_rtc_base_ignore_wundef.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:ip_address
add_library(webrtc_rtc_base_ip_address ${WEBRTC_ROOT}/rtc_base/ip_address.cc)
target_include_directories(webrtc_rtc_base_ip_address PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_ip_address PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_ip_address PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_ip_address PUBLIC webrtc_rtc_base_win32 webrtc_rtc_base_net_helpers webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_stringutils webrtc_rtc_base_system_rtc_export )

# rtc_base:ip_address.headers
add_library(webrtc_rtc_base_ip_address.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_ip_address.headers INTERFACE webrtc_rtc_base_win32.headers webrtc_rtc_base_net_helpers.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_rtc_base_ip_address.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:logging
add_library(webrtc_rtc_base_logging ${WEBRTC_ROOT}/rtc_base/logging.cc)
target_include_directories(webrtc_rtc_base_logging PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_logging PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_logging PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_logging PUBLIC absl::core_headers absl::type_traits absl::strings webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_macromagic webrtc_rtc_base_platform_thread_types webrtc_rtc_base_stringutils webrtc_rtc_base_timeutils webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_inline )

# rtc_base:logging.headers
add_library(webrtc_rtc_base_logging.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_logging.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_criticalsection.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_platform_thread_types.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_timeutils.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_inline.headers )
target_include_directories(webrtc_rtc_base_logging.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:macromagic
add_library(webrtc_rtc_base_macromagic INTERFACE)
target_link_libraries(webrtc_rtc_base_macromagic INTERFACE webrtc_rtc_base_system_arch )
target_include_directories(webrtc_rtc_base_macromagic INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:macromagic.headers
add_library(webrtc_rtc_base_macromagic.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_macromagic.headers INTERFACE webrtc_rtc_base_system_arch.headers )
target_include_directories(webrtc_rtc_base_macromagic.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/memory:aligned_malloc
add_library(webrtc_rtc_base_memory_aligned_malloc ${WEBRTC_ROOT}/rtc_base/memory/aligned_malloc.cc)
target_include_directories(webrtc_rtc_base_memory_aligned_malloc PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_memory_aligned_malloc PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_memory_aligned_malloc PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_memory_aligned_malloc PUBLIC webrtc_rtc_base_checks )

# rtc_base/memory:aligned_malloc.headers
add_library(webrtc_rtc_base_memory_aligned_malloc.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_memory_aligned_malloc.headers INTERFACE webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_rtc_base_memory_aligned_malloc.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/memory:fifo_buffer
add_library(webrtc_rtc_base_memory_fifo_buffer ${WEBRTC_ROOT}/rtc_base/memory/fifo_buffer.cc)
target_include_directories(webrtc_rtc_base_memory_fifo_buffer PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_memory_fifo_buffer PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_memory_fifo_buffer PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_memory_fifo_buffer PUBLIC webrtc_rtc_base_rtc_base webrtc_rtc_base_threading webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task )

# rtc_base:net_helpers
add_library(webrtc_rtc_base_net_helpers ${WEBRTC_ROOT}/rtc_base/net_helpers.cc)
target_include_directories(webrtc_rtc_base_net_helpers PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_net_helpers PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_net_helpers PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_net_helpers PUBLIC webrtc_rtc_base_win32 )

# rtc_base:net_helpers.headers
add_library(webrtc_rtc_base_net_helpers.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_net_helpers.headers INTERFACE webrtc_rtc_base_win32.headers )
target_include_directories(webrtc_rtc_base_net_helpers.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:network_constants
add_library(webrtc_rtc_base_network_constants ${WEBRTC_ROOT}/rtc_base/network_constants.cc)
target_include_directories(webrtc_rtc_base_network_constants PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_network_constants PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_network_constants PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_network_constants PUBLIC webrtc_rtc_base_checks )

# rtc_base:network_constants.headers
add_library(webrtc_rtc_base_network_constants.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_network_constants.headers INTERFACE webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_rtc_base_network_constants.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/network:sent_packet
add_library(webrtc_rtc_base_network_sent_packet ${WEBRTC_ROOT}/rtc_base/network/sent_packet.cc)
target_include_directories(webrtc_rtc_base_network_sent_packet PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_network_sent_packet PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_network_sent_packet PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_network_sent_packet PUBLIC absl::optional webrtc_rtc_base_system_rtc_export )

# rtc_base/network:sent_packet.headers
add_library(webrtc_rtc_base_network_sent_packet.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_network_sent_packet.headers INTERFACE webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_rtc_base_network_sent_packet.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:null_socket_server
add_library(webrtc_rtc_base_null_socket_server ${WEBRTC_ROOT}/rtc_base/null_socket_server.cc)
target_include_directories(webrtc_rtc_base_null_socket_server PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_null_socket_server PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_null_socket_server PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_null_socket_server PUBLIC webrtc_rtc_base_async_socket webrtc_rtc_base_checks webrtc_rtc_base_rtc_event webrtc_rtc_base_socket webrtc_rtc_base_socket_server webrtc_rtc_base_system_rtc_export )

# rtc_base:null_socket_server.headers
add_library(webrtc_rtc_base_null_socket_server.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_null_socket_server.headers INTERFACE webrtc_rtc_base_async_socket.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_event.headers webrtc_rtc_base_socket.headers webrtc_rtc_base_socket_server.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_rtc_base_null_socket_server.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:platform_thread
add_library(webrtc_rtc_base_platform_thread ${WEBRTC_ROOT}/rtc_base/platform_thread.cc)
target_include_directories(webrtc_rtc_base_platform_thread PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_platform_thread PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_platform_thread PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_platform_thread PUBLIC absl::memory absl::strings absl::optional webrtc_api_sequence_checker webrtc_rtc_base_atomicops webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_rtc_base_platform_thread_types webrtc_rtc_base_rtc_event webrtc_rtc_base_timeutils )

# rtc_base:platform_thread.headers
add_library(webrtc_rtc_base_platform_thread.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_platform_thread.headers INTERFACE webrtc_api_sequence_checker.headers webrtc_rtc_base_atomicops.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_platform_thread_types.headers webrtc_rtc_base_rtc_event.headers webrtc_rtc_base_timeutils.headers )
target_include_directories(webrtc_rtc_base_platform_thread.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:platform_thread_types
add_library(webrtc_rtc_base_platform_thread_types ${WEBRTC_ROOT}/rtc_base/platform_thread_types.cc)
target_include_directories(webrtc_rtc_base_platform_thread_types PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_platform_thread_types PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_platform_thread_types PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_platform_thread_types PUBLIC webrtc_rtc_base_macromagic )

# rtc_base:platform_thread_types.headers
add_library(webrtc_rtc_base_platform_thread_types.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_platform_thread_types.headers INTERFACE webrtc_rtc_base_macromagic.headers )
target_include_directories(webrtc_rtc_base_platform_thread_types.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:protobuf_utils
add_library(webrtc_rtc_base_protobuf_utils INTERFACE)
target_link_libraries(webrtc_rtc_base_protobuf_utils INTERFACE libprotobuf )
target_include_directories(webrtc_rtc_base_protobuf_utils INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:protobuf_utils.headers
add_library(webrtc_rtc_base_protobuf_utils.headers INTERFACE)
target_include_directories(webrtc_rtc_base_protobuf_utils.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:rate_limiter
add_library(webrtc_rtc_base_rate_limiter ${WEBRTC_ROOT}/rtc_base/rate_limiter.cc)
target_include_directories(webrtc_rtc_base_rate_limiter PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rate_limiter PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_rate_limiter PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rate_limiter PUBLIC absl::optional webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers )

# rtc_base:refcount
add_library(webrtc_rtc_base_refcount INTERFACE)
target_link_libraries(webrtc_rtc_base_refcount INTERFACE webrtc_api_scoped_refptr webrtc_rtc_base_macromagic )
target_include_directories(webrtc_rtc_base_refcount INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:refcount.headers
add_library(webrtc_rtc_base_refcount.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_refcount.headers INTERFACE webrtc_api_scoped_refptr.headers webrtc_rtc_base_macromagic.headers )
target_include_directories(webrtc_rtc_base_refcount.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base
add_library(webrtc_rtc_base_rtc_base ${WEBRTC_ROOT}/rtc_base/win32_socket_server.cc ${WEBRTC_ROOT}/rtc_base/async_invoker.cc ${WEBRTC_ROOT}/rtc_base/async_packet_socket.cc ${WEBRTC_ROOT}/rtc_base/async_tcp_socket.cc ${WEBRTC_ROOT}/rtc_base/async_udp_socket.cc ${WEBRTC_ROOT}/rtc_base/boringssl_certificate.cc ${WEBRTC_ROOT}/rtc_base/boringssl_identity.cc ${WEBRTC_ROOT}/rtc_base/crc32.cc ${WEBRTC_ROOT}/rtc_base/crypt_string.cc ${WEBRTC_ROOT}/rtc_base/data_rate_limiter.cc ${WEBRTC_ROOT}/rtc_base/file_rotating_stream.cc ${WEBRTC_ROOT}/rtc_base/helpers.cc ${WEBRTC_ROOT}/rtc_base/http_common.cc ${WEBRTC_ROOT}/rtc_base/log_sinks.cc ${WEBRTC_ROOT}/rtc_base/message_digest.cc ${WEBRTC_ROOT}/rtc_base/net_helper.cc ${WEBRTC_ROOT}/rtc_base/network.cc ${WEBRTC_ROOT}/rtc_base/network_route.cc ${WEBRTC_ROOT}/rtc_base/openssl_adapter.cc ${WEBRTC_ROOT}/rtc_base/openssl_digest.cc ${WEBRTC_ROOT}/rtc_base/openssl_key_pair.cc ${WEBRTC_ROOT}/rtc_base/openssl_session_cache.cc ${WEBRTC_ROOT}/rtc_base/openssl_stream_adapter.cc ${WEBRTC_ROOT}/rtc_base/openssl_utility.cc ${WEBRTC_ROOT}/rtc_base/proxy_info.cc ${WEBRTC_ROOT}/rtc_base/rtc_certificate.cc ${WEBRTC_ROOT}/rtc_base/rtc_certificate_generator.cc ${WEBRTC_ROOT}/rtc_base/socket_adapters.cc ${WEBRTC_ROOT}/rtc_base/socket_address_pair.cc ${WEBRTC_ROOT}/rtc_base/ssl_adapter.cc ${WEBRTC_ROOT}/rtc_base/ssl_certificate.cc ${WEBRTC_ROOT}/rtc_base/ssl_fingerprint.cc ${WEBRTC_ROOT}/rtc_base/ssl_identity.cc ${WEBRTC_ROOT}/rtc_base/ssl_stream_adapter.cc ${WEBRTC_ROOT}/rtc_base/stream.cc ${WEBRTC_ROOT}/rtc_base/unique_id_generator.cc)
target_include_directories(webrtc_rtc_base_rtc_base PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rtc_base PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_rtc_base PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rtc_base PUBLIC webrtc_rtc_base_win32 absl::algorithm_container absl::flat_hash_map absl::memory absl::strings absl::optional jsoncpp ssl webrtc_api_array_view webrtc_api_function_view webrtc_api_refcountedbase webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_numerics_numerics webrtc_api_task_queue_task_queue webrtc_rtc_base_async_resolver_interface webrtc_rtc_base_async_socket webrtc_rtc_base_checks webrtc_rtc_base_ip_address webrtc_rtc_base_network_constants webrtc_rtc_base_null_socket_server webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_socket webrtc_rtc_base_socket_address webrtc_rtc_base_socket_factory webrtc_rtc_base_socket_server webrtc_rtc_base_stringutils webrtc_rtc_base_threading webrtc_rtc_base_network_sent_packet webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_file_wrapper webrtc_rtc_base_system_inline webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_system_rtc_export webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_repeating_task webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_base64_base64 webrtc_rtc_base_third_party_sigslot_sigslot webrtc_system_wrappers_field_trial )

# rtc_base:rtc_base.headers
add_library(webrtc_rtc_base_rtc_base.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_rtc_base.headers INTERFACE webrtc_rtc_base_win32.headers webrtc_api_array_view.headers webrtc_api_function_view.headers webrtc_api_refcountedbase.headers webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_api_numerics_numerics.headers webrtc_api_task_queue_task_queue.headers webrtc_rtc_base_async_resolver_interface.headers webrtc_rtc_base_async_socket.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_ip_address.headers webrtc_rtc_base_network_constants.headers webrtc_rtc_base_null_socket_server.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_rtc_numerics.headers webrtc_rtc_base_rtc_task_queue.headers webrtc_rtc_base_socket.headers webrtc_rtc_base_socket_address.headers webrtc_rtc_base_socket_factory.headers webrtc_rtc_base_socket_server.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_threading.headers webrtc_rtc_base_network_sent_packet.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_file_wrapper.headers webrtc_rtc_base_system_inline.headers webrtc_rtc_base_system_no_unique_address.headers webrtc_rtc_base_system_rtc_export.headers webrtc_rtc_base_task_utils_pending_task_safety_flag.headers webrtc_rtc_base_task_utils_repeating_task.headers webrtc_rtc_base_task_utils_to_queued_task.headers webrtc_rtc_base_third_party_base64_base64.headers webrtc_rtc_base_third_party_sigslot_sigslot.headers webrtc_system_wrappers_field_trial.headers )
target_include_directories(webrtc_rtc_base_rtc_base.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:rtc_base_approved
add_library(webrtc_rtc_base_rtc_base_approved ${WEBRTC_ROOT}/rtc_base/win/get_activation_factory.cc ${WEBRTC_ROOT}/rtc_base/win/hstring.cc ${WEBRTC_ROOT}/rtc_base/win/scoped_com_initializer.cc ${WEBRTC_ROOT}/rtc_base/win/windows_version.cc ${WEBRTC_ROOT}/rtc_base/bit_buffer.cc ${WEBRTC_ROOT}/rtc_base/buffer_queue.cc ${WEBRTC_ROOT}/rtc_base/byte_buffer.cc ${WEBRTC_ROOT}/rtc_base/copy_on_write_buffer.cc ${WEBRTC_ROOT}/rtc_base/event_tracer.cc ${WEBRTC_ROOT}/rtc_base/location.cc ${WEBRTC_ROOT}/rtc_base/numerics/histogram_percentile_counter.cc ${WEBRTC_ROOT}/rtc_base/numerics/sample_counter.cc ${WEBRTC_ROOT}/rtc_base/race_checker.cc ${WEBRTC_ROOT}/rtc_base/random.cc ${WEBRTC_ROOT}/rtc_base/rate_statistics.cc ${WEBRTC_ROOT}/rtc_base/rate_tracker.cc ${WEBRTC_ROOT}/rtc_base/timestamp_aligner.cc ${WEBRTC_ROOT}/rtc_base/zero_memory.cc)
target_include_directories(webrtc_rtc_base_rtc_base_approved PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rtc_base_approved PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_rtc_base_approved PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rtc_base_approved PUBLIC absl::core_headers absl::optional webrtc_api_array_view webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_rtc_base_atomicops webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_logging webrtc_rtc_base_macromagic webrtc_rtc_base_platform_thread webrtc_rtc_base_platform_thread_types webrtc_rtc_base_refcount webrtc_rtc_base_rtc_event webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_safe_compare webrtc_rtc_base_safe_conversions webrtc_rtc_base_stringutils webrtc_rtc_base_timeutils webrtc_rtc_base_type_traits webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_arch webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_system_rtc_export webrtc_rtc_base_third_party_base64_base64 )

# rtc_base:rtc_base_approved.headers
add_library(webrtc_rtc_base_rtc_base_approved.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_rtc_base_approved.headers INTERFACE webrtc_api_array_view.headers webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_rtc_base_atomicops.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_criticalsection.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_platform_thread.headers webrtc_rtc_base_platform_thread_types.headers webrtc_rtc_base_refcount.headers webrtc_rtc_base_rtc_event.headers webrtc_rtc_base_rtc_task_queue.headers webrtc_rtc_base_safe_compare.headers webrtc_rtc_base_safe_conversions.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_timeutils.headers webrtc_rtc_base_type_traits.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_arch.headers webrtc_rtc_base_system_no_unique_address.headers webrtc_rtc_base_system_rtc_export.headers webrtc_rtc_base_third_party_base64_base64.headers )
target_include_directories(webrtc_rtc_base_rtc_base_approved.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:rtc_base_tests_utils
add_library(webrtc_rtc_base_rtc_base_tests_utils ${WEBRTC_ROOT}/rtc_base/cpu_time.cc ${WEBRTC_ROOT}/rtc_base/fake_clock.cc ${WEBRTC_ROOT}/rtc_base/fake_ssl_identity.cc ${WEBRTC_ROOT}/rtc_base/firewall_socket_server.cc ${WEBRTC_ROOT}/rtc_base/memory_stream.cc ${WEBRTC_ROOT}/rtc_base/memory_usage.cc ${WEBRTC_ROOT}/rtc_base/nat_server.cc ${WEBRTC_ROOT}/rtc_base/nat_socket_factory.cc ${WEBRTC_ROOT}/rtc_base/nat_types.cc ${WEBRTC_ROOT}/rtc_base/proxy_server.cc ${WEBRTC_ROOT}/rtc_base/server_socket_adapters.cc ${WEBRTC_ROOT}/rtc_base/socket_stream.cc ${WEBRTC_ROOT}/rtc_base/test_echo_server.cc ${WEBRTC_ROOT}/rtc_base/test_utils.cc ${WEBRTC_ROOT}/rtc_base/virtual_socket_server.cc)
target_include_directories(webrtc_rtc_base_rtc_base_tests_utils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rtc_base_tests_utils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_rtc_base_tests_utils PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rtc_base_tests_utils PUBLIC absl::algorithm_container absl::memory webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_rtc_base_rtc_base webrtc_rtc_base_async_socket webrtc_rtc_base_checks webrtc_rtc_base_ip_address webrtc_rtc_base_socket webrtc_rtc_base_socket_address webrtc_rtc_base_socket_factory webrtc_rtc_base_socket_server webrtc_rtc_base_threading webrtc_rtc_base_memory_fifo_buffer webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_sigslot_sigslot )

# rtc_base:rtc_event
add_library(webrtc_rtc_base_rtc_event ${WEBRTC_ROOT}/rtc_base/event.cc)
target_include_directories(webrtc_rtc_base_rtc_event PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rtc_event PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_rtc_event PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rtc_event PUBLIC absl::optional webrtc_rtc_base_checks webrtc_rtc_base_synchronization_yield_policy webrtc_rtc_base_system_warn_current_thread_is_deadlocked )

# rtc_base:rtc_event.headers
add_library(webrtc_rtc_base_rtc_event.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_rtc_event.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_synchronization_yield_policy.headers webrtc_rtc_base_system_warn_current_thread_is_deadlocked.headers )
target_include_directories(webrtc_rtc_base_rtc_event.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:rtc_json
add_library(webrtc_rtc_base_rtc_json ${WEBRTC_ROOT}/rtc_base/strings/json.cc)
target_include_directories(webrtc_rtc_base_rtc_json PRIVATE ${WEBRTC_ROOT}/rtc_base/../third_party/jsoncpp/source/include ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rtc_json PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_EXTERNAL_JSON WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_rtc_json PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rtc_json PUBLIC jsoncpp webrtc_rtc_base_stringutils )

# rtc_base:rtc_numerics
add_library(webrtc_rtc_base_rtc_numerics ${WEBRTC_ROOT}/rtc_base/numerics/event_based_exponential_moving_average.cc ${WEBRTC_ROOT}/rtc_base/numerics/exp_filter.cc ${WEBRTC_ROOT}/rtc_base/numerics/moving_average.cc)
target_include_directories(webrtc_rtc_base_rtc_numerics PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rtc_numerics PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_rtc_numerics PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rtc_numerics PUBLIC absl::optional webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# rtc_base:rtc_numerics.headers
add_library(webrtc_rtc_base_rtc_numerics.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_rtc_numerics.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_rtc_base_rtc_numerics.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:rtc_operations_chain
add_library(webrtc_rtc_base_rtc_operations_chain ${WEBRTC_ROOT}/rtc_base/operations_chain.cc)
target_include_directories(webrtc_rtc_base_rtc_operations_chain PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rtc_operations_chain PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_rtc_operations_chain PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rtc_operations_chain PUBLIC absl::optional webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_rtc_base_refcount webrtc_rtc_base_system_no_unique_address )

# rtc_base:rtc_stats_counters
add_library(webrtc_rtc_base_rtc_stats_counters ${WEBRTC_ROOT}/rtc_base/numerics/event_rate_counter.cc ${WEBRTC_ROOT}/rtc_base/numerics/sample_stats.cc)
target_include_directories(webrtc_rtc_base_rtc_stats_counters PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rtc_stats_counters PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_rtc_stats_counters PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rtc_stats_counters PUBLIC webrtc_api_numerics_numerics webrtc_api_units_data_rate webrtc_api_units_time_delta webrtc_api_units_timestamp )

# rtc_base:rtc_task_queue
add_library(webrtc_rtc_base_rtc_task_queue ${WEBRTC_ROOT}/rtc_base/task_queue.cc)
target_include_directories(webrtc_rtc_base_rtc_task_queue PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rtc_task_queue PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_rtc_task_queue PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rtc_task_queue PUBLIC absl::memory webrtc_api_task_queue_task_queue webrtc_rtc_base_macromagic webrtc_rtc_base_system_rtc_export webrtc_rtc_base_task_utils_to_queued_task )

# rtc_base:rtc_task_queue.headers
add_library(webrtc_rtc_base_rtc_task_queue.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_rtc_task_queue.headers INTERFACE webrtc_api_task_queue_task_queue.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_system_rtc_export.headers webrtc_rtc_base_task_utils_to_queued_task.headers )
target_include_directories(webrtc_rtc_base_rtc_task_queue.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:rtc_task_queue_win
add_library(webrtc_rtc_base_rtc_task_queue_win ${WEBRTC_ROOT}/rtc_base/task_queue_win.cc)
target_include_directories(webrtc_rtc_base_rtc_task_queue_win PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_rtc_task_queue_win PRIVATE RTC_ENABLE_VP9 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_WIN)
target_compile_options(webrtc_rtc_base_rtc_task_queue_win PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_rtc_task_queue_win PUBLIC absl::strings absl::optional webrtc_api_task_queue_task_queue webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_logging webrtc_rtc_base_macromagic webrtc_rtc_base_platform_thread webrtc_rtc_base_rtc_event webrtc_rtc_base_safe_conversions webrtc_rtc_base_timeutils webrtc_rtc_base_synchronization_mutex )

# rtc_base:safe_compare
add_library(webrtc_rtc_base_safe_compare INTERFACE)
target_link_libraries(webrtc_rtc_base_safe_compare INTERFACE webrtc_rtc_base_type_traits )
target_include_directories(webrtc_rtc_base_safe_compare INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:safe_compare.headers
add_library(webrtc_rtc_base_safe_compare.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_safe_compare.headers INTERFACE webrtc_rtc_base_type_traits.headers )
target_include_directories(webrtc_rtc_base_safe_compare.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:safe_conversions
add_library(webrtc_rtc_base_safe_conversions INTERFACE)
target_link_libraries(webrtc_rtc_base_safe_conversions INTERFACE webrtc_rtc_base_checks )
target_include_directories(webrtc_rtc_base_safe_conversions INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:safe_conversions.headers
add_library(webrtc_rtc_base_safe_conversions.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_safe_conversions.headers INTERFACE webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_rtc_base_safe_conversions.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:safe_minmax
add_library(webrtc_rtc_base_safe_minmax INTERFACE)
target_link_libraries(webrtc_rtc_base_safe_minmax INTERFACE webrtc_rtc_base_checks webrtc_rtc_base_safe_compare webrtc_rtc_base_type_traits )
target_include_directories(webrtc_rtc_base_safe_minmax INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:safe_minmax.headers
add_library(webrtc_rtc_base_safe_minmax.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_safe_minmax.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_compare.headers webrtc_rtc_base_type_traits.headers )
target_include_directories(webrtc_rtc_base_safe_minmax.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:sanitizer
add_library(webrtc_rtc_base_sanitizer INTERFACE)
target_link_libraries(webrtc_rtc_base_sanitizer INTERFACE absl::type_traits )
target_include_directories(webrtc_rtc_base_sanitizer INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:sanitizer.headers
add_library(webrtc_rtc_base_sanitizer.headers INTERFACE)
target_include_directories(webrtc_rtc_base_sanitizer.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:socket
add_library(webrtc_rtc_base_socket ${WEBRTC_ROOT}/rtc_base/socket.cc)
target_include_directories(webrtc_rtc_base_socket PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_socket PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_socket PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_socket PUBLIC webrtc_rtc_base_win32 webrtc_rtc_base_macromagic webrtc_rtc_base_socket_address )

# rtc_base:socket.headers
add_library(webrtc_rtc_base_socket.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_socket.headers INTERFACE webrtc_rtc_base_win32.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_socket_address.headers )
target_include_directories(webrtc_rtc_base_socket.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:socket_address
add_library(webrtc_rtc_base_socket_address ${WEBRTC_ROOT}/rtc_base/socket_address.cc)
target_include_directories(webrtc_rtc_base_socket_address PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_socket_address PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_socket_address PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_socket_address PUBLIC webrtc_rtc_base_win32 webrtc_rtc_base_checks webrtc_rtc_base_ip_address webrtc_rtc_base_logging webrtc_rtc_base_net_helpers webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_safe_conversions webrtc_rtc_base_stringutils webrtc_rtc_base_system_rtc_export )

# rtc_base:socket_address.headers
add_library(webrtc_rtc_base_socket_address.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_socket_address.headers INTERFACE webrtc_rtc_base_win32.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_ip_address.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_net_helpers.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_safe_conversions.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_rtc_base_socket_address.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:socket_factory
add_library(webrtc_rtc_base_socket_factory INTERFACE)
target_link_libraries(webrtc_rtc_base_socket_factory INTERFACE webrtc_rtc_base_async_socket webrtc_rtc_base_socket )
target_include_directories(webrtc_rtc_base_socket_factory INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:socket_factory.headers
add_library(webrtc_rtc_base_socket_factory.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_socket_factory.headers INTERFACE webrtc_rtc_base_async_socket.headers webrtc_rtc_base_socket.headers )
target_include_directories(webrtc_rtc_base_socket_factory.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:socket_server
add_library(webrtc_rtc_base_socket_server INTERFACE)
target_link_libraries(webrtc_rtc_base_socket_server INTERFACE webrtc_rtc_base_socket_factory )
target_include_directories(webrtc_rtc_base_socket_server INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:socket_server.headers
add_library(webrtc_rtc_base_socket_server.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_socket_server.headers INTERFACE webrtc_rtc_base_socket_factory.headers )
target_include_directories(webrtc_rtc_base_socket_server.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:stringutils
add_library(webrtc_rtc_base_stringutils ${WEBRTC_ROOT}/rtc_base/string_encode.cc ${WEBRTC_ROOT}/rtc_base/string_to_number.cc ${WEBRTC_ROOT}/rtc_base/string_utils.cc ${WEBRTC_ROOT}/rtc_base/strings/string_builder.cc ${WEBRTC_ROOT}/rtc_base/strings/string_format.cc)
target_include_directories(webrtc_rtc_base_stringutils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_stringutils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_stringutils PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_stringutils PUBLIC absl::strings absl::optional webrtc_api_array_view webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_rtc_base_safe_minmax )

# rtc_base:stringutils.headers
add_library(webrtc_rtc_base_stringutils.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_stringutils.headers INTERFACE webrtc_api_array_view.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_safe_minmax.headers )
target_include_directories(webrtc_rtc_base_stringutils.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/synchronization:mutex
add_library(webrtc_rtc_base_synchronization_mutex ${WEBRTC_ROOT}/rtc_base/synchronization/mutex.cc)
target_include_directories(webrtc_rtc_base_synchronization_mutex PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_synchronization_mutex PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_synchronization_mutex PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_synchronization_mutex PUBLIC absl::core_headers absl::synchronization webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_rtc_base_platform_thread_types webrtc_rtc_base_synchronization_yield webrtc_rtc_base_system_unused )

# rtc_base/synchronization:mutex.headers
add_library(webrtc_rtc_base_synchronization_mutex.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_synchronization_mutex.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_platform_thread_types.headers webrtc_rtc_base_synchronization_yield.headers webrtc_rtc_base_system_unused.headers )
target_include_directories(webrtc_rtc_base_synchronization_mutex.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/synchronization:sequence_checker_internal
add_library(webrtc_rtc_base_synchronization_sequence_checker_internal ${WEBRTC_ROOT}/rtc_base/synchronization/sequence_checker_internal.cc)
target_include_directories(webrtc_rtc_base_synchronization_sequence_checker_internal PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_synchronization_sequence_checker_internal PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_synchronization_sequence_checker_internal PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_synchronization_sequence_checker_internal PUBLIC webrtc_api_task_queue_task_queue webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_rtc_base_platform_thread_types webrtc_rtc_base_stringutils webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_rtc_export )

# rtc_base/synchronization:sequence_checker_internal.headers
add_library(webrtc_rtc_base_synchronization_sequence_checker_internal.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_synchronization_sequence_checker_internal.headers INTERFACE webrtc_api_task_queue_task_queue.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_platform_thread_types.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_rtc_base_synchronization_sequence_checker_internal.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/synchronization:yield
add_library(webrtc_rtc_base_synchronization_yield ${WEBRTC_ROOT}/rtc_base/synchronization/yield.cc)
target_include_directories(webrtc_rtc_base_synchronization_yield PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_synchronization_yield PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_synchronization_yield PRIVATE -GR-)

# rtc_base/synchronization:yield.headers
add_library(webrtc_rtc_base_synchronization_yield.headers INTERFACE)
target_include_directories(webrtc_rtc_base_synchronization_yield.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/synchronization:yield_policy
add_library(webrtc_rtc_base_synchronization_yield_policy ${WEBRTC_ROOT}/rtc_base/synchronization/yield_policy.cc)
target_include_directories(webrtc_rtc_base_synchronization_yield_policy PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_synchronization_yield_policy PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_synchronization_yield_policy PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_synchronization_yield_policy PUBLIC absl::config absl::core_headers webrtc_rtc_base_checks )

# rtc_base/synchronization:yield_policy.headers
add_library(webrtc_rtc_base_synchronization_yield_policy.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_synchronization_yield_policy.headers INTERFACE webrtc_rtc_base_checks.headers )
target_include_directories(webrtc_rtc_base_synchronization_yield_policy.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:arch
add_library(webrtc_rtc_base_system_arch INTERFACE)
target_include_directories(webrtc_rtc_base_system_arch INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:arch.headers
add_library(webrtc_rtc_base_system_arch.headers INTERFACE)
target_include_directories(webrtc_rtc_base_system_arch.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:assume
add_library(webrtc_rtc_base_system_assume INTERFACE)
target_include_directories(webrtc_rtc_base_system_assume INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:assume.headers
add_library(webrtc_rtc_base_system_assume.headers INTERFACE)
target_include_directories(webrtc_rtc_base_system_assume.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:file_wrapper
add_library(webrtc_rtc_base_system_file_wrapper ${WEBRTC_ROOT}/rtc_base/system/file_wrapper.cc)
target_include_directories(webrtc_rtc_base_system_file_wrapper PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_system_file_wrapper PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_system_file_wrapper PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_system_file_wrapper PUBLIC webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_safe_conversions )

# rtc_base/system:file_wrapper.headers
add_library(webrtc_rtc_base_system_file_wrapper.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_system_file_wrapper.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_criticalsection.headers webrtc_rtc_base_safe_conversions.headers )
target_include_directories(webrtc_rtc_base_system_file_wrapper.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:ignore_warnings
add_library(webrtc_rtc_base_system_ignore_warnings INTERFACE)
target_include_directories(webrtc_rtc_base_system_ignore_warnings INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:ignore_warnings.headers
add_library(webrtc_rtc_base_system_ignore_warnings.headers INTERFACE)
target_include_directories(webrtc_rtc_base_system_ignore_warnings.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:inline
add_library(webrtc_rtc_base_system_inline INTERFACE)
target_include_directories(webrtc_rtc_base_system_inline INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:inline.headers
add_library(webrtc_rtc_base_system_inline.headers INTERFACE)
target_include_directories(webrtc_rtc_base_system_inline.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:no_unique_address
add_library(webrtc_rtc_base_system_no_unique_address INTERFACE)
target_include_directories(webrtc_rtc_base_system_no_unique_address INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:no_unique_address.headers
add_library(webrtc_rtc_base_system_no_unique_address.headers INTERFACE)
target_include_directories(webrtc_rtc_base_system_no_unique_address.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:rtc_export
add_library(webrtc_rtc_base_system_rtc_export INTERFACE)
target_include_directories(webrtc_rtc_base_system_rtc_export INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:rtc_export.headers
add_library(webrtc_rtc_base_system_rtc_export.headers INTERFACE)
target_include_directories(webrtc_rtc_base_system_rtc_export.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:thread_registry
add_library(webrtc_rtc_base_system_thread_registry INTERFACE)
target_link_libraries(webrtc_rtc_base_system_thread_registry INTERFACE webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_synchronization_mutex )
target_include_directories(webrtc_rtc_base_system_thread_registry INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:unused
add_library(webrtc_rtc_base_system_unused INTERFACE)
target_include_directories(webrtc_rtc_base_system_unused INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:unused.headers
add_library(webrtc_rtc_base_system_unused.headers INTERFACE)
target_include_directories(webrtc_rtc_base_system_unused.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:warn_current_thread_is_deadlocked
add_library(webrtc_rtc_base_system_warn_current_thread_is_deadlocked INTERFACE)
target_include_directories(webrtc_rtc_base_system_warn_current_thread_is_deadlocked INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/system:warn_current_thread_is_deadlocked.headers
add_library(webrtc_rtc_base_system_warn_current_thread_is_deadlocked.headers INTERFACE)
target_include_directories(webrtc_rtc_base_system_warn_current_thread_is_deadlocked.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:task_queue_for_test
add_library(webrtc_rtc_base_task_queue_for_test ${WEBRTC_ROOT}/rtc_base/task_queue_for_test.cc)
target_include_directories(webrtc_rtc_base_task_queue_for_test PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_task_queue_for_test PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_task_queue_for_test PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_task_queue_for_test PUBLIC absl::strings webrtc_api_task_queue_task_queue webrtc_api_task_queue_default_task_queue_factory webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_event webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_task_utils_to_queued_task )

# rtc_base/task_utils:pending_task_safety_flag
add_library(webrtc_rtc_base_task_utils_pending_task_safety_flag ${WEBRTC_ROOT}/rtc_base/task_utils/pending_task_safety_flag.cc)
target_include_directories(webrtc_rtc_base_task_utils_pending_task_safety_flag PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_task_utils_pending_task_safety_flag PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_task_utils_pending_task_safety_flag PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_task_utils_pending_task_safety_flag PUBLIC webrtc_api_refcountedbase webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_rtc_base_checks webrtc_rtc_base_system_no_unique_address )

# rtc_base/task_utils:pending_task_safety_flag.headers
add_library(webrtc_rtc_base_task_utils_pending_task_safety_flag.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_task_utils_pending_task_safety_flag.headers INTERFACE webrtc_api_refcountedbase.headers webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_system_no_unique_address.headers )
target_include_directories(webrtc_rtc_base_task_utils_pending_task_safety_flag.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/task_utils:repeating_task
add_library(webrtc_rtc_base_task_utils_repeating_task ${WEBRTC_ROOT}/rtc_base/task_utils/repeating_task.cc)
target_include_directories(webrtc_rtc_base_task_utils_repeating_task PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_task_utils_repeating_task PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_task_utils_repeating_task PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_task_utils_repeating_task PUBLIC absl::memory webrtc_api_sequence_checker webrtc_api_task_queue_task_queue webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_rtc_base_logging webrtc_rtc_base_timeutils webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_system_wrappers_system_wrappers )

# rtc_base/task_utils:repeating_task.headers
add_library(webrtc_rtc_base_task_utils_repeating_task.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_task_utils_repeating_task.headers INTERFACE webrtc_api_sequence_checker.headers webrtc_api_task_queue_task_queue.headers webrtc_api_units_time_delta.headers webrtc_api_units_timestamp.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_timeutils.headers webrtc_rtc_base_task_utils_pending_task_safety_flag.headers webrtc_rtc_base_task_utils_to_queued_task.headers webrtc_system_wrappers_system_wrappers.headers )
target_include_directories(webrtc_rtc_base_task_utils_repeating_task.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/task_utils:to_queued_task
add_library(webrtc_rtc_base_task_utils_to_queued_task INTERFACE)
target_link_libraries(webrtc_rtc_base_task_utils_to_queued_task INTERFACE webrtc_api_task_queue_task_queue webrtc_rtc_base_task_utils_pending_task_safety_flag )
target_include_directories(webrtc_rtc_base_task_utils_to_queued_task INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/task_utils:to_queued_task.headers
add_library(webrtc_rtc_base_task_utils_to_queued_task.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_task_utils_to_queued_task.headers INTERFACE webrtc_api_task_queue_task_queue.headers webrtc_rtc_base_task_utils_pending_task_safety_flag.headers )
target_include_directories(webrtc_rtc_base_task_utils_to_queued_task.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/third_party/base64
add_library(webrtc_rtc_base_third_party_base64_base64 ${WEBRTC_ROOT}/rtc_base/third_party/base64/base64.cc)
target_include_directories(webrtc_rtc_base_third_party_base64_base64 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_third_party_base64_base64 PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_third_party_base64_base64 PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_third_party_base64_base64 PUBLIC webrtc_rtc_base_system_rtc_export )

# rtc_base/third_party/base64:base64.headers
add_library(webrtc_rtc_base_third_party_base64_base64.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_third_party_base64_base64.headers INTERFACE webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_rtc_base_third_party_base64_base64.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/third_party/sigslot
add_library(webrtc_rtc_base_third_party_sigslot_sigslot ${WEBRTC_ROOT}/rtc_base/third_party/sigslot/sigslot.cc)
target_include_directories(webrtc_rtc_base_third_party_sigslot_sigslot PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_third_party_sigslot_sigslot PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_third_party_sigslot_sigslot PRIVATE -GR-)

# rtc_base/third_party/sigslot:sigslot.headers
add_library(webrtc_rtc_base_third_party_sigslot_sigslot.headers INTERFACE)
target_include_directories(webrtc_rtc_base_third_party_sigslot_sigslot.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:threading
add_library(webrtc_rtc_base_threading ${WEBRTC_ROOT}/rtc_base/async_resolver.cc ${WEBRTC_ROOT}/rtc_base/internal/default_socket_server.cc ${WEBRTC_ROOT}/rtc_base/message_handler.cc ${WEBRTC_ROOT}/rtc_base/network_monitor.cc ${WEBRTC_ROOT}/rtc_base/network_monitor_factory.cc ${WEBRTC_ROOT}/rtc_base/physical_socket_server.cc ${WEBRTC_ROOT}/rtc_base/thread.cc)
target_include_directories(webrtc_rtc_base_threading PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_threading PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_threading PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_threading PUBLIC webrtc_rtc_base_win32 absl::algorithm_container webrtc_api_function_view webrtc_api_refcountedbase webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_task_queue_task_queue webrtc_rtc_base_async_resolver_interface webrtc_rtc_base_atomicops webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_ip_address webrtc_rtc_base_logging webrtc_rtc_base_macromagic webrtc_rtc_base_network_constants webrtc_rtc_base_null_socket_server webrtc_rtc_base_platform_thread_types webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_event webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_socket_address webrtc_rtc_base_socket_server webrtc_rtc_base_timeutils webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_system_rtc_export webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_third_party_sigslot_sigslot )

# rtc_base:threading.headers
add_library(webrtc_rtc_base_threading.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_threading.headers INTERFACE webrtc_rtc_base_win32.headers webrtc_api_function_view.headers webrtc_api_refcountedbase.headers webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_api_task_queue_task_queue.headers webrtc_rtc_base_async_resolver_interface.headers webrtc_rtc_base_atomicops.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_criticalsection.headers webrtc_rtc_base_ip_address.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_network_constants.headers webrtc_rtc_base_null_socket_server.headers webrtc_rtc_base_platform_thread_types.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_rtc_event.headers webrtc_rtc_base_rtc_task_queue.headers webrtc_rtc_base_socket_address.headers webrtc_rtc_base_socket_server.headers webrtc_rtc_base_timeutils.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_no_unique_address.headers webrtc_rtc_base_system_rtc_export.headers webrtc_rtc_base_task_utils_pending_task_safety_flag.headers webrtc_rtc_base_task_utils_to_queued_task.headers webrtc_rtc_base_third_party_sigslot_sigslot.headers )
target_include_directories(webrtc_rtc_base_threading.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/time:timestamp_extrapolator
add_library(webrtc_rtc_base_time_timestamp_extrapolator ${WEBRTC_ROOT}/rtc_base/time/timestamp_extrapolator.cc)
target_include_directories(webrtc_rtc_base_time_timestamp_extrapolator PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_time_timestamp_extrapolator PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_time_timestamp_extrapolator PRIVATE -GR-)

# rtc_base:timeutils
add_library(webrtc_rtc_base_timeutils ${WEBRTC_ROOT}/rtc_base/system_time.cc ${WEBRTC_ROOT}/rtc_base/time_utils.cc)
target_include_directories(webrtc_rtc_base_timeutils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_timeutils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_timeutils PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_timeutils PUBLIC webrtc_rtc_base_checks webrtc_rtc_base_safe_conversions webrtc_rtc_base_stringutils webrtc_rtc_base_system_rtc_export winmm::winmm)

# rtc_base:timeutils.headers
add_library(webrtc_rtc_base_timeutils.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_timeutils.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_conversions.headers webrtc_rtc_base_stringutils.headers webrtc_rtc_base_system_rtc_export.headers )
target_include_directories(webrtc_rtc_base_timeutils.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:type_traits
add_library(webrtc_rtc_base_type_traits INTERFACE)
target_include_directories(webrtc_rtc_base_type_traits INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:type_traits.headers
add_library(webrtc_rtc_base_type_traits.headers INTERFACE)
target_include_directories(webrtc_rtc_base_type_traits.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/units:unit_base
add_library(webrtc_rtc_base_units_unit_base INTERFACE)
target_link_libraries(webrtc_rtc_base_units_unit_base INTERFACE webrtc_rtc_base_checks webrtc_rtc_base_safe_conversions )
target_include_directories(webrtc_rtc_base_units_unit_base INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base/units:unit_base.headers
add_library(webrtc_rtc_base_units_unit_base.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_units_unit_base.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_safe_conversions.headers )
target_include_directories(webrtc_rtc_base_units_unit_base.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:untyped_function
add_library(webrtc_rtc_base_untyped_function INTERFACE)
target_link_libraries(webrtc_rtc_base_untyped_function INTERFACE webrtc_rtc_base_system_assume )
target_include_directories(webrtc_rtc_base_untyped_function INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:untyped_function.headers
add_library(webrtc_rtc_base_untyped_function.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_untyped_function.headers INTERFACE webrtc_rtc_base_system_assume.headers )
target_include_directories(webrtc_rtc_base_untyped_function.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:weak_ptr
add_library(webrtc_rtc_base_weak_ptr ${WEBRTC_ROOT}/rtc_base/weak_ptr.cc)
target_include_directories(webrtc_rtc_base_weak_ptr PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_weak_ptr PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_rtc_base_weak_ptr PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_weak_ptr PUBLIC webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_rtc_base_refcount webrtc_rtc_base_system_no_unique_address )

# rtc_base:weak_ptr.headers
add_library(webrtc_rtc_base_weak_ptr.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_weak_ptr.headers INTERFACE webrtc_api_scoped_refptr.headers webrtc_api_sequence_checker.headers webrtc_rtc_base_refcount.headers webrtc_rtc_base_system_no_unique_address.headers )
target_include_directories(webrtc_rtc_base_weak_ptr.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# rtc_base:win32
add_library(webrtc_rtc_base_win32 ${WEBRTC_ROOT}/rtc_base/win32.cc ${WEBRTC_ROOT}/rtc_base/win32_window.cc)
target_include_directories(webrtc_rtc_base_win32 PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_rtc_base_win32 PRIVATE RTC_ENABLE_VP9 WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_WIN _CRT_NONSTDC_NO_DEPRECATE)
target_compile_options(webrtc_rtc_base_win32 PRIVATE -GR-)
target_link_libraries(webrtc_rtc_base_win32 PUBLIC webrtc_rtc_base_checks webrtc_rtc_base_macromagic webrtc_rtc_base_rtc_base_approved crypt32::crypt32 iphlpapi::iphlpapi secur32::secur32)

# rtc_base:win32.headers
add_library(webrtc_rtc_base_win32.headers INTERFACE)
target_link_libraries(webrtc_rtc_base_win32.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_macromagic.headers webrtc_rtc_base_rtc_base_approved.headers )
target_include_directories(webrtc_rtc_base_win32.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# stats:rtc_stats
add_library(webrtc_stats_rtc_stats ${WEBRTC_ROOT}/stats/rtc_stats.cc ${WEBRTC_ROOT}/stats/rtc_stats_report.cc ${WEBRTC_ROOT}/stats/rtcstats_objects.cc)
target_include_directories(webrtc_stats_rtc_stats PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_stats_rtc_stats PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_stats_rtc_stats PRIVATE -GR-)
target_link_libraries(webrtc_stats_rtc_stats PUBLIC webrtc_api_rtc_stats_api webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved )

# stats
add_library(webrtc_stats_stats INTERFACE)
target_link_libraries(webrtc_stats_stats INTERFACE webrtc_stats_rtc_stats )
target_include_directories(webrtc_stats_stats INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# system_wrappers:field_trial
add_library(webrtc_system_wrappers_field_trial ${WEBRTC_ROOT}/system_wrappers/source/field_trial.cc)
target_include_directories(webrtc_system_wrappers_field_trial PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_system_wrappers_field_trial PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_system_wrappers_field_trial PRIVATE -GR-)
target_link_libraries(webrtc_system_wrappers_field_trial PUBLIC absl::strings webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_stringutils )

# system_wrappers:field_trial.headers
add_library(webrtc_system_wrappers_field_trial.headers INTERFACE)
target_link_libraries(webrtc_system_wrappers_field_trial.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_logging.headers webrtc_rtc_base_stringutils.headers )
target_include_directories(webrtc_system_wrappers_field_trial.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# system_wrappers:metrics
add_library(webrtc_system_wrappers_metrics ${WEBRTC_ROOT}/system_wrappers/source/metrics.cc)
target_include_directories(webrtc_system_wrappers_metrics PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_system_wrappers_metrics PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_system_wrappers_metrics PRIVATE -GR-)
target_link_libraries(webrtc_system_wrappers_metrics PUBLIC webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_synchronization_mutex )

# system_wrappers:metrics.headers
add_library(webrtc_system_wrappers_metrics.headers INTERFACE)
target_link_libraries(webrtc_system_wrappers_metrics.headers INTERFACE webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_synchronization_mutex.headers )
target_include_directories(webrtc_system_wrappers_metrics.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# system_wrappers
add_library(webrtc_system_wrappers_system_wrappers ${WEBRTC_ROOT}/system_wrappers/source/clock.cc ${WEBRTC_ROOT}/system_wrappers/source/cpu_features.cc ${WEBRTC_ROOT}/system_wrappers/source/cpu_info.cc ${WEBRTC_ROOT}/system_wrappers/source/rtp_to_ntp_estimator.cc ${WEBRTC_ROOT}/system_wrappers/source/sleep.cc)
target_include_directories(webrtc_system_wrappers_system_wrappers PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_system_wrappers_system_wrappers PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_system_wrappers_system_wrappers PRIVATE -GR-)
target_link_libraries(webrtc_system_wrappers_system_wrappers PUBLIC webrtc_rtc_base_win32 absl::optional webrtc_api_array_view webrtc_api_units_timestamp webrtc_modules_module_api_public webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_arch webrtc_rtc_base_system_rtc_export webrtc_system_wrappers_field_trial winmm::winmm)

# system_wrappers:system_wrappers.headers
add_library(webrtc_system_wrappers_system_wrappers.headers INTERFACE)
target_link_libraries(webrtc_system_wrappers_system_wrappers.headers INTERFACE webrtc_rtc_base_win32.headers webrtc_api_array_view.headers webrtc_api_units_timestamp.headers webrtc_modules_module_api_public.headers webrtc_rtc_base_checks.headers webrtc_rtc_base_rtc_base_approved.headers webrtc_rtc_base_rtc_numerics.headers webrtc_rtc_base_synchronization_mutex.headers webrtc_rtc_base_system_arch.headers webrtc_rtc_base_system_rtc_export.headers webrtc_system_wrappers_field_trial.headers )
target_include_directories(webrtc_system_wrappers_system_wrappers.headers INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# test:audio_codec_mocks
add_library(webrtc_test_audio_codec_mocks ${WEBRTC_ROOT}/test/mock_audio_decoder.cc ${WEBRTC_ROOT}/test/mock_audio_encoder.cc)
target_include_directories(webrtc_test_audio_codec_mocks PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_audio_codec_mocks PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_test_audio_codec_mocks PRIVATE -GR-)
target_link_libraries(webrtc_test_audio_codec_mocks PUBLIC absl::memory webrtc_api_array_view webrtc_api_scoped_refptr webrtc_api_audio_codecs_audio_codecs_api webrtc_api_audio_codecs_builtin_audio_decoder_factory webrtc_rtc_base_checks webrtc_rtc_base_refcount webrtc_test_test_support )

# test:direct_transport
add_library(webrtc_test_direct_transport ${WEBRTC_ROOT}/test/direct_transport.cc)
target_include_directories(webrtc_test_direct_transport PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_direct_transport PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_direct_transport PRIVATE -GR-)
target_link_libraries(webrtc_test_direct_transport PUBLIC absl::memory webrtc_api_sequence_checker webrtc_api_simulated_network_api webrtc_api_transport_api webrtc_api_task_queue_task_queue webrtc_api_units_time_delta webrtc_call_call_interfaces webrtc_call_fake_network webrtc_call_simulated_packet_receiver webrtc_rtc_base_macromagic webrtc_rtc_base_timeutils webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_repeating_task webrtc_test_rtp_test_utils )

# test:encoder_settings
add_library(webrtc_test_encoder_settings ${WEBRTC_ROOT}/test/encoder_settings.cc)
target_include_directories(webrtc_test_encoder_settings PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_encoder_settings PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_encoder_settings PRIVATE -GR-)
target_link_libraries(webrtc_test_encoder_settings PUBLIC webrtc_api_scoped_refptr webrtc_api_video_codecs_video_codecs_api webrtc_call_rtp_interfaces webrtc_call_video_stream_api webrtc_rtc_base_checks webrtc_rtc_base_refcount )

# test:fake_video_codecs
add_library(webrtc_test_fake_video_codecs ${WEBRTC_ROOT}/test/configurable_frame_size_encoder.cc ${WEBRTC_ROOT}/test/fake_decoder.cc ${WEBRTC_ROOT}/test/fake_encoder.cc ${WEBRTC_ROOT}/test/fake_vp8_decoder.cc ${WEBRTC_ROOT}/test/fake_vp8_encoder.cc)
target_include_directories(webrtc_test_fake_video_codecs PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_fake_video_codecs PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_fake_video_codecs PRIVATE -GR-)
target_link_libraries(webrtc_test_fake_video_codecs PUBLIC absl::optional webrtc_api_fec_controller_api webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_task_queue_task_queue webrtc_api_video_encoded_image webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_api_video_codecs_vp8_temporal_layers_factory webrtc_modules_video_coding_codec_globals_headers webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_macromagic webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_timeutils webrtc_rtc_base_synchronization_mutex webrtc_system_wrappers_system_wrappers )

# test:field_trial
add_library(webrtc_test_field_trial ${WEBRTC_ROOT}/test/field_trial.cc)
target_include_directories(webrtc_test_field_trial PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_field_trial PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_field_trial PRIVATE -GR-)
target_link_libraries(webrtc_test_field_trial PUBLIC webrtc_system_wrappers_field_trial )

# test:fileutils
add_library(webrtc_test_fileutils ${WEBRTC_ROOT}/test/testsupport/file_utils.cc)
target_include_directories(webrtc_test_fileutils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_fileutils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_fileutils PRIVATE -GR-)
target_link_libraries(webrtc_test_fileutils PUBLIC webrtc_rtc_base_win32 absl::optional webrtc_rtc_base_checks webrtc_rtc_base_stringutils webrtc_test_fileutils_override_api emulator_test_overrides )

# test:fileutils_override_api
add_library(webrtc_test_fileutils_override_api INTERFACE)
target_include_directories(webrtc_test_fileutils_override_api INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# test:frame_generator_impl
add_library(webrtc_test_frame_generator_impl ${WEBRTC_ROOT}/test/frame_generator.cc ${WEBRTC_ROOT}/test/testsupport/ivf_video_frame_generator.cc)
target_include_directories(webrtc_test_frame_generator_impl PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_frame_generator_impl PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_frame_generator_impl PRIVATE -GR-)
target_link_libraries(webrtc_test_frame_generator_impl PUBLIC absl::optional webrtc_api_frame_generator_api webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_video_encoded_image webrtc_api_video_video_frame webrtc_api_video_video_frame_i010 webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_media_rtc_media_base webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_modules_video_coding_webrtc_h264 webrtc_modules_video_coding_webrtc_vp8 webrtc_modules_video_coding_webrtc_vp9 webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_event webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_file_wrapper webrtc_system_wrappers_system_wrappers webrtc_test_frame_utils )

# test:frame_utils
add_library(webrtc_test_frame_utils ${WEBRTC_ROOT}/test/frame_utils.cc)
target_include_directories(webrtc_test_frame_utils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_frame_utils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_frame_utils PRIVATE -GR-)
target_link_libraries(webrtc_test_frame_utils PUBLIC webrtc_api_scoped_refptr webrtc_api_video_video_frame )

# test/logging:log_writer
add_library(webrtc_test_logging_log_writer ${WEBRTC_ROOT}/test/logging/file_log_writer.cc ${WEBRTC_ROOT}/test/logging/log_writer.cc ${WEBRTC_ROOT}/test/logging/memory_log_writer.cc)
target_include_directories(webrtc_test_logging_log_writer PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_logging_log_writer PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_logging_log_writer PRIVATE -GR-)
target_link_libraries(webrtc_test_logging_log_writer PUBLIC absl::optional webrtc_api_libjingle_logging_api webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_stringutils webrtc_test_fileutils )

# test:mock_transport
add_library(webrtc_test_mock_transport ${WEBRTC_ROOT}/test/mock_transport.cc)
target_include_directories(webrtc_test_mock_transport PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_mock_transport PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_test_mock_transport PRIVATE -GR-)
target_link_libraries(webrtc_test_mock_transport PUBLIC webrtc_api_transport_api webrtc_test_test_support )

# test/network:emulated_network
add_library(webrtc_test_network_emulated_network ${WEBRTC_ROOT}/test/network/cross_traffic.cc ${WEBRTC_ROOT}/test/network/emulated_network_manager.cc ${WEBRTC_ROOT}/test/network/emulated_turn_server.cc ${WEBRTC_ROOT}/test/network/fake_network_socket_server.cc ${WEBRTC_ROOT}/test/network/network_emulation.cc ${WEBRTC_ROOT}/test/network/network_emulation_manager.cc ${WEBRTC_ROOT}/test/network/traffic_route.cc)
target_include_directories(webrtc_test_network_emulated_network PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_network_emulated_network PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_network_emulated_network PRIVATE -GR-)
target_link_libraries(webrtc_test_network_emulated_network PUBLIC absl::algorithm_container absl::memory absl::optional webrtc_api_array_view webrtc_api_network_emulation_manager_api webrtc_api_packet_socket_factory webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_simulated_network_api webrtc_api_time_controller webrtc_api_numerics_numerics webrtc_api_test_network_emulation_network_emulation webrtc_api_transport_stun_types webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_call_simulated_network webrtc_p2p_p2p_server_utils webrtc_rtc_base_rtc_base webrtc_rtc_base_async_socket webrtc_rtc_base_ip_address webrtc_rtc_base_network_constants webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_safe_minmax webrtc_rtc_base_socket_address webrtc_rtc_base_socket_server webrtc_rtc_base_stringutils webrtc_rtc_base_task_queue_for_test webrtc_rtc_base_threading webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_repeating_task webrtc_rtc_base_task_utils_to_queued_task webrtc_system_wrappers_system_wrappers webrtc_test_scenario_column_printer webrtc_test_time_controller_time_controller )

# test/pc/sctp:fake_sctp_transport
add_library(webrtc_test_pc_sctp_fake_sctp_transport INTERFACE)
target_link_libraries(webrtc_test_pc_sctp_fake_sctp_transport INTERFACE webrtc_media_rtc_data_sctp_transport_internal )
target_include_directories(webrtc_test_pc_sctp_fake_sctp_transport INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# test/peer_scenario
add_library(webrtc_test_peer_scenario_peer_scenario ${WEBRTC_ROOT}/test/peer_scenario/peer_scenario.cc ${WEBRTC_ROOT}/test/peer_scenario/peer_scenario_client.cc ${WEBRTC_ROOT}/test/peer_scenario/scenario_connection.cc ${WEBRTC_ROOT}/test/peer_scenario/sdp_callbacks.cc ${WEBRTC_ROOT}/test/peer_scenario/signaling_route.cc)
target_include_directories(webrtc_test_peer_scenario_peer_scenario PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_peer_scenario_peer_scenario PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN HAVE_WEBRTC_VIDEO WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_test_peer_scenario_peer_scenario PRIVATE -GR-)
target_link_libraries(webrtc_test_peer_scenario_peer_scenario PUBLIC absl::flags absl::memory webrtc_api_create_time_controller webrtc_api_libjingle_peerconnection_api webrtc_api_network_emulation_manager_api webrtc_api_rtc_stats_api webrtc_api_time_controller webrtc_api_audio_codecs_builtin_audio_decoder_factory webrtc_api_audio_codecs_builtin_audio_encoder_factory webrtc_api_rtc_event_log_rtc_event_log_factory webrtc_api_task_queue_default_task_queue_factory webrtc_api_transport_field_trial_based_config webrtc_api_video_codecs_builtin_video_decoder_factory webrtc_api_video_codecs_builtin_video_encoder_factory webrtc_media_rtc_audio_video webrtc_media_rtc_media_base webrtc_modules_audio_device_audio_device_impl webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_p2p_rtc_p2p webrtc_pc_pc_test_utils webrtc_pc_rtc_pc_base webrtc_pc_session_description webrtc_rtc_base_rtc_base webrtc_rtc_base_null_socket_server webrtc_rtc_base_stringutils webrtc_test_fake_video_codecs webrtc_test_fileutils webrtc_test_test_support webrtc_test_video_test_common webrtc_test_logging_log_writer webrtc_test_network_emulated_network webrtc_test_scenario_scenario webrtc_test_time_controller_time_controller )

# test:perf_test
add_library(webrtc_test_perf_test ${WEBRTC_ROOT}/test/testsupport/perf_result_reporter.cc ${WEBRTC_ROOT}/test/testsupport/perf_test.cc ${WEBRTC_ROOT}/test/testsupport/perf_test_histogram_writer.cc)
target_include_directories(webrtc_test_perf_test PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_perf_test PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_perf_test PRIVATE -GR-)
target_link_libraries(webrtc_test_perf_test PUBLIC absl::strings absl::optional webrtc_catapult_histogram webrtc_catapult_reserved_infos webrtc_api_array_view webrtc_api_numerics_numerics webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_logging webrtc_rtc_base_rtc_numerics webrtc_rtc_base_stringutils webrtc_rtc_base_synchronization_mutex webrtc_test_fileutils )

# test:resources_dir_flag
add_library(webrtc_test_resources_dir_flag ${WEBRTC_ROOT}/test/testsupport/resources_dir_flag.cc)
target_include_directories(webrtc_test_resources_dir_flag PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_resources_dir_flag PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_resources_dir_flag PRIVATE -GR-)
target_link_libraries(webrtc_test_resources_dir_flag PUBLIC absl::flags )

# test:rtc_expect_death
add_library(webrtc_test_rtc_expect_death INTERFACE)
target_link_libraries(webrtc_test_rtc_expect_death INTERFACE webrtc_test_test_support )
target_include_directories(webrtc_test_rtc_expect_death INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# test:rtp_test_utils
add_library(webrtc_test_rtp_test_utils ${WEBRTC_ROOT}/test/rtcp_packet_parser.cc ${WEBRTC_ROOT}/test/rtp_file_reader.cc ${WEBRTC_ROOT}/test/rtp_file_writer.cc ${WEBRTC_ROOT}/test/rtp_header_parser.cc)
target_include_directories(webrtc_test_rtp_test_utils PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_rtp_test_utils PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_rtp_test_utils PRIVATE -GR-)
target_link_libraries(webrtc_test_rtp_test_utils PUBLIC absl::optional webrtc_api_array_view webrtc_api_rtp_parameters webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_logging webrtc_rtc_base_macromagic webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_arch )

# test/scenario:column_printer
add_library(webrtc_test_scenario_column_printer ${WEBRTC_ROOT}/test/scenario/column_printer.cc)
target_include_directories(webrtc_test_scenario_column_printer PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_scenario_column_printer PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_scenario_column_printer PRIVATE -GR-)
target_link_libraries(webrtc_test_scenario_column_printer PUBLIC webrtc_rtc_base_macromagic webrtc_rtc_base_stringutils webrtc_test_logging_log_writer )

# test/scenario
add_library(webrtc_test_scenario_scenario ${WEBRTC_ROOT}/test/scenario/audio_stream.cc ${WEBRTC_ROOT}/test/scenario/call_client.cc ${WEBRTC_ROOT}/test/scenario/hardware_codecs.cc ${WEBRTC_ROOT}/test/scenario/network_node.cc ${WEBRTC_ROOT}/test/scenario/performance_stats.cc ${WEBRTC_ROOT}/test/scenario/scenario.cc ${WEBRTC_ROOT}/test/scenario/scenario_config.cc ${WEBRTC_ROOT}/test/scenario/stats_collection.cc ${WEBRTC_ROOT}/test/scenario/video_frame_matcher.cc ${WEBRTC_ROOT}/test/scenario/video_stream.cc)
target_include_directories(webrtc_test_scenario_scenario PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_scenario_scenario PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN HAVE_WEBRTC_VIDEO WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_test_scenario_scenario PRIVATE -GR-)
target_link_libraries(webrtc_test_scenario_scenario PUBLIC absl::flags absl::flags_parse absl::memory absl::strings absl::optional webrtc_api_create_frame_generator webrtc_api_fec_controller_api webrtc_api_frame_generator_api webrtc_api_libjingle_peerconnection_api webrtc_api_rtc_event_log_output_file webrtc_api_rtp_parameters webrtc_api_sequence_checker webrtc_api_time_controller webrtc_api_transport_api webrtc_api_audio_codecs_builtin_audio_decoder_factory webrtc_api_audio_codecs_builtin_audio_encoder_factory webrtc_api_rtc_event_log_rtc_event_log webrtc_api_rtc_event_log_rtc_event_log_factory webrtc_api_test_video_function_video_factory webrtc_api_transport_network_control webrtc_api_units_data_rate webrtc_api_units_data_size webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_audio_audio webrtc_call_call webrtc_call_call_interfaces webrtc_call_rtp_sender webrtc_call_simulated_network webrtc_call_video_stream_api webrtc_common_video_common_video webrtc_media_rtc_audio_video webrtc_media_rtc_internal_video_codecs webrtc_media_rtc_media_base webrtc_modules_audio_coding_ana_config_proto webrtc_modules_audio_device_audio_device webrtc_modules_audio_device_audio_device_impl webrtc_modules_audio_device_mock_audio_device webrtc_modules_audio_mixer_audio_mixer_impl webrtc_modules_audio_processing_audio_processing webrtc_modules_congestion_controller_goog_cc_test_goog_cc_printer webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_mock_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_modules_video_coding_webrtc_h264 webrtc_modules_video_coding_webrtc_multiplex webrtc_modules_video_coding_webrtc_vp8 webrtc_modules_video_coding_webrtc_vp9 webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_rtc_numerics webrtc_rtc_base_rtc_stats_counters webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_safe_minmax webrtc_rtc_base_socket_address webrtc_rtc_base_task_queue_for_test webrtc_rtc_base_threading webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_repeating_task webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_test_fake_video_codecs webrtc_test_fileutils webrtc_test_rtp_test_utils webrtc_test_test_common webrtc_test_test_support webrtc_test_video_test_common webrtc_test_logging_log_writer webrtc_test_network_emulated_network webrtc_test_scenario_column_printer webrtc_test_time_controller_time_controller webrtc_video_video )

# test:test_common
add_library(webrtc_test_test_common ${WEBRTC_ROOT}/test/call_test.cc ${WEBRTC_ROOT}/test/drifting_clock.cc ${WEBRTC_ROOT}/test/layer_filtering_transport.cc ${WEBRTC_ROOT}/test/run_loop.cc)
target_include_directories(webrtc_test_test_common PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_test_common PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_test_test_common PRIVATE -GR-)
target_link_libraries(webrtc_test_test_common PUBLIC webrtc_modules_video_capture_video_capture_internal_impl absl::optional webrtc_api_create_frame_generator webrtc_api_frame_generator_api webrtc_api_rtp_headers webrtc_api_rtp_parameters webrtc_api_simulated_network_api webrtc_api_transport_api webrtc_api_audio_codecs_builtin_audio_decoder_factory webrtc_api_audio_codecs_builtin_audio_encoder_factory webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_api_task_queue_default_task_queue_factory webrtc_api_test_video_function_video_factory webrtc_api_transport_field_trial_based_config webrtc_api_video_builtin_video_bitrate_allocator_factory webrtc_api_video_video_bitrate_allocator_factory webrtc_api_video_video_frame webrtc_api_video_codecs_video_codecs_api webrtc_call_call_interfaces webrtc_call_fake_network webrtc_call_simulated_network webrtc_call_simulated_packet_receiver webrtc_call_video_stream_api webrtc_modules_audio_device_audio_device_impl webrtc_modules_audio_mixer_audio_mixer_impl webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_rtp_rtcp_rtp_video_header webrtc_modules_video_coding_codec_globals_headers webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_rtc_event webrtc_rtc_base_task_queue_for_test webrtc_rtc_base_threading webrtc_rtc_base_task_utils_to_queued_task webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_test_direct_transport webrtc_test_encoder_settings webrtc_test_fake_video_codecs webrtc_test_fileutils webrtc_test_mock_transport webrtc_test_rtp_test_utils webrtc_test_test_support webrtc_test_video_test_common )

# test:test_main
add_library(webrtc_test_test_main ${WEBRTC_ROOT}/test/test_main.cc)
target_include_directories(webrtc_test_test_main PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_test_main PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_test_test_main PRIVATE -GR-)
target_link_libraries(webrtc_test_test_main PUBLIC absl::failure_signal_handler absl::debugging absl::flags_parse webrtc_test_test_main_lib webrtc_test_test_support )

# test:test_main_lib
add_library(webrtc_test_test_main_lib ${WEBRTC_ROOT}/test/test_main_lib.cc)
target_include_directories(webrtc_test_test_main_lib PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_test_main_lib PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1 WEBRTC_UNIT_TEST)
target_compile_options(webrtc_test_test_main_lib PRIVATE -GR-)
target_link_libraries(webrtc_test_test_main_lib PUBLIC absl::flags absl::memory absl::strings absl::optional webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_threading webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics webrtc_test_field_trial webrtc_test_perf_test webrtc_test_resources_dir_flag webrtc_test_test_support )

# test:test_support
add_library(webrtc_test_test_support INTERFACE)
target_link_libraries(webrtc_test_test_support INTERFACE gmock gtest webrtc_rtc_base_ignore_wundef )
target_include_directories(webrtc_test_test_support INTERFACE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})

# test/time_controller
add_library(webrtc_test_time_controller_time_controller ${WEBRTC_ROOT}/test/time_controller/external_time_controller.cc ${WEBRTC_ROOT}/test/time_controller/real_time_controller.cc ${WEBRTC_ROOT}/test/time_controller/simulated_process_thread.cc ${WEBRTC_ROOT}/test/time_controller/simulated_task_queue.cc ${WEBRTC_ROOT}/test/time_controller/simulated_thread.cc ${WEBRTC_ROOT}/test/time_controller/simulated_time_controller.cc)
target_include_directories(webrtc_test_time_controller_time_controller PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_time_controller_time_controller PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_time_controller_time_controller PRIVATE -GR-)
target_link_libraries(webrtc_test_time_controller_time_controller PUBLIC absl::strings webrtc_api_sequence_checker webrtc_api_time_controller webrtc_api_task_queue_task_queue webrtc_api_task_queue_default_task_queue_factory webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_modules_module_api webrtc_modules_utility_utility webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_null_socket_server webrtc_rtc_base_rtc_base_tests_utils webrtc_rtc_base_rtc_event webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_synchronization_yield_policy webrtc_rtc_base_task_utils_to_queued_task webrtc_system_wrappers_system_wrappers )

# test:video_test_common
add_library(webrtc_test_video_test_common ${WEBRTC_ROOT}/test/fake_texture_frame.cc ${WEBRTC_ROOT}/test/frame_forwarder.cc ${WEBRTC_ROOT}/test/frame_generator_capturer.cc ${WEBRTC_ROOT}/test/mappable_native_buffer.cc ${WEBRTC_ROOT}/test/test_video_capturer.cc)
target_include_directories(webrtc_test_video_test_common PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_test_video_test_common PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_test_video_test_common PRIVATE -GR-)
target_link_libraries(webrtc_test_video_test_common PUBLIC absl::algorithm_container absl::strings webrtc_api_array_view webrtc_api_create_frame_generator webrtc_api_frame_generator_api webrtc_api_scoped_refptr webrtc_api_task_queue_task_queue webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_codecs_video_codecs_api webrtc_common_video_common_video webrtc_media_rtc_media_base webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_logging webrtc_rtc_base_refcount webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_timeutils webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_task_utils_repeating_task webrtc_system_wrappers_system_wrappers webrtc_test_fileutils webrtc_test_frame_utils )

# video/adaptation:video_adaptation
add_library(webrtc_video_adaptation_video_adaptation ${WEBRTC_ROOT}/video/adaptation/balanced_constraint.cc ${WEBRTC_ROOT}/video/adaptation/bitrate_constraint.cc ${WEBRTC_ROOT}/video/adaptation/encode_usage_resource.cc ${WEBRTC_ROOT}/video/adaptation/overuse_frame_detector.cc ${WEBRTC_ROOT}/video/adaptation/pixel_limit_resource.cc ${WEBRTC_ROOT}/video/adaptation/quality_rampup_experiment_helper.cc ${WEBRTC_ROOT}/video/adaptation/quality_scaler_resource.cc ${WEBRTC_ROOT}/video/adaptation/video_stream_encoder_resource.cc ${WEBRTC_ROOT}/video/adaptation/video_stream_encoder_resource_manager.cc)
target_include_directories(webrtc_video_adaptation_video_adaptation PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_video_adaptation_video_adaptation PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_video_adaptation_video_adaptation PRIVATE -GR-)
target_link_libraries(webrtc_video_adaptation_video_adaptation PUBLIC absl::algorithm_container absl::core_headers absl::optional webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_adaptation_resource_adaptation_api webrtc_api_task_queue_task_queue webrtc_api_units_data_rate webrtc_api_units_time_delta webrtc_api_video_video_adaptation webrtc_api_video_video_frame webrtc_api_video_video_stream_encoder webrtc_api_video_codecs_video_codecs_api webrtc_call_adaptation_resource_adaptation webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_checks webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_event webrtc_rtc_base_rtc_numerics webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_timeutils webrtc_rtc_base_experiments_balanced_degradation_settings webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_experiments_quality_rampup_experiment webrtc_rtc_base_experiments_quality_scaler_settings webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_task_utils_repeating_task webrtc_rtc_base_task_utils_to_queued_task webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial )

# video:frame_dumping_decoder
add_library(webrtc_video_frame_dumping_decoder ${WEBRTC_ROOT}/video/frame_dumping_decoder.cc)
target_include_directories(webrtc_video_frame_dumping_decoder PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_video_frame_dumping_decoder PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_video_frame_dumping_decoder PRIVATE -GR-)
target_link_libraries(webrtc_video_frame_dumping_decoder PUBLIC webrtc_api_video_encoded_frame webrtc_api_video_encoded_image webrtc_api_video_codecs_video_codecs_api webrtc_modules_video_coding_video_coding webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_system_file_wrapper )

# video
add_library(webrtc_video_video ${WEBRTC_ROOT}/video/buffered_frame_decryptor.cc ${WEBRTC_ROOT}/video/call_stats2.cc ${WEBRTC_ROOT}/video/encoder_rtcp_feedback.cc ${WEBRTC_ROOT}/video/quality_limitation_reason_tracker.cc ${WEBRTC_ROOT}/video/quality_threshold.cc ${WEBRTC_ROOT}/video/receive_statistics_proxy2.cc ${WEBRTC_ROOT}/video/report_block_stats.cc ${WEBRTC_ROOT}/video/rtp_streams_synchronizer2.cc ${WEBRTC_ROOT}/video/rtp_video_stream_receiver2.cc ${WEBRTC_ROOT}/video/rtp_video_stream_receiver_frame_transformer_delegate.cc ${WEBRTC_ROOT}/video/send_delay_stats.cc ${WEBRTC_ROOT}/video/send_statistics_proxy.cc ${WEBRTC_ROOT}/video/stats_counter.cc ${WEBRTC_ROOT}/video/stream_synchronization.cc ${WEBRTC_ROOT}/video/transport_adapter.cc ${WEBRTC_ROOT}/video/video_quality_observer2.cc ${WEBRTC_ROOT}/video/video_receive_stream2.cc ${WEBRTC_ROOT}/video/video_send_stream.cc ${WEBRTC_ROOT}/video/video_send_stream_impl.cc ${WEBRTC_ROOT}/video/video_stream_decoder2.cc)
target_include_directories(webrtc_video_video PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_video_video PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_video_video PRIVATE -GR-)
target_link_libraries(webrtc_video_video PUBLIC absl::algorithm_container absl::core_headers absl::memory absl::strings absl::optional webrtc_api_array_view webrtc_api_fec_controller_api webrtc_api_frame_transformer_interface webrtc_api_libjingle_peerconnection_api webrtc_api_rtp_parameters webrtc_api_scoped_refptr webrtc_api_sequence_checker webrtc_api_transport_api webrtc_api_crypto_frame_decryptor_interface webrtc_api_crypto_options webrtc_api_rtc_event_log_rtc_event_log webrtc_api_task_queue_task_queue webrtc_api_units_time_delta webrtc_api_units_timestamp webrtc_api_video_encoded_image webrtc_api_video_recordable_encoded_frame webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_video_rtp_headers webrtc_api_video_video_stream_encoder webrtc_api_video_codecs_video_codecs_api webrtc_call_bitrate_allocator webrtc_call_call_interfaces webrtc_call_rtp_interfaces webrtc_call_rtp_receiver webrtc_call_rtp_sender webrtc_call_video_stream_api webrtc_common_video_common_video webrtc_media_rtc_media_base webrtc_modules_module_api webrtc_modules_module_api_public webrtc_modules_pacing_pacing webrtc_modules_remote_bitrate_estimator_remote_bitrate_estimator webrtc_modules_rtp_rtcp_rtp_rtcp webrtc_modules_rtp_rtcp_rtp_rtcp_format webrtc_modules_rtp_rtcp_rtp_video_header webrtc_modules_utility_utility webrtc_modules_video_coding_video_coding webrtc_modules_video_coding_codec_globals_headers webrtc_modules_video_coding_nack_module webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_modules_video_processing_video_processing webrtc_rtc_base_rtc_base webrtc_rtc_base_checks webrtc_rtc_base_rate_limiter webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_numerics webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_stringutils webrtc_rtc_base_threading webrtc_rtc_base_weak_ptr webrtc_rtc_base_experiments_alr_experiment webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_experiments_keyframe_interval_settings_experiment webrtc_rtc_base_experiments_min_video_bitrate_experiment webrtc_rtc_base_experiments_quality_scaling_experiment webrtc_rtc_base_experiments_rate_control_settings webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_system_thread_registry webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_repeating_task webrtc_rtc_base_task_utils_to_queued_task webrtc_rtc_base_time_timestamp_extrapolator webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_system_wrappers_metrics webrtc_video_frame_dumping_decoder webrtc_video_video_stream_encoder_impl webrtc_video_adaptation_video_adaptation )

# video:video_stream_encoder_impl
add_library(webrtc_video_video_stream_encoder_impl ${WEBRTC_ROOT}/video/alignment_adjuster.cc ${WEBRTC_ROOT}/video/encoder_bitrate_adjuster.cc ${WEBRTC_ROOT}/video/encoder_overshoot_detector.cc ${WEBRTC_ROOT}/video/frame_encode_metadata_writer.cc ${WEBRTC_ROOT}/video/video_source_sink_controller.cc ${WEBRTC_ROOT}/video/video_stream_encoder.cc)
target_include_directories(webrtc_video_video_stream_encoder_impl PRIVATE ${WEBRTC_ROOT} ${CMAKE_CURRENT_BINARY_DIR})
target_compile_definitions(webrtc_video_video_stream_encoder_impl PRIVATE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1)
target_compile_options(webrtc_video_video_stream_encoder_impl PRIVATE -GR-)
target_link_libraries(webrtc_video_video_stream_encoder_impl PUBLIC absl::algorithm_container absl::core_headers absl::optional webrtc_api_rtp_parameters webrtc_api_sequence_checker webrtc_api_adaptation_resource_adaptation_api webrtc_api_task_queue_task_queue webrtc_api_units_data_rate webrtc_api_video_encoded_image webrtc_api_video_video_adaptation webrtc_api_video_video_bitrate_allocation webrtc_api_video_video_bitrate_allocator webrtc_api_video_video_bitrate_allocator_factory webrtc_api_video_video_codec_constants webrtc_api_video_video_frame webrtc_api_video_video_layers_allocation webrtc_api_video_video_rtp_headers webrtc_api_video_video_stream_encoder webrtc_api_video_codecs_video_codecs_api webrtc_call_adaptation_resource_adaptation webrtc_common_video_common_video webrtc_modules_module_api_public webrtc_modules_video_coding_video_coding webrtc_modules_video_coding_video_codec_interface webrtc_modules_video_coding_video_coding_utility webrtc_modules_video_coding_webrtc_vp9_helpers webrtc_rtc_base_checks webrtc_rtc_base_criticalsection webrtc_rtc_base_logging webrtc_rtc_base_rtc_base_approved webrtc_rtc_base_rtc_event webrtc_rtc_base_rtc_numerics webrtc_rtc_base_rtc_task_queue webrtc_rtc_base_timeutils webrtc_rtc_base_experiments_alr_experiment webrtc_rtc_base_experiments_balanced_degradation_settings webrtc_rtc_base_experiments_encoder_info_settings webrtc_rtc_base_experiments_field_trial_parser webrtc_rtc_base_experiments_quality_rampup_experiment webrtc_rtc_base_experiments_quality_scaler_settings webrtc_rtc_base_experiments_quality_scaling_experiment webrtc_rtc_base_experiments_rate_control_settings webrtc_rtc_base_synchronization_mutex webrtc_rtc_base_system_no_unique_address webrtc_rtc_base_task_utils_pending_task_safety_flag webrtc_rtc_base_task_utils_repeating_task webrtc_system_wrappers_system_wrappers webrtc_system_wrappers_field_trial webrtc_video_adaptation_video_adaptation )
# Platform specific set of defines
add_library(webrtc_platform_defs INTERFACE)
target_compile_definitions(webrtc_platform_defs INTERFACE RTC_ENABLE_VP9 WEBRTC_WIN WEBRTC_ABSL_MUTEX WEBRTC_ENABLE_AVX2 WEBRTC_ENABLE_PROTOBUF=1 WEBRTC_HAVE_SCTP WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1
)