Hash :
c2224aef
Author :
Date :
2025-07-22T14:35:49
Revert "Fix VK-GL-CTS build error" This reverts commit a676c4725490ee896e1154d5fbe1b1c1adc83678. Reason for revert: CTS build issue is fixed upstream and rolled into ANGLE. Bug: angleproject:432337091 Original change's description: > Fix VK-GL-CTS build error > > ... temporarily by overriding the offending file until the upstream fix > lands. > > Bug: angleproject:432337091 > Change-Id: I878561e0856e43b657bcaf08a7563ac639794098 > Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/6775382 > Reviewed-by: Geoff Lang <geofflang@chromium.org> > Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org> Bug: angleproject:432337091 Change-Id: I1607d32b4007df91c721601fc16bcb05932f2567 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/6777764 Reviewed-by: Amirali Abdolrashidi <abdolrashidi@google.com> Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
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
# Copyright 2015 The ANGLE Project Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("../../../gni/angle.gni")
deqp_path = "../../third_party/VK-GL-CTS/src"
deqp_include_dirs = [
"$deqp_path/executor",
"$deqp_path/execserver",
"$deqp_path/framework/platform/lnx",
"$deqp_path/framework/platform/lnx/X11",
"$deqp_path/framework/platform/null",
"$deqp_path/framework/platform/win32",
"$deqp_path/framework/xexml",
"$deqp_path/modules/gles2",
"$deqp_path/modules/gles2/functional",
"$deqp_path/modules/gles2/accuracy",
"$deqp_path/modules/gles2/performance",
"$deqp_path/modules/gles2/stress",
"$deqp_path/modules/gles2/usecases",
"$deqp_path/modules/gles3",
"$deqp_path/modules/gles3/functional",
"$deqp_path/modules/gles3/accuracy",
"$deqp_path/modules/gles3/performance",
"$deqp_path/modules/gles3/stress",
"$deqp_path/modules/gles3/usecases",
"$deqp_path/modules/gles31",
"$deqp_path/modules/gles31/functional",
"$deqp_path/modules/gles31/stress",
"$deqp_path/modules/glusecases",
"$deqp_path/modules/egl",
"${angle_glslang_dir}",
"${angle_spirv_tools_dir}",
]
deqp_gles2_sources = [
"$deqp_path/modules/gles2/accuracy/es2aAccuracyTests.cpp",
"$deqp_path/modules/gles2/accuracy/es2aAccuracyTests.hpp",
"$deqp_path/modules/gles2/accuracy/es2aTextureFilteringTests.cpp",
"$deqp_path/modules/gles2/accuracy/es2aTextureFilteringTests.hpp",
"$deqp_path/modules/gles2/accuracy/es2aTextureMipmapTests.cpp",
"$deqp_path/modules/gles2/accuracy/es2aTextureMipmapTests.hpp",
"$deqp_path/modules/gles2/accuracy/es2aVaryingInterpolationTests.cpp",
"$deqp_path/modules/gles2/accuracy/es2aVaryingInterpolationTests.hpp",
"$deqp_path/modules/gles2/functional/es2fApiCase.cpp",
"$deqp_path/modules/gles2/functional/es2fApiCase.hpp",
"$deqp_path/modules/gles2/functional/es2fAttribLocationTests.cpp",
"$deqp_path/modules/gles2/functional/es2fAttribLocationTests.hpp",
"$deqp_path/modules/gles2/functional/es2fBlendTests.cpp",
"$deqp_path/modules/gles2/functional/es2fBlendTests.hpp",
"$deqp_path/modules/gles2/functional/es2fBooleanStateQueryTests.cpp",
"$deqp_path/modules/gles2/functional/es2fBooleanStateQueryTests.hpp",
"$deqp_path/modules/gles2/functional/es2fBufferObjectQueryTests.cpp",
"$deqp_path/modules/gles2/functional/es2fBufferObjectQueryTests.hpp",
"$deqp_path/modules/gles2/functional/es2fBufferTestUtil.cpp",
"$deqp_path/modules/gles2/functional/es2fBufferTestUtil.hpp",
"$deqp_path/modules/gles2/functional/es2fBufferWriteTests.cpp",
"$deqp_path/modules/gles2/functional/es2fBufferWriteTests.hpp",
"$deqp_path/modules/gles2/functional/es2fClipControlTests.cpp",
"$deqp_path/modules/gles2/functional/es2fClipControlTests.hpp",
"$deqp_path/modules/gles2/functional/es2fClippingTests.cpp",
"$deqp_path/modules/gles2/functional/es2fClippingTests.hpp",
"$deqp_path/modules/gles2/functional/es2fColorClearTest.cpp",
"$deqp_path/modules/gles2/functional/es2fColorClearTest.hpp",
"$deqp_path/modules/gles2/functional/es2fDebugMarkerTests.cpp",
"$deqp_path/modules/gles2/functional/es2fDebugMarkerTests.hpp",
"$deqp_path/modules/gles2/functional/es2fDefaultVertexAttributeTests.cpp",
"$deqp_path/modules/gles2/functional/es2fDefaultVertexAttributeTests.hpp",
"$deqp_path/modules/gles2/functional/es2fDepthRangeTests.cpp",
"$deqp_path/modules/gles2/functional/es2fDepthRangeTests.hpp",
"$deqp_path/modules/gles2/functional/es2fDepthStencilClearTests.cpp",
"$deqp_path/modules/gles2/functional/es2fDepthStencilClearTests.hpp",
"$deqp_path/modules/gles2/functional/es2fDepthStencilTests.cpp",
"$deqp_path/modules/gles2/functional/es2fDepthStencilTests.hpp",
"$deqp_path/modules/gles2/functional/es2fDepthTests.cpp",
"$deqp_path/modules/gles2/functional/es2fDepthTests.hpp",
"$deqp_path/modules/gles2/functional/es2fDitheringTests.cpp",
"$deqp_path/modules/gles2/functional/es2fDitheringTests.hpp",
"$deqp_path/modules/gles2/functional/es2fDrawTests.cpp",
"$deqp_path/modules/gles2/functional/es2fDrawTests.hpp",
"$deqp_path/modules/gles2/functional/es2fFboApiTest.cpp",
"$deqp_path/modules/gles2/functional/es2fFboApiTest.hpp",
"$deqp_path/modules/gles2/functional/es2fFboCompletenessTests.cpp",
"$deqp_path/modules/gles2/functional/es2fFboCompletenessTests.hpp",
"$deqp_path/modules/gles2/functional/es2fFboRenderTest.cpp",
"$deqp_path/modules/gles2/functional/es2fFboRenderTest.hpp",
"$deqp_path/modules/gles2/functional/es2fFboStateQueryTests.cpp",
"$deqp_path/modules/gles2/functional/es2fFboStateQueryTests.hpp",
"$deqp_path/modules/gles2/functional/es2fFloatStateQueryTests.cpp",
"$deqp_path/modules/gles2/functional/es2fFloatStateQueryTests.hpp",
"$deqp_path/modules/gles2/functional/es2fFlushFinishTests.cpp",
"$deqp_path/modules/gles2/functional/es2fFlushFinishTests.hpp",
"$deqp_path/modules/gles2/functional/es2fFragOpInteractionTests.cpp",
"$deqp_path/modules/gles2/functional/es2fFragOpInteractionTests.hpp",
"$deqp_path/modules/gles2/functional/es2fFunctionalTests.cpp",
"$deqp_path/modules/gles2/functional/es2fFunctionalTests.hpp",
"$deqp_path/modules/gles2/functional/es2fImplementationLimitTests.cpp",
"$deqp_path/modules/gles2/functional/es2fImplementationLimitTests.hpp",
"$deqp_path/modules/gles2/functional/es2fIntegerStateQueryTests.cpp",
"$deqp_path/modules/gles2/functional/es2fIntegerStateQueryTests.hpp",
"$deqp_path/modules/gles2/functional/es2fLifetimeTests.cpp",
"$deqp_path/modules/gles2/functional/es2fLifetimeTests.hpp",
"$deqp_path/modules/gles2/functional/es2fLightAmountTest.cpp",
"$deqp_path/modules/gles2/functional/es2fLightAmountTest.hpp",
"$deqp_path/modules/gles2/functional/es2fMultisampleTests.cpp",
"$deqp_path/modules/gles2/functional/es2fMultisampleTests.hpp",
"$deqp_path/modules/gles2/functional/es2fMultisampledRenderToTextureTests.cpp",
"$deqp_path/modules/gles2/functional/es2fMultisampledRenderToTextureTests.hpp",
"$deqp_path/modules/gles2/functional/es2fNegativeBufferApiTests.cpp",
"$deqp_path/modules/gles2/functional/es2fNegativeBufferApiTests.hpp",
"$deqp_path/modules/gles2/functional/es2fNegativeFragmentApiTests.cpp",
"$deqp_path/modules/gles2/functional/es2fNegativeFragmentApiTests.hpp",
"$deqp_path/modules/gles2/functional/es2fNegativeShaderApiTests.cpp",
"$deqp_path/modules/gles2/functional/es2fNegativeShaderApiTests.hpp",
"$deqp_path/modules/gles2/functional/es2fNegativeStateApiTests.cpp",
"$deqp_path/modules/gles2/functional/es2fNegativeStateApiTests.hpp",
"$deqp_path/modules/gles2/functional/es2fNegativeTextureApiTests.cpp",
"$deqp_path/modules/gles2/functional/es2fNegativeTextureApiTests.hpp",
"$deqp_path/modules/gles2/functional/es2fNegativeVertexArrayApiTests.cpp",
"$deqp_path/modules/gles2/functional/es2fNegativeVertexArrayApiTests.hpp",
"$deqp_path/modules/gles2/functional/es2fPolygonOffsetTests.cpp",
"$deqp_path/modules/gles2/functional/es2fPolygonOffsetTests.hpp",
"$deqp_path/modules/gles2/functional/es2fPrerequisiteTests.cpp",
"$deqp_path/modules/gles2/functional/es2fPrerequisiteTests.hpp",
"$deqp_path/modules/gles2/functional/es2fRandomFragmentOpTests.cpp",
"$deqp_path/modules/gles2/functional/es2fRandomFragmentOpTests.hpp",
"$deqp_path/modules/gles2/functional/es2fRandomShaderTests.cpp",
"$deqp_path/modules/gles2/functional/es2fRandomShaderTests.hpp",
"$deqp_path/modules/gles2/functional/es2fRasterizationTests.cpp",
"$deqp_path/modules/gles2/functional/es2fRasterizationTests.hpp",
"$deqp_path/modules/gles2/functional/es2fRboStateQueryTests.cpp",
"$deqp_path/modules/gles2/functional/es2fRboStateQueryTests.hpp",
"$deqp_path/modules/gles2/functional/es2fReadPixelsTests.cpp",
"$deqp_path/modules/gles2/functional/es2fReadPixelsTests.hpp",
"$deqp_path/modules/gles2/functional/es2fScissorTests.cpp",
"$deqp_path/modules/gles2/functional/es2fScissorTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderAlgorithmTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderAlgorithmTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderApiTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderApiTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderBuiltinVarTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderBuiltinVarTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderConstExprTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderConstExprTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderDiscardTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderDiscardTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderExecuteTest.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderExecuteTest.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderFragDataTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderFragDataTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderFunctionTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderFunctionTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderIndexingTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderIndexingTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderInvarianceTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderInvarianceTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderLoopTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderLoopTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderMatrixTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderMatrixTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderOperatorTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderOperatorTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderReturnTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderReturnTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderStateQueryTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderStateQueryTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderStructTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderStructTests.hpp",
"$deqp_path/modules/gles2/functional/es2fShaderTextureFunctionTests.cpp",
"$deqp_path/modules/gles2/functional/es2fShaderTextureFunctionTests.hpp",
"$deqp_path/modules/gles2/functional/es2fStencilTests.cpp",
"$deqp_path/modules/gles2/functional/es2fStencilTests.hpp",
"$deqp_path/modules/gles2/functional/es2fStringQueryTests.cpp",
"$deqp_path/modules/gles2/functional/es2fStringQueryTests.hpp",
"$deqp_path/modules/gles2/functional/es2fTextureCompletenessTests.cpp",
"$deqp_path/modules/gles2/functional/es2fTextureCompletenessTests.hpp",
"$deqp_path/modules/gles2/functional/es2fTextureFilteringTests.cpp",
"$deqp_path/modules/gles2/functional/es2fTextureFilteringTests.hpp",
"$deqp_path/modules/gles2/functional/es2fTextureFormatTests.cpp",
"$deqp_path/modules/gles2/functional/es2fTextureFormatTests.hpp",
"$deqp_path/modules/gles2/functional/es2fTextureMipmapTests.cpp",
"$deqp_path/modules/gles2/functional/es2fTextureMipmapTests.hpp",
"$deqp_path/modules/gles2/functional/es2fTextureSizeTests.cpp",
"$deqp_path/modules/gles2/functional/es2fTextureSizeTests.hpp",
"$deqp_path/modules/gles2/functional/es2fTextureSpecificationTests.cpp",
"$deqp_path/modules/gles2/functional/es2fTextureSpecificationTests.hpp",
"$deqp_path/modules/gles2/functional/es2fTextureStateQueryTests.cpp",
"$deqp_path/modules/gles2/functional/es2fTextureStateQueryTests.hpp",
"$deqp_path/modules/gles2/functional/es2fTextureUnitTests.cpp",
"$deqp_path/modules/gles2/functional/es2fTextureUnitTests.hpp",
"$deqp_path/modules/gles2/functional/es2fTextureWrapTests.cpp",
"$deqp_path/modules/gles2/functional/es2fTextureWrapTests.hpp",
"$deqp_path/modules/gles2/functional/es2fUniformApiTests.cpp",
"$deqp_path/modules/gles2/functional/es2fUniformApiTests.hpp",
"$deqp_path/modules/gles2/functional/es2fVertexArrayTest.cpp",
"$deqp_path/modules/gles2/functional/es2fVertexArrayTest.hpp",
"$deqp_path/modules/gles2/functional/es2fVertexTextureTests.cpp",
"$deqp_path/modules/gles2/functional/es2fVertexTextureTests.hpp",
"$deqp_path/modules/gles2/performance/es2pBlendTests.cpp",
"$deqp_path/modules/gles2/performance/es2pBlendTests.hpp",
"$deqp_path/modules/gles2/performance/es2pDrawCallBatchingTests.cpp",
"$deqp_path/modules/gles2/performance/es2pDrawCallBatchingTests.hpp",
"$deqp_path/modules/gles2/performance/es2pPerformanceTests.cpp",
"$deqp_path/modules/gles2/performance/es2pPerformanceTests.hpp",
"$deqp_path/modules/gles2/performance/es2pRedundantStateChangeTests.cpp",
"$deqp_path/modules/gles2/performance/es2pRedundantStateChangeTests.hpp",
"$deqp_path/modules/gles2/performance/es2pShaderCompilationCases.cpp",
"$deqp_path/modules/gles2/performance/es2pShaderCompilationCases.hpp",
"$deqp_path/modules/gles2/performance/es2pShaderCompilerTests.cpp",
"$deqp_path/modules/gles2/performance/es2pShaderCompilerTests.hpp",
"$deqp_path/modules/gles2/performance/es2pShaderControlStatementTests.cpp",
"$deqp_path/modules/gles2/performance/es2pShaderControlStatementTests.hpp",
"$deqp_path/modules/gles2/performance/es2pShaderOperatorTests.cpp",
"$deqp_path/modules/gles2/performance/es2pShaderOperatorTests.hpp",
"$deqp_path/modules/gles2/performance/es2pShaderOptimizationTests.cpp",
"$deqp_path/modules/gles2/performance/es2pShaderOptimizationTests.hpp",
"$deqp_path/modules/gles2/performance/es2pStateChangeCallTests.cpp",
"$deqp_path/modules/gles2/performance/es2pStateChangeCallTests.hpp",
"$deqp_path/modules/gles2/performance/es2pStateChangeTests.cpp",
"$deqp_path/modules/gles2/performance/es2pStateChangeTests.hpp",
"$deqp_path/modules/gles2/performance/es2pTextureCases.cpp",
"$deqp_path/modules/gles2/performance/es2pTextureCases.hpp",
"$deqp_path/modules/gles2/performance/es2pTextureCountTests.cpp",
"$deqp_path/modules/gles2/performance/es2pTextureCountTests.hpp",
"$deqp_path/modules/gles2/performance/es2pTextureFilteringTests.cpp",
"$deqp_path/modules/gles2/performance/es2pTextureFilteringTests.hpp",
"$deqp_path/modules/gles2/performance/es2pTextureFormatTests.cpp",
"$deqp_path/modules/gles2/performance/es2pTextureFormatTests.hpp",
"$deqp_path/modules/gles2/performance/es2pTextureUploadTests.cpp",
"$deqp_path/modules/gles2/performance/es2pTextureUploadTests.hpp",
"$deqp_path/modules/gles2/stress/es2sDrawTests.cpp",
"$deqp_path/modules/gles2/stress/es2sDrawTests.hpp",
"$deqp_path/modules/gles2/stress/es2sLongRunningTests.cpp",
"$deqp_path/modules/gles2/stress/es2sLongRunningTests.hpp",
"$deqp_path/modules/gles2/stress/es2sMemoryTests.cpp",
"$deqp_path/modules/gles2/stress/es2sMemoryTests.hpp",
"$deqp_path/modules/gles2/stress/es2sSpecialFloatTests.cpp",
"$deqp_path/modules/gles2/stress/es2sSpecialFloatTests.hpp",
"$deqp_path/modules/gles2/stress/es2sStressTests.cpp",
"$deqp_path/modules/gles2/stress/es2sStressTests.hpp",
"$deqp_path/modules/gles2/stress/es2sVertexArrayTests.cpp",
"$deqp_path/modules/gles2/stress/es2sVertexArrayTests.hpp",
"$deqp_path/modules/gles2/tes2CapabilityTests.cpp",
"$deqp_path/modules/gles2/tes2CapabilityTests.hpp",
"$deqp_path/modules/gles2/tes2Context.cpp",
"$deqp_path/modules/gles2/tes2Context.hpp",
"$deqp_path/modules/gles2/tes2InfoTests.cpp",
"$deqp_path/modules/gles2/tes2InfoTests.hpp",
"$deqp_path/modules/gles2/tes2TestCase.cpp",
"$deqp_path/modules/gles2/tes2TestCase.hpp",
"$deqp_path/modules/gles2/tes2TestPackage.cpp",
"$deqp_path/modules/gles2/tes2TestPackage.hpp",
"$deqp_path/modules/gles2/tes2TestPackageEntry.cpp",
]
deqp_gles3_sources = [
"$deqp_path/modules/gles3/accuracy/es3aAccuracyTests.cpp",
"$deqp_path/modules/gles3/accuracy/es3aAccuracyTests.hpp",
"$deqp_path/modules/gles3/accuracy/es3aTextureFilteringTests.cpp",
"$deqp_path/modules/gles3/accuracy/es3aTextureFilteringTests.hpp",
"$deqp_path/modules/gles3/accuracy/es3aTextureMipmapTests.cpp",
"$deqp_path/modules/gles3/accuracy/es3aTextureMipmapTests.hpp",
"$deqp_path/modules/gles3/accuracy/es3aVaryingInterpolationTests.cpp",
"$deqp_path/modules/gles3/accuracy/es3aVaryingInterpolationTests.hpp",
"$deqp_path/modules/gles3/functional/es3fASTCDecompressionCases.cpp",
"$deqp_path/modules/gles3/functional/es3fASTCDecompressionCases.hpp",
"$deqp_path/modules/gles3/functional/es3fApiCase.cpp",
"$deqp_path/modules/gles3/functional/es3fApiCase.hpp",
"$deqp_path/modules/gles3/functional/es3fAttribLocationTests.cpp",
"$deqp_path/modules/gles3/functional/es3fAttribLocationTests.hpp",
"$deqp_path/modules/gles3/functional/es3fBlendTests.cpp",
"$deqp_path/modules/gles3/functional/es3fBlendTests.hpp",
"$deqp_path/modules/gles3/functional/es3fBooleanStateQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fBooleanStateQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fBufferCopyTests.cpp",
"$deqp_path/modules/gles3/functional/es3fBufferCopyTests.hpp",
"$deqp_path/modules/gles3/functional/es3fBufferMapTests.cpp",
"$deqp_path/modules/gles3/functional/es3fBufferMapTests.hpp",
"$deqp_path/modules/gles3/functional/es3fBufferObjectQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fBufferObjectQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fBufferWriteTests.cpp",
"$deqp_path/modules/gles3/functional/es3fBufferWriteTests.hpp",
"$deqp_path/modules/gles3/functional/es3fBuiltinPrecisionTests.cpp",
"$deqp_path/modules/gles3/functional/es3fBuiltinPrecisionTests.hpp",
"$deqp_path/modules/gles3/functional/es3fClippingTests.cpp",
"$deqp_path/modules/gles3/functional/es3fClippingTests.hpp",
"$deqp_path/modules/gles3/functional/es3fColorClearTest.cpp",
"$deqp_path/modules/gles3/functional/es3fColorClearTest.hpp",
"$deqp_path/modules/gles3/functional/es3fCompressedTextureTests.cpp",
"$deqp_path/modules/gles3/functional/es3fCompressedTextureTests.hpp",
"$deqp_path/modules/gles3/functional/es3fDefaultVertexArrayObjectTests.cpp",
"$deqp_path/modules/gles3/functional/es3fDefaultVertexArrayObjectTests.hpp",
"$deqp_path/modules/gles3/functional/es3fDefaultVertexAttributeTests.cpp",
"$deqp_path/modules/gles3/functional/es3fDefaultVertexAttributeTests.hpp",
"$deqp_path/modules/gles3/functional/es3fDepthStencilClearTests.cpp",
"$deqp_path/modules/gles3/functional/es3fDepthStencilClearTests.hpp",
"$deqp_path/modules/gles3/functional/es3fDepthStencilTests.cpp",
"$deqp_path/modules/gles3/functional/es3fDepthStencilTests.hpp",
"$deqp_path/modules/gles3/functional/es3fDepthTests.cpp",
"$deqp_path/modules/gles3/functional/es3fDepthTests.hpp",
"$deqp_path/modules/gles3/functional/es3fDitheringTests.cpp",
"$deqp_path/modules/gles3/functional/es3fDitheringTests.hpp",
"$deqp_path/modules/gles3/functional/es3fDrawBuffersIndexedTests.cpp",
"$deqp_path/modules/gles3/functional/es3fDrawBuffersIndexedTests.hpp",
"$deqp_path/modules/gles3/functional/es3fDrawTests.cpp",
"$deqp_path/modules/gles3/functional/es3fDrawTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFboApiTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFboApiTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFboColorbufferTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFboColorbufferTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFboCompletenessTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFboCompletenessTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFboDepthbufferTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFboDepthbufferTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFboInvalidateTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFboInvalidateTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFboMultisampleTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFboMultisampleTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFboRenderTest.cpp",
"$deqp_path/modules/gles3/functional/es3fFboRenderTest.hpp",
"$deqp_path/modules/gles3/functional/es3fFboStateQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFboStateQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFboStencilbufferTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFboStencilbufferTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFboTestCase.cpp",
"$deqp_path/modules/gles3/functional/es3fFboTestCase.hpp",
"$deqp_path/modules/gles3/functional/es3fFboTestUtil.cpp",
"$deqp_path/modules/gles3/functional/es3fFboTestUtil.hpp",
"$deqp_path/modules/gles3/functional/es3fFloatStateQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFloatStateQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFlushFinishTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFlushFinishTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFragDepthTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFragDepthTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFragOpInteractionTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFragOpInteractionTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFragmentOutputTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFragmentOutputTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFramebufferBlitTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFramebufferBlitTests.hpp",
"$deqp_path/modules/gles3/functional/es3fFunctionalTests.cpp",
"$deqp_path/modules/gles3/functional/es3fFunctionalTests.hpp",
"$deqp_path/modules/gles3/functional/es3fImplementationLimitTests.cpp",
"$deqp_path/modules/gles3/functional/es3fImplementationLimitTests.hpp",
"$deqp_path/modules/gles3/functional/es3fIndexedStateQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fIndexedStateQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fInstancedRenderingTests.cpp",
"$deqp_path/modules/gles3/functional/es3fInstancedRenderingTests.hpp",
"$deqp_path/modules/gles3/functional/es3fInteger64StateQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fInteger64StateQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fIntegerStateQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fIntegerStateQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fInternalFormatQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fInternalFormatQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fLifetimeTests.cpp",
"$deqp_path/modules/gles3/functional/es3fLifetimeTests.hpp",
"$deqp_path/modules/gles3/functional/es3fMultisampleTests.cpp",
"$deqp_path/modules/gles3/functional/es3fMultisampleTests.hpp",
"$deqp_path/modules/gles3/functional/es3fMultiviewTests.cpp",
"$deqp_path/modules/gles3/functional/es3fMultiviewTests.hpp",
"$deqp_path/modules/gles3/functional/es3fNegativeBufferApiTests.cpp",
"$deqp_path/modules/gles3/functional/es3fNegativeBufferApiTests.hpp",
"$deqp_path/modules/gles3/functional/es3fNegativeFragmentApiTests.cpp",
"$deqp_path/modules/gles3/functional/es3fNegativeFragmentApiTests.hpp",
"$deqp_path/modules/gles3/functional/es3fNegativeShaderApiTests.cpp",
"$deqp_path/modules/gles3/functional/es3fNegativeShaderApiTests.hpp",
"$deqp_path/modules/gles3/functional/es3fNegativeStateApiTests.cpp",
"$deqp_path/modules/gles3/functional/es3fNegativeStateApiTests.hpp",
"$deqp_path/modules/gles3/functional/es3fNegativeTextureApiTests.cpp",
"$deqp_path/modules/gles3/functional/es3fNegativeTextureApiTests.hpp",
"$deqp_path/modules/gles3/functional/es3fNegativeVertexArrayApiTests.cpp",
"$deqp_path/modules/gles3/functional/es3fNegativeVertexArrayApiTests.hpp",
"$deqp_path/modules/gles3/functional/es3fOcclusionQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fOcclusionQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fPixelBufferObjectTests.cpp",
"$deqp_path/modules/gles3/functional/es3fPixelBufferObjectTests.hpp",
"$deqp_path/modules/gles3/functional/es3fPolygonOffsetTests.cpp",
"$deqp_path/modules/gles3/functional/es3fPolygonOffsetTests.hpp",
"$deqp_path/modules/gles3/functional/es3fPrerequisiteTests.cpp",
"$deqp_path/modules/gles3/functional/es3fPrerequisiteTests.hpp",
"$deqp_path/modules/gles3/functional/es3fPrimitiveRestartTests.cpp",
"$deqp_path/modules/gles3/functional/es3fPrimitiveRestartTests.hpp",
"$deqp_path/modules/gles3/functional/es3fRandomFragmentOpTests.cpp",
"$deqp_path/modules/gles3/functional/es3fRandomFragmentOpTests.hpp",
"$deqp_path/modules/gles3/functional/es3fRandomShaderTests.cpp",
"$deqp_path/modules/gles3/functional/es3fRandomShaderTests.hpp",
"$deqp_path/modules/gles3/functional/es3fRasterizationTests.cpp",
"$deqp_path/modules/gles3/functional/es3fRasterizationTests.hpp",
"$deqp_path/modules/gles3/functional/es3fRasterizerDiscardTests.cpp",
"$deqp_path/modules/gles3/functional/es3fRasterizerDiscardTests.hpp",
"$deqp_path/modules/gles3/functional/es3fRboStateQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fRboStateQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fReadPixelsTests.cpp",
"$deqp_path/modules/gles3/functional/es3fReadPixelsTests.hpp",
"$deqp_path/modules/gles3/functional/es3fSamplerObjectTests.cpp",
"$deqp_path/modules/gles3/functional/es3fSamplerObjectTests.hpp",
"$deqp_path/modules/gles3/functional/es3fSamplerStateQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fSamplerStateQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fScissorTests.cpp",
"$deqp_path/modules/gles3/functional/es3fScissorTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderApiTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderApiTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderBuiltinVarTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderBuiltinVarTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderCommonFunctionTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderCommonFunctionTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderConstExprTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderConstExprTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderDerivateTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderDerivateTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderDiscardTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderDiscardTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderFragDataTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderFragDataTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderFunctionTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderFunctionTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderIndexingTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderIndexingTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderInvarianceTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderInvarianceTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderLoopTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderLoopTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderMatrixTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderMatrixTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderMetamorphicTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderMetamorphicTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderOperatorTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderOperatorTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderPackingFunctionTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderPackingFunctionTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderPrecisionTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderPrecisionTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderReturnTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderReturnTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderStateQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderStateQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderStructTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderStructTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderSwitchTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderSwitchTests.hpp",
"$deqp_path/modules/gles3/functional/es3fShaderTextureFunctionTests.cpp",
"$deqp_path/modules/gles3/functional/es3fShaderTextureFunctionTests.hpp",
"$deqp_path/modules/gles3/functional/es3fStencilTests.cpp",
"$deqp_path/modules/gles3/functional/es3fStencilTests.hpp",
"$deqp_path/modules/gles3/functional/es3fStringQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fStringQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fSyncTests.cpp",
"$deqp_path/modules/gles3/functional/es3fSyncTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTextureFilteringTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTextureFilteringTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTextureFormatTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTextureFormatTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTextureMipmapTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTextureMipmapTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTextureShadowTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTextureShadowTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTextureSizeTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTextureSizeTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTextureSpecificationTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTextureSpecificationTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTextureStateQueryTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTextureStateQueryTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTextureSwizzleTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTextureSwizzleTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTextureUnitTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTextureUnitTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTextureWrapTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTextureWrapTests.hpp",
"$deqp_path/modules/gles3/functional/es3fTransformFeedbackTests.cpp",
"$deqp_path/modules/gles3/functional/es3fTransformFeedbackTests.hpp",
"$deqp_path/modules/gles3/functional/es3fUniformApiTests.cpp",
"$deqp_path/modules/gles3/functional/es3fUniformApiTests.hpp",
"$deqp_path/modules/gles3/functional/es3fUniformBlockTests.cpp",
"$deqp_path/modules/gles3/functional/es3fUniformBlockTests.hpp",
"$deqp_path/modules/gles3/functional/es3fVertexArrayObjectTests.cpp",
"$deqp_path/modules/gles3/functional/es3fVertexArrayObjectTests.hpp",
"$deqp_path/modules/gles3/functional/es3fVertexArrayTest.cpp",
"$deqp_path/modules/gles3/functional/es3fVertexArrayTest.hpp",
"$deqp_path/modules/gles3/functional/es3fVertexTextureTests.cpp",
"$deqp_path/modules/gles3/functional/es3fVertexTextureTests.hpp",
"$deqp_path/modules/gles3/performance/es3pBlendTests.cpp",
"$deqp_path/modules/gles3/performance/es3pBlendTests.hpp",
"$deqp_path/modules/gles3/performance/es3pBufferDataUploadTests.cpp",
"$deqp_path/modules/gles3/performance/es3pBufferDataUploadTests.hpp",
"$deqp_path/modules/gles3/performance/es3pDepthTests.cpp",
"$deqp_path/modules/gles3/performance/es3pDepthTests.hpp",
"$deqp_path/modules/gles3/performance/es3pPerformanceTests.cpp",
"$deqp_path/modules/gles3/performance/es3pPerformanceTests.hpp",
"$deqp_path/modules/gles3/performance/es3pRedundantStateChangeTests.cpp",
"$deqp_path/modules/gles3/performance/es3pRedundantStateChangeTests.hpp",
"$deqp_path/modules/gles3/performance/es3pShaderCompilationCases.cpp",
"$deqp_path/modules/gles3/performance/es3pShaderCompilationCases.hpp",
"$deqp_path/modules/gles3/performance/es3pShaderCompilerTests.cpp",
"$deqp_path/modules/gles3/performance/es3pShaderCompilerTests.hpp",
"$deqp_path/modules/gles3/performance/es3pShaderControlStatementTests.cpp",
"$deqp_path/modules/gles3/performance/es3pShaderControlStatementTests.hpp",
"$deqp_path/modules/gles3/performance/es3pShaderOperatorTests.cpp",
"$deqp_path/modules/gles3/performance/es3pShaderOperatorTests.hpp",
"$deqp_path/modules/gles3/performance/es3pShaderOptimizationTests.cpp",
"$deqp_path/modules/gles3/performance/es3pShaderOptimizationTests.hpp",
"$deqp_path/modules/gles3/performance/es3pStateChangeCallTests.cpp",
"$deqp_path/modules/gles3/performance/es3pStateChangeCallTests.hpp",
"$deqp_path/modules/gles3/performance/es3pStateChangeTests.cpp",
"$deqp_path/modules/gles3/performance/es3pStateChangeTests.hpp",
"$deqp_path/modules/gles3/performance/es3pTextureCases.cpp",
"$deqp_path/modules/gles3/performance/es3pTextureCases.hpp",
"$deqp_path/modules/gles3/performance/es3pTextureCountTests.cpp",
"$deqp_path/modules/gles3/performance/es3pTextureCountTests.hpp",
"$deqp_path/modules/gles3/performance/es3pTextureFilteringTests.cpp",
"$deqp_path/modules/gles3/performance/es3pTextureFilteringTests.hpp",
"$deqp_path/modules/gles3/performance/es3pTextureFormatTests.cpp",
"$deqp_path/modules/gles3/performance/es3pTextureFormatTests.hpp",
"$deqp_path/modules/gles3/stress/es3sDrawTests.cpp",
"$deqp_path/modules/gles3/stress/es3sDrawTests.hpp",
"$deqp_path/modules/gles3/stress/es3sLongRunningShaderTests.cpp",
"$deqp_path/modules/gles3/stress/es3sLongRunningShaderTests.hpp",
"$deqp_path/modules/gles3/stress/es3sLongRunningTests.cpp",
"$deqp_path/modules/gles3/stress/es3sLongRunningTests.hpp",
"$deqp_path/modules/gles3/stress/es3sLongShaderTests.cpp",
"$deqp_path/modules/gles3/stress/es3sLongShaderTests.hpp",
"$deqp_path/modules/gles3/stress/es3sMemoryTests.cpp",
"$deqp_path/modules/gles3/stress/es3sMemoryTests.hpp",
"$deqp_path/modules/gles3/stress/es3sOcclusionQueryTests.cpp",
"$deqp_path/modules/gles3/stress/es3sOcclusionQueryTests.hpp",
"$deqp_path/modules/gles3/stress/es3sSpecialFloatTests.cpp",
"$deqp_path/modules/gles3/stress/es3sSpecialFloatTests.hpp",
"$deqp_path/modules/gles3/stress/es3sStressTests.cpp",
"$deqp_path/modules/gles3/stress/es3sStressTests.hpp",
"$deqp_path/modules/gles3/stress/es3sSyncTests.cpp",
"$deqp_path/modules/gles3/stress/es3sSyncTests.hpp",
"$deqp_path/modules/gles3/stress/es3sVertexArrayTests.cpp",
"$deqp_path/modules/gles3/stress/es3sVertexArrayTests.hpp",
"$deqp_path/modules/gles3/tes3Context.cpp",
"$deqp_path/modules/gles3/tes3Context.hpp",
"$deqp_path/modules/gles3/tes3InfoTests.cpp",
"$deqp_path/modules/gles3/tes3InfoTests.hpp",
"$deqp_path/modules/gles3/tes3TestCase.cpp",
"$deqp_path/modules/gles3/tes3TestCase.hpp",
"$deqp_path/modules/gles3/tes3TestCaseWrapper.hpp",
"$deqp_path/modules/gles3/tes3TestPackage.cpp",
"$deqp_path/modules/gles3/tes3TestPackage.hpp",
"$deqp_path/modules/gles3/tes3TestPackageEntry.cpp",
"$deqp_path/modules/gles3/tgl45es3TestPackage.cpp",
"$deqp_path/modules/gles3/tgl45es3TestPackage.hpp",
]
deqp_gles31_sources = [
"$deqp_path/modules/gles31/functional/es31fAdvancedBlendTests.cpp",
"$deqp_path/modules/gles31/functional/es31fAdvancedBlendTests.hpp",
"$deqp_path/modules/gles31/functional/es31fAndroidExtensionPackES31ATests.cpp",
"$deqp_path/modules/gles31/functional/es31fAndroidExtensionPackES31ATests.hpp",
"$deqp_path/modules/gles31/functional/es31fAtomicCounterTests.cpp",
"$deqp_path/modules/gles31/functional/es31fAtomicCounterTests.hpp",
"$deqp_path/modules/gles31/functional/es31fBasicComputeShaderTests.cpp",
"$deqp_path/modules/gles31/functional/es31fBasicComputeShaderTests.hpp",
"$deqp_path/modules/gles31/functional/es31fBooleanStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fBooleanStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fBuiltinPrecisionTests.cpp",
"$deqp_path/modules/gles31/functional/es31fBuiltinPrecisionTests.hpp",
"$deqp_path/modules/gles31/functional/es31fComputeShaderBuiltinVarTests.cpp",
"$deqp_path/modules/gles31/functional/es31fComputeShaderBuiltinVarTests.hpp",
"$deqp_path/modules/gles31/functional/es31fCopyImageTests.cpp",
"$deqp_path/modules/gles31/functional/es31fCopyImageTests.hpp",
"$deqp_path/modules/gles31/functional/es31fDebugTests.cpp",
"$deqp_path/modules/gles31/functional/es31fDebugTests.hpp",
"$deqp_path/modules/gles31/functional/es31fDefaultVertexArrayObjectTests.cpp",
"$deqp_path/modules/gles31/functional/es31fDefaultVertexArrayObjectTests.hpp",
"$deqp_path/modules/gles31/functional/es31fDrawElementsBaseVertexTests.cpp",
"$deqp_path/modules/gles31/functional/es31fDrawElementsBaseVertexTests.hpp",
"$deqp_path/modules/gles31/functional/es31fDrawTests.cpp",
"$deqp_path/modules/gles31/functional/es31fDrawTests.hpp",
"$deqp_path/modules/gles31/functional/es31fFboColorbufferTests.cpp",
"$deqp_path/modules/gles31/functional/es31fFboColorbufferTests.hpp",
"$deqp_path/modules/gles31/functional/es31fFboNoAttachmentTests.cpp",
"$deqp_path/modules/gles31/functional/es31fFboNoAttachmentTests.hpp",
"$deqp_path/modules/gles31/functional/es31fFboSRGBWriteControlTests.cpp",
"$deqp_path/modules/gles31/functional/es31fFboSRGBWriteControlTests.hpp",
"$deqp_path/modules/gles31/functional/es31fFboTestCase.cpp",
"$deqp_path/modules/gles31/functional/es31fFboTestCase.hpp",
"$deqp_path/modules/gles31/functional/es31fFboTestUtil.cpp",
"$deqp_path/modules/gles31/functional/es31fFboTestUtil.hpp",
"$deqp_path/modules/gles31/functional/es31fFramebufferDefaultStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fFramebufferDefaultStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fFunctionalTests.cpp",
"$deqp_path/modules/gles31/functional/es31fFunctionalTests.hpp",
"$deqp_path/modules/gles31/functional/es31fGeometryShaderTests.cpp",
"$deqp_path/modules/gles31/functional/es31fGeometryShaderTests.hpp",
"$deqp_path/modules/gles31/functional/es31fIndexedStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fIndexedStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fIndirectComputeDispatchTests.cpp",
"$deqp_path/modules/gles31/functional/es31fIndirectComputeDispatchTests.hpp",
"$deqp_path/modules/gles31/functional/es31fInfoLogQueryShared.cpp",
"$deqp_path/modules/gles31/functional/es31fInfoLogQueryShared.hpp",
"$deqp_path/modules/gles31/functional/es31fIntegerStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fIntegerStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fInternalFormatQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fInternalFormatQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fLayoutBindingTests.cpp",
"$deqp_path/modules/gles31/functional/es31fLayoutBindingTests.hpp",
"$deqp_path/modules/gles31/functional/es31fMultisampleShaderRenderCase.cpp",
"$deqp_path/modules/gles31/functional/es31fMultisampleShaderRenderCase.hpp",
"$deqp_path/modules/gles31/functional/es31fMultisampleTests.cpp",
"$deqp_path/modules/gles31/functional/es31fMultisampleTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeAdvancedBlendEquationTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeAdvancedBlendEquationTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeAtomicCounterTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeAtomicCounterTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeBufferApiTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeBufferApiTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeComputeTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeComputeTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeFragmentApiTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeFragmentApiTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativePreciseTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativePreciseTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeSSBOBlockTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeSSBOBlockTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeSampleVariablesTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeSampleVariablesTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderApiTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderApiTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderDirectiveTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderDirectiveTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderFramebufferFetchTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderFramebufferFetchTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderFunctionTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderFunctionTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderImageLoadStoreTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderImageLoadStoreTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderStorageTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeShaderStorageTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeStateApiTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeStateApiTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeTessellationTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeTessellationTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeTestShared.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeTestShared.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeTextureApiTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeTextureApiTests.hpp",
"$deqp_path/modules/gles31/functional/es31fNegativeVertexArrayApiTests.cpp",
"$deqp_path/modules/gles31/functional/es31fNegativeVertexArrayApiTests.hpp",
"$deqp_path/modules/gles31/functional/es31fOpaqueTypeIndexingTests.cpp",
"$deqp_path/modules/gles31/functional/es31fOpaqueTypeIndexingTests.hpp",
"$deqp_path/modules/gles31/functional/es31fPrimitiveBoundingBoxTests.cpp",
"$deqp_path/modules/gles31/functional/es31fPrimitiveBoundingBoxTests.hpp",
"$deqp_path/modules/gles31/functional/es31fProgramInterfaceDefinition.cpp",
"$deqp_path/modules/gles31/functional/es31fProgramInterfaceDefinition.hpp",
"$deqp_path/modules/gles31/functional/es31fProgramInterfaceDefinitionUtil.cpp",
"$deqp_path/modules/gles31/functional/es31fProgramInterfaceDefinitionUtil.hpp",
"$deqp_path/modules/gles31/functional/es31fProgramInterfaceQueryTestCase.cpp",
"$deqp_path/modules/gles31/functional/es31fProgramInterfaceQueryTestCase.hpp",
"$deqp_path/modules/gles31/functional/es31fProgramInterfaceQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fProgramInterfaceQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fProgramPipelineStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fProgramPipelineStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fProgramStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fProgramStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fProgramUniformTests.cpp",
"$deqp_path/modules/gles31/functional/es31fProgramUniformTests.hpp",
"$deqp_path/modules/gles31/functional/es31fSRGBDecodeTests.cpp",
"$deqp_path/modules/gles31/functional/es31fSRGBDecodeTests.hpp",
"$deqp_path/modules/gles31/functional/es31fSSBOArrayLengthTests.cpp",
"$deqp_path/modules/gles31/functional/es31fSSBOArrayLengthTests.hpp",
"$deqp_path/modules/gles31/functional/es31fSSBOLayoutCase.cpp",
"$deqp_path/modules/gles31/functional/es31fSSBOLayoutCase.hpp",
"$deqp_path/modules/gles31/functional/es31fSSBOLayoutTests.cpp",
"$deqp_path/modules/gles31/functional/es31fSSBOLayoutTests.hpp",
"$deqp_path/modules/gles31/functional/es31fSampleShadingTests.cpp",
"$deqp_path/modules/gles31/functional/es31fSampleShadingTests.hpp",
"$deqp_path/modules/gles31/functional/es31fSampleVariableTests.cpp",
"$deqp_path/modules/gles31/functional/es31fSampleVariableTests.hpp",
"$deqp_path/modules/gles31/functional/es31fSamplerStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fSamplerStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fSeparateShaderTests.cpp",
"$deqp_path/modules/gles31/functional/es31fSeparateShaderTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderAtomicOpTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderAtomicOpTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderBuiltinConstantTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderBuiltinConstantTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderCommonFunctionTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderCommonFunctionTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderFramebufferFetchTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderFramebufferFetchTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderHelperInvocationTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderHelperInvocationTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderImageLoadStoreTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderImageLoadStoreTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderIntegerFunctionTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderIntegerFunctionTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderMultisampleInterpolationStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderMultisampleInterpolationStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderMultisampleInterpolationTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderMultisampleInterpolationTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderPackingFunctionTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderPackingFunctionTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderSharedVarTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderSharedVarTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderTextureSizeTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderTextureSizeTests.hpp",
"$deqp_path/modules/gles31/functional/es31fShaderUniformIntegerFunctionTests.cpp",
"$deqp_path/modules/gles31/functional/es31fShaderUniformIntegerFunctionTests.hpp",
"$deqp_path/modules/gles31/functional/es31fStencilTexturingTests.cpp",
"$deqp_path/modules/gles31/functional/es31fStencilTexturingTests.hpp",
"$deqp_path/modules/gles31/functional/es31fSynchronizationTests.cpp",
"$deqp_path/modules/gles31/functional/es31fSynchronizationTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTessellationGeometryInteractionTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTessellationGeometryInteractionTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTessellationTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTessellationTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTextureBorderClampTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTextureBorderClampTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTextureBufferTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTextureBufferTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTextureFilteringTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTextureFilteringTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTextureFormatTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTextureFormatTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTextureGatherTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTextureGatherTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTextureLevelStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTextureLevelStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTextureMultisampleTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTextureMultisampleTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTextureSpecificationTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTextureSpecificationTests.hpp",
"$deqp_path/modules/gles31/functional/es31fTextureStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fTextureStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fUniformBlockTests.cpp",
"$deqp_path/modules/gles31/functional/es31fUniformBlockTests.hpp",
"$deqp_path/modules/gles31/functional/es31fUniformLocationTests.cpp",
"$deqp_path/modules/gles31/functional/es31fUniformLocationTests.hpp",
"$deqp_path/modules/gles31/functional/es31fVertexAttributeBindingStateQueryTests.cpp",
"$deqp_path/modules/gles31/functional/es31fVertexAttributeBindingStateQueryTests.hpp",
"$deqp_path/modules/gles31/functional/es31fVertexAttributeBindingTests.cpp",
"$deqp_path/modules/gles31/functional/es31fVertexAttributeBindingTests.hpp",
"$deqp_path/modules/gles31/stress/es31sDrawTests.cpp",
"$deqp_path/modules/gles31/stress/es31sDrawTests.hpp",
"$deqp_path/modules/gles31/stress/es31sStressTests.cpp",
"$deqp_path/modules/gles31/stress/es31sStressTests.hpp",
"$deqp_path/modules/gles31/stress/es31sTessellationGeometryInteractionTests.cpp",
"$deqp_path/modules/gles31/stress/es31sTessellationGeometryInteractionTests.hpp",
"$deqp_path/modules/gles31/stress/es31sVertexAttributeBindingTests.cpp",
"$deqp_path/modules/gles31/stress/es31sVertexAttributeBindingTests.hpp",
"$deqp_path/modules/gles31/tes31Context.cpp",
"$deqp_path/modules/gles31/tes31Context.hpp",
"$deqp_path/modules/gles31/tes31InfoTests.cpp",
"$deqp_path/modules/gles31/tes31InfoTests.hpp",
"$deqp_path/modules/gles31/tes31TestCase.cpp",
"$deqp_path/modules/gles31/tes31TestCase.hpp",
"$deqp_path/modules/gles31/tes31TestCaseWrapper.hpp",
"$deqp_path/modules/gles31/tes31TestPackage.cpp",
"$deqp_path/modules/gles31/tes31TestPackage.hpp",
"$deqp_path/modules/gles31/tes31TestPackageEntry.cpp",
"$deqp_path/modules/gles31/tgl45es31TestPackage.cpp",
"$deqp_path/modules/gles31/tgl45es31TestPackage.hpp",
]
deqp_egl_sources = [
"$deqp_path/modules/egl/teglAndroidUtil.cpp",
"$deqp_path/modules/egl/teglAndroidUtil.hpp",
"$deqp_path/modules/egl/teglApiCase.cpp",
"$deqp_path/modules/egl/teglApiCase.hpp",
"$deqp_path/modules/egl/teglBufferAgeTests.cpp",
"$deqp_path/modules/egl/teglBufferAgeTests.hpp",
"$deqp_path/modules/egl/teglChooseConfigReference.cpp",
"$deqp_path/modules/egl/teglChooseConfigReference.hpp",
"$deqp_path/modules/egl/teglChooseConfigTests.cpp",
"$deqp_path/modules/egl/teglChooseConfigTests.hpp",
"$deqp_path/modules/egl/teglClientExtensionTests.cpp",
"$deqp_path/modules/egl/teglClientExtensionTests.hpp",
"$deqp_path/modules/egl/teglColorClearCase.cpp",
"$deqp_path/modules/egl/teglColorClearCase.hpp",
"$deqp_path/modules/egl/teglColorClearTests.cpp",
"$deqp_path/modules/egl/teglColorClearTests.hpp",
"$deqp_path/modules/egl/teglConfigList.cpp",
"$deqp_path/modules/egl/teglConfigList.hpp",
"$deqp_path/modules/egl/teglCreateContextExtTests.cpp",
"$deqp_path/modules/egl/teglCreateContextExtTests.hpp",
"$deqp_path/modules/egl/teglCreateContextTests.cpp",
"$deqp_path/modules/egl/teglCreateContextTests.hpp",
"$deqp_path/modules/egl/teglCreateSurfaceTests.cpp",
"$deqp_path/modules/egl/teglCreateSurfaceTests.hpp",
"$deqp_path/modules/egl/teglGLES1RenderUtil.cpp",
"$deqp_path/modules/egl/teglGLES1RenderUtil.hpp",
"$deqp_path/modules/egl/teglGLES2RenderUtil.cpp",
"$deqp_path/modules/egl/teglGLES2RenderUtil.hpp",
"$deqp_path/modules/egl/teglGLES2SharedRenderingPerfTests.cpp",
"$deqp_path/modules/egl/teglGLES2SharedRenderingPerfTests.hpp",
"$deqp_path/modules/egl/teglGLES2SharingTests.cpp",
"$deqp_path/modules/egl/teglGLES2SharingTests.hpp",
"$deqp_path/modules/egl/teglGLES2SharingThreadedTests.cpp",
"$deqp_path/modules/egl/teglGLES2SharingThreadedTests.hpp",
"$deqp_path/modules/egl/teglGetFrameTimestampsTests.cpp",
"$deqp_path/modules/egl/teglGetFrameTimestampsTests.hpp",
"$deqp_path/modules/egl/teglGetProcAddressTests.cpp",
"$deqp_path/modules/egl/teglGetProcAddressTests.hpp",
"$deqp_path/modules/egl/teglImageFormatTests.cpp",
"$deqp_path/modules/egl/teglImageFormatTests.hpp",
"$deqp_path/modules/egl/teglImageTests.cpp",
"$deqp_path/modules/egl/teglImageTests.hpp",
"$deqp_path/modules/egl/teglImageUtil.cpp",
"$deqp_path/modules/egl/teglImageUtil.hpp",
"$deqp_path/modules/egl/teglInfoTests.cpp",
"$deqp_path/modules/egl/teglInfoTests.hpp",
"$deqp_path/modules/egl/teglMakeCurrentPerfTests.cpp",
"$deqp_path/modules/egl/teglMakeCurrentPerfTests.hpp",
"$deqp_path/modules/egl/teglMemoryStressTests.cpp",
"$deqp_path/modules/egl/teglMemoryStressTests.hpp",
"$deqp_path/modules/egl/teglMultiContextTests.cpp",
"$deqp_path/modules/egl/teglMultiContextTests.hpp",
"$deqp_path/modules/egl/teglMultiThreadTests.cpp",
"$deqp_path/modules/egl/teglMultiThreadTests.hpp",
"$deqp_path/modules/egl/teglMutableRenderBufferTests.cpp",
"$deqp_path/modules/egl/teglMutableRenderBufferTests.hpp",
"$deqp_path/modules/egl/teglNativeColorMappingTests.cpp",
"$deqp_path/modules/egl/teglNativeColorMappingTests.hpp",
"$deqp_path/modules/egl/teglNativeCoordMappingTests.cpp",
"$deqp_path/modules/egl/teglNativeCoordMappingTests.hpp",
"$deqp_path/modules/egl/teglNegativeApiTests.cpp",
"$deqp_path/modules/egl/teglNegativeApiTests.hpp",
"$deqp_path/modules/egl/teglNegativePartialUpdateTests.cpp",
"$deqp_path/modules/egl/teglNegativePartialUpdateTests.hpp",
"$deqp_path/modules/egl/teglPartialUpdateTests.cpp",
"$deqp_path/modules/egl/teglPartialUpdateTests.hpp",
"$deqp_path/modules/egl/teglPreservingSwapTests.cpp",
"$deqp_path/modules/egl/teglPreservingSwapTests.hpp",
"$deqp_path/modules/egl/teglQueryConfigTests.cpp",
"$deqp_path/modules/egl/teglQueryConfigTests.hpp",
"$deqp_path/modules/egl/teglQueryContextTests.cpp",
"$deqp_path/modules/egl/teglQueryContextTests.hpp",
"$deqp_path/modules/egl/teglQuerySurfaceTests.cpp",
"$deqp_path/modules/egl/teglQuerySurfaceTests.hpp",
"$deqp_path/modules/egl/teglRenderCase.cpp",
"$deqp_path/modules/egl/teglRenderCase.hpp",
"$deqp_path/modules/egl/teglRenderTests.cpp",
"$deqp_path/modules/egl/teglRenderTests.hpp",
"$deqp_path/modules/egl/teglResizeTests.cpp",
"$deqp_path/modules/egl/teglResizeTests.hpp",
"$deqp_path/modules/egl/teglRobustnessTests.cpp",
"$deqp_path/modules/egl/teglRobustnessTests.hpp",
"$deqp_path/modules/egl/teglSimpleConfigCase.cpp",
"$deqp_path/modules/egl/teglSimpleConfigCase.hpp",
"$deqp_path/modules/egl/teglSurfacelessContextTests.cpp",
"$deqp_path/modules/egl/teglSurfacelessContextTests.hpp",
"$deqp_path/modules/egl/teglSwapBuffersTests.cpp",
"$deqp_path/modules/egl/teglSwapBuffersTests.hpp",
"$deqp_path/modules/egl/teglSwapBuffersWithDamageTests.cpp",
"$deqp_path/modules/egl/teglSwapBuffersWithDamageTests.hpp",
"$deqp_path/modules/egl/teglSyncTests.cpp",
"$deqp_path/modules/egl/teglSyncTests.hpp",
"$deqp_path/modules/egl/teglTestCase.cpp",
"$deqp_path/modules/egl/teglTestCase.hpp",
"$deqp_path/modules/egl/teglTestPackage.cpp",
"$deqp_path/modules/egl/teglTestPackage.hpp",
"$deqp_path/modules/egl/teglTestPackageEntry.cpp",
"$deqp_path/modules/egl/teglThreadCleanUpTests.cpp",
"$deqp_path/modules/egl/teglThreadCleanUpTests.hpp",
"$deqp_path/modules/egl/teglVGRenderUtil.cpp",
"$deqp_path/modules/egl/teglVGRenderUtil.hpp",
"$deqp_path/modules/egl/teglWideColorTests.cpp",
"$deqp_path/modules/egl/teglWideColorTests.hpp",
]
deqp_khr_common_sources = [
"$deqp_path/external/openglcts/modules/common/glcAggressiveShaderOptimizationsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcAggressiveShaderOptimizationsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcApiCoverageTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcApiCoverageTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcBindImageTextureTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcBindImageTextureTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcBlendEquationAdvancedTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcBlendEquationAdvancedTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcBufferObjectsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcBufferObjectsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcClipDistance.cpp",
"$deqp_path/external/openglcts/modules/common/glcClipDistance.hpp",
"$deqp_path/external/openglcts/modules/common/glcCompressedFormatTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcCompressedFormatTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcCompressedFormatTests_data.inl",
"$deqp_path/external/openglcts/modules/common/glcConfigList.cpp",
"$deqp_path/external/openglcts/modules/common/glcConfigList.hpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListCase.cpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListCase.hpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListEGL.cpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListEGL.hpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListWGL.cpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListWGL.hpp",
"$deqp_path/external/openglcts/modules/common/glcConfigPackage.cpp",
"$deqp_path/external/openglcts/modules/common/glcConfigPackage.hpp",
"$deqp_path/external/openglcts/modules/common/glcContext.cpp",
"$deqp_path/external/openglcts/modules/common/glcContext.hpp",
"$deqp_path/external/openglcts/modules/common/glcContextFlagsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcContextFlagsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcCullDistance.cpp",
"$deqp_path/external/openglcts/modules/common/glcCullDistance.hpp",
"$deqp_path/external/openglcts/modules/common/glcExposedExtensionsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcExposedExtensionsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcExtTokens.cpp",
"$deqp_path/external/openglcts/modules/common/glcExtTokens.hpp",
"$deqp_path/external/openglcts/modules/common/glcFragCoordConventionsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcFragCoordConventionsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcFragDepthTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcFragDepthTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcFramebufferBlitTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcFramebufferBlitTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcFramebufferCompleteness.cpp",
"$deqp_path/external/openglcts/modules/common/glcFramebufferCompleteness.hpp",
"$deqp_path/external/openglcts/modules/common/glcGLSLVectorConstructorTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcGLSLVectorConstructorTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcInfoTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcInfoTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcInternalformatTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcInternalformatTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcKHRDebugTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcKHRDebugTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcLayoutLocationTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcLayoutLocationTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcLimitTest.hpp",
"$deqp_path/external/openglcts/modules/common/glcLimitTest.inl",
"$deqp_path/external/openglcts/modules/common/glcMisc.cpp",
"$deqp_path/external/openglcts/modules/common/glcMisc.hpp",
"$deqp_path/external/openglcts/modules/common/glcMultipleContextsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcMultipleContextsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcNearestEdgeTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcNearestEdgeTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcNegativeTextureLookupFunctionsBiasTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcNegativeTextureLookupFunctionsBiasTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcNoDefaultContextPackage.cpp",
"$deqp_path/external/openglcts/modules/common/glcNoDefaultContextPackage.hpp",
"$deqp_path/external/openglcts/modules/common/glcNoErrorTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcNoErrorTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcPackedDepthStencilTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcPackedDepthStencilTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcPackedPixelsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcPackedPixelsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcParallelShaderCompileTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcParallelShaderCompileTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcPixelStorageModesTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcPixelStorageModesTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcPolygonOffsetClampTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcPolygonOffsetClampTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcRobustBufferAccessBehaviorTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcRobustBufferAccessBehaviorTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcRobustnessTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcRobustnessTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcSampleVariablesTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcSampleVariablesTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcSeparableProgramsTransformFeedbackTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcSeparableProgramsTransformFeedbackTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderConstExprTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderConstExprTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderFunctionTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderFunctionTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderGroupVoteTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderGroupVoteTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderImageLoadStoreTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderImageLoadStoreTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderIndexingTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderIndexingTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderIntegerMixTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderIntegerMixTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLibrary.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLibrary.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLibraryCase.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLibraryCase.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLoopTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLoopTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderMacroTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderMacroTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderMultisampleInterpolationTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderMultisampleInterpolationTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderNegativeTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderNegativeTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderRenderCase.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderRenderCase.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderStorageBufferObjectTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderStorageBufferObjectTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderStructTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderStructTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcSingleConfigTestPackage.cpp",
"$deqp_path/external/openglcts/modules/common/glcSingleConfigTestPackage.hpp",
"$deqp_path/external/openglcts/modules/common/glcSpirvUtils.cpp",
"$deqp_path/external/openglcts/modules/common/glcSpirvUtils.hpp",
"$deqp_path/external/openglcts/modules/common/glcTestCase.cpp",
"$deqp_path/external/openglcts/modules/common/glcTestCase.hpp",
"$deqp_path/external/openglcts/modules/common/glcTestCaseWrapper.cpp",
"$deqp_path/external/openglcts/modules/common/glcTestCaseWrapper.hpp",
"$deqp_path/external/openglcts/modules/common/glcTestPackage.cpp",
"$deqp_path/external/openglcts/modules/common/glcTestPackage.hpp",
"$deqp_path/external/openglcts/modules/common/glcTestSubcase.cpp",
"$deqp_path/external/openglcts/modules/common/glcTestSubcase.hpp",
"$deqp_path/external/openglcts/modules/common/glcTextureCompatibilityTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcTextureCompatibilityTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcTextureFilterAnisotropicTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcTextureFilterAnisotropicTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcTextureLodBasicTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcTextureLodBasicTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcTextureLodBiasTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcTextureLodBiasTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcTextureRepeatModeTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcTextureRepeatModeTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcTextureStencil8Tests.cpp",
"$deqp_path/external/openglcts/modules/common/glcTextureStencil8Tests.hpp",
"$deqp_path/external/openglcts/modules/common/glcTextureStorageTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcTextureStorageTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcTransformFeedbackTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcTransformFeedbackTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcUniformBlockCase.cpp",
"$deqp_path/external/openglcts/modules/common/glcUniformBlockCase.hpp",
"$deqp_path/external/openglcts/modules/common/glcUniformBlockNegativeTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcUniformBlockNegativeTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcUniformBlockTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcUniformBlockTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcViewportArrayTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcViewportArrayTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcWaiver.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsArithmeticTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsArithmeticTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBallotBroadcastTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBallotBroadcastTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBallotOtherTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBallotOtherTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBallotTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBallotTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBasicTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBasicTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBuiltinMaskVarTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBuiltinMaskVarTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBuiltinVarTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsBuiltinVarTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsClusteredTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsClusteredTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsPartitionedTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsPartitionedTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsQuadTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsQuadTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsShapeTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsShapeTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsShuffleTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsShuffleTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsTests.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsTestsUtils.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsTestsUtils.hpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsVoteTests.cpp",
"$deqp_path/external/openglcts/modules/common/subgroups/glcSubgroupsVoteTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/esextcTestCaseBase.cpp",
"$deqp_path/external/openglcts/modules/glesext/esextcTestCaseBase.hpp",
"$deqp_path/external/openglcts/modules/glesext/esextcTestPackage.cpp",
"$deqp_path/external/openglcts/modules/glesext/esextcTestPackage.hpp",
]
deqp_khr_test_module_headers = [
"$deqp_path/external/openglcts/modules/gles31/es31cDrawIndirectTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderSubroutineTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/tes31TestCase.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cArrayOfArraysTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cExplicitUniformLocationTest.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTestPackages.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cLayoutBindingTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cSampleShadingTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cSeparateShaderObjsTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderBitfieldOperationTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_elements_base_vertex/esextcDrawElementsBaseVertexTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5Tests.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_shadow_lod/esextcTextureShadowLodFunctionsTest.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedTests.hpp",
"$deqp_path/modules/gles2/tes2Context.hpp",
"$deqp_path/modules/gles2/tes2TestPackage.hpp",
"$deqp_path/modules/gles3/tes3Context.hpp",
"$deqp_path/modules/gles3/tes3TestPackage.hpp",
"$deqp_path/modules/gles31/tes31Context.hpp",
"$deqp_path/modules/gles31/tes31TestPackage.hpp",
]
deqp_khr_gl_sources = [
"$deqp_path/external/openglcts/modules/gl/gl3cCommonBugsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cCommonBugsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cDrawBuffers.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cDrawBuffers.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cGLSLnoperspectiveTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cGLSLnoperspectiveTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cGPUShader5Tests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cGPUShader5Tests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cGetUniform.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cGetUniform.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cPrimitiveRestart.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cPrimitiveRestart.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTestPackages.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTextureSizePromotion.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTextureSizePromotion.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTextureSwizzleTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTextureSwizzleTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTransformFeedback3Tests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTransformFeedback3Tests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTransformFeedbackOverflowQueryTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTransformFeedbackOverflowQueryTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTransformFeedbackTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTransformFeedbackTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cBufferStorageTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cBufferStorageTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cClipControlTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cClipControlTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cComputeShaderTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cComputeShaderTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cConditionalRenderInvertedTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cConditionalRenderInvertedTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureBufferTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureBufferTests.hpp",
# These tests are also disabled in the dEQP CMake build.
# "$deqp_path/external/openglcts/modules/gl/gl4cContextFlushControlTests.cpp",
# "$deqp_path/external/openglcts/modules/gl/gl4cContextFlushControlTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cClearTexImageAndSubImageTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cClearTexImageAndSubImageTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cCopyImageTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cCopyImageTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessBuffersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessFramebuffersAndRenderbuffersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessProgramPipelinesTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessQueriesTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessSamplersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessTexturesTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessVertexArraysTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessXFBTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cES31CompatibilityTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cES31CompatibilityTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGPUShaderFP64Tests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGPUShaderFP64Tests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGetTextureSubImageTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGetTextureSubImageTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGlSpirvTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGlSpirvTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cIncompleteTextureAccessTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cIncompleteTextureAccessTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cIndirectParametersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cIndirectParametersTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cLimitsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cLimitsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cMapBufferAlignmentTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cMapBufferAlignmentTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cMultiBindTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cMultiBindTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cPipelineStatisticsQueryTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cPipelineStatisticsQueryTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cPostDepthCoverageTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cPostDepthCoverageTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cProgramInterfaceQueryTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cProgramInterfaceQueryTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderAtomicCounterOpsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderAtomicCounterOpsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderAtomicCountersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderAtomicCountersTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderBallotTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderBallotTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderDrawParametersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderDrawParametersTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderImageLoadStoreTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderImageLoadStoreTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderImageSizeTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderImageSizeTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderStorageBufferObjectTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderStorageBufferObjectTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderSubroutineTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderTextureImageSamplesTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderTextureImageSamplesTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderViewportLayerArrayTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderViewportLayerArrayTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShadingLanguage420PackTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShadingLanguage420PackTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseBufferTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseBufferTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTexture2Tests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTexture2Tests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTextureClampTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTextureClampTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTextureTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTextureTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSpirvExtensionsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSpirvExtensionsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cStencilTexturingTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cStencilTexturingTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSyncTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSyncTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTestPackages.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTestPackages.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureBarrierTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureBarrierTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureFilterMinmaxTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureFilterMinmaxTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureGatherTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureGatherTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureQueryLevelsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureQueryLevelsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureQueryLodTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureQueryLodTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureViewTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureViewTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cVertexAttrib64BitTest.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cVertexAttrib64BitTest.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cVertexAttribBindingTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cVertexAttribBindingTests.hpp",
]
deqp_khr_gles2_sources = [
"$deqp_path/external/openglcts/modules/gles2/es2cTestPackage.cpp",
"$deqp_path/external/openglcts/modules/gles2/es2cTestPackage.hpp",
"$deqp_path/external/openglcts/modules/gles2/es2cTexture3DTests.cpp",
"$deqp_path/external/openglcts/modules/gles2/es2cTexture3DTests.hpp",
"$deqp_path/external/openglcts/modules/gles2/tes2TestCase.hpp",
]
deqp_khr_gles3_sources = [
"$deqp_path/external/openglcts/modules/gles3/es3cCopyTexImageConversionsTests.cpp",
"$deqp_path/external/openglcts/modules/gles3/es3cCopyTexImageConversionsTests.hpp",
"$deqp_path/external/openglcts/modules/gles3/es3cDriverErrorTests.cpp",
"$deqp_path/external/openglcts/modules/gles3/es3cDriverErrorTests.hpp",
"$deqp_path/external/openglcts/modules/gles3/es3cNumberParsingTests.cpp",
"$deqp_path/external/openglcts/modules/gles3/es3cNumberParsingTests.hpp",
"$deqp_path/external/openglcts/modules/gles3/es3cTestPackage.cpp",
"$deqp_path/external/openglcts/modules/gles3/es3cTestPackage.hpp",
"$deqp_path/external/openglcts/modules/gles3/tes3TestCase.hpp",
]
deqp_khr_gles31_sources = [
"$deqp_path/external/openglcts/modules/gles31/es31cArrayOfArraysTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cComputeShaderTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cComputeShaderTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cDrawIndirectTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cExplicitUniformLocationTest.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cFramebufferNoAttachmentsTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cFramebufferNoAttachmentsTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cLayoutBindingTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cProgramInterfaceQueryTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cProgramInterfaceQueryTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cSampleShadingTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cSeparateShaderObjsTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderAtomicCountersTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderAtomicCountersTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderBitfieldOperationTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderImageSizeTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderImageSizeTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTestPackage.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTestPackage.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureGatherTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureGatherTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleDependenciesTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleDependenciesTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleFunctionalTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleFunctionalTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGLCoverageTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGLCoverageTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetActiveUniformTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetActiveUniformTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetMultisamplefvTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetMultisamplefvTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetTexLevelParameterifvTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetTexLevelParameterifvTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleSampleMaskiTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleSampleMaskiTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTexStorage2DMultisampleTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTexStorage2DMultisampleTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTexStorage3DMultisampleTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTexStorage3DMultisampleTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cVertexAttribBindingTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cVertexAttribBindingTests.hpp",
]
deqp_khr_gles32_sources = [
"$deqp_path/external/openglcts/modules/gles32/es32cCopyImageTests.cpp",
"$deqp_path/external/openglcts/modules/gles32/es32cCopyImageTests.hpp",
"$deqp_path/external/openglcts/modules/gles32/es32cTestPackage.cpp",
"$deqp_path/external/openglcts/modules/gles32/es32cTestPackage.hpp",
]
deqp_khr_glesext_sources = [
"$deqp_path/external/openglcts/modules/glesext/disjoint_timer_query/esextcDisjointTimerQueryBase.cpp",
"$deqp_path/external/openglcts/modules/glesext/disjoint_timer_query/esextcDisjointTimerQueryBase.hpp",
"$deqp_path/external/openglcts/modules/glesext/disjoint_timer_query/esextcDisjointTimerQueryHandleReuse.cpp",
"$deqp_path/external/openglcts/modules/glesext/disjoint_timer_query/esextcDisjointTimerQueryHandleReuse.hpp",
"$deqp_path/external/openglcts/modules/glesext/disjoint_timer_query/esextcDisjointTimerQueryTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/disjoint_timer_query/esextcDisjointTimerQueryTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedBase.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedBase.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedBlending.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedBlending.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedColorMasks.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedColorMasks.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedCoverage.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedCoverage.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedDefaultState.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedDefaultState.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedNegative.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedNegative.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedSetGet.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedSetGet.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_elements_base_vertex/esextcDrawElementsBaseVertexTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateAPI.cpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateAPI.hpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateAttachmentTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateAttachmentTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateBasic.cpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateBasic.hpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateCombinedTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateCombinedTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateComplex.cpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateComplex.hpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateErrors.cpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateErrors.hpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateRenderTarget.cpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateRenderTarget.hpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/fragment_shading_rate/esextcFragmentShadingRateTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAPI.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAPI.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAdjacency.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAdjacency.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAdjacencyTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAdjacencyTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderBlitting.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderBlitting.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderClipping.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderClipping.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderConstantVariables.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderConstantVariables.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderInput.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderInput.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredFBO.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredFBO.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredFramebuffer.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredFramebuffer.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRendering.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRendering.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRenderingBoundaryCondition.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRenderingBoundaryCondition.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRenderingFBONoAttachment.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRenderingFBONoAttachment.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLimits.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLimits.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLinking.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLinking.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderNonarrayInput.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderNonarrayInput.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderOutput.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderOutput.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderPrimitiveCounter.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderPrimitiveCounter.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderPrimitiveQueries.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderPrimitiveQueries.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderProgramResource.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderProgramResource.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderQualifiers.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderQualifiers.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderRendering.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderRendering.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5AtomicCountersArrayIndexing.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5AtomicCountersArrayIndexing.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5FmaAccuracy.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5FmaAccuracy.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5FmaPrecision.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5FmaPrecision.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5ImagesArrayIndexing.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5ImagesArrayIndexing.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5PreciseQualifier.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5PreciseQualifier.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5SSBOArrayIndexing.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5SSBOArrayIndexing.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5SamplerArrayIndexing.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5SamplerArrayIndexing.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5Tests.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5TextureGatherOffset.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5TextureGatherOffset.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5UniformBlocksArrayIndexing.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5UniformBlocksArrayIndexing.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderBarrier.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderBarrier.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderErrors.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderErrors.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderInvariance.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderInvariance.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderIsolines.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderIsolines.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderMaxPatchVertices.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderMaxPatchVertices.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderPoints.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderPoints.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderPrimitiveCoverage.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderPrimitiveCoverage.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderProgramInterfaces.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderProgramInterfaces.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderProperties.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderProperties.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderQuads.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderQuads.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTCTE.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTCTE.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTessellation.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTessellation.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTriangles.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTriangles.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderUtils.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderUtils.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderVertexOrdering.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderVertexOrdering.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderVertexSpacing.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderVertexSpacing.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderWinding.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderWinding.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderXFB.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderXFB.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampBase.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampBase.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampCompressedResources.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampGetTexParameterIErrors.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampGetTexParameterIErrors.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampParameterBorderColorError.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampParameterBorderColorError.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampParameterTextureBorderColor.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampParameterTextureBorderColor.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplerParameterIError.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplerParameterIError.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplerParameterIWithWrongPname.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplerParameterIWithWrongPname.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplingTexture.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplingTexture.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplingTextureGroup.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplingTextureGroup.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampTexParameterIErrors.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampTexParameterIErrors.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferActiveUniformValidation.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferActiveUniformValidation.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferAtomicFunctions.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferAtomicFunctions.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferBufferParameters.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferBufferParameters.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferErrors.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferErrors.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferMAXSizeValidation.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferMAXSizeValidation.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferOperations.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferOperations.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferParamValueIntToFloatConversion.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferParamValueIntToFloatConversion.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferParameters.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferParameters.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferPrecision.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferPrecision.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferTextureBufferRange.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferTextureBufferRange.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayColorDepthAttachments.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayColorDepthAttachments.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayETC2Support.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayETC2Support.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayFBOIncompleteness.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayFBOIncompleteness.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayGenerateMipMap.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayGenerateMipMap.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayGetterCalls.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayGetterCalls.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageOperations.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageOperations.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageTextureSize.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageTextureSize.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageTextureSizeTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageTextureSizeTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArraySampling.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArraySampling.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArraySamplingResources.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayStencilAttachments.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayStencilAttachments.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArraySubImage3D.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArraySubImage3D.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayTex3DValidation.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayTex3DValidation.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_shadow_lod/esextcTextureShadowLodFunctionsTest.cpp",
]
deqp_framework_debase_sources = [
"$deqp_path/framework/delibs/debase/deDefs.c",
"$deqp_path/framework/delibs/debase/deDefs.h",
"$deqp_path/framework/delibs/debase/deFloat16.c",
"$deqp_path/framework/delibs/debase/deFloat16.h",
"$deqp_path/framework/delibs/debase/deInt32.c",
"$deqp_path/framework/delibs/debase/deInt32.h",
"$deqp_path/framework/delibs/debase/deInt32Test.c",
"$deqp_path/framework/delibs/debase/deMath.c",
"$deqp_path/framework/delibs/debase/deMath.h",
"$deqp_path/framework/delibs/debase/deMemory.c",
"$deqp_path/framework/delibs/debase/deMemory.h",
"$deqp_path/framework/delibs/debase/deRandom.c",
"$deqp_path/framework/delibs/debase/deRandom.h",
"$deqp_path/framework/delibs/debase/deSha1.c",
"$deqp_path/framework/delibs/debase/deSha1.h",
"$deqp_path/framework/delibs/debase/deString.c",
"$deqp_path/framework/delibs/debase/deString.h",
]
deqp_framework_delibs_sources = [
"$deqp_path/framework/delibs/deimage/deARGB.h",
"$deqp_path/framework/delibs/deimage/deImage.c",
"$deqp_path/framework/delibs/deimage/deTarga.c",
"$deqp_path/framework/delibs/depool/deMemPool.c",
"$deqp_path/framework/delibs/depool/dePoolArray.c",
"$deqp_path/framework/delibs/depool/dePoolHash.c",
"$deqp_path/framework/delibs/depool/dePoolHashArray.c",
"$deqp_path/framework/delibs/depool/dePoolHashSet.c",
"$deqp_path/framework/delibs/depool/dePoolHeap.c",
"$deqp_path/framework/delibs/depool/dePoolMultiSet.c",
"$deqp_path/framework/delibs/depool/dePoolSet.c",
"$deqp_path/framework/delibs/depool/dePoolStringBuilder.c",
"$deqp_path/framework/delibs/depool/dePoolTest.c",
"$deqp_path/framework/delibs/destream/deFileStream.c",
"$deqp_path/framework/delibs/destream/deInStream.h",
"$deqp_path/framework/delibs/destream/deOutStream.h",
"$deqp_path/framework/delibs/destream/deRingbuffer.c",
"$deqp_path/framework/delibs/destream/deStreamCpyThread.c",
"$deqp_path/framework/delibs/destream/deThreadStream.c",
"$deqp_path/framework/delibs/dethread/deAtomic.c",
"$deqp_path/framework/delibs/dethread/deSingleton.c",
"$deqp_path/framework/delibs/dethread/deThreadLocal.h",
"$deqp_path/framework/delibs/dethread/deThreadTest.c",
"$deqp_path/framework/delibs/deutil/deClock.c",
"$deqp_path/framework/delibs/deutil/deCommandLine.c",
"$deqp_path/framework/delibs/deutil/deDynamicLibrary.c",
"$deqp_path/framework/delibs/deutil/deFile.c",
"$deqp_path/framework/delibs/deutil/deProcess.c",
"$deqp_path/framework/delibs/deutil/deSocket.c",
"$deqp_path/framework/delibs/deutil/deTimer.c",
"$deqp_path/framework/delibs/deutil/deTimerTest.c",
]
deqp_framework_delibs_sources_win = [
"$deqp_path/framework/delibs/dethread/win32/deMutexWin32.c",
"$deqp_path/framework/delibs/dethread/win32/deSemaphoreWin32.c",
"$deqp_path/framework/delibs/dethread/win32/deThreadLocalWin32.c",
"$deqp_path/framework/delibs/dethread/win32/deThreadWin32.c",
]
deqp_framework_delibs_sources_unix = [
"$deqp_path/framework/delibs/dethread/unix/deMutexUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deSemaphoreMach.c",
"$deqp_path/framework/delibs/dethread/unix/deSemaphoreUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deThreadLocalUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deThreadUnix.c",
]
deqp_framework_decpp_sources = [
"$deqp_path/framework/delibs/decpp/deAppendList.cpp",
"$deqp_path/framework/delibs/decpp/deAppendList.hpp",
"$deqp_path/framework/delibs/decpp/deArrayBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deArrayBuffer.hpp",
"$deqp_path/framework/delibs/decpp/deArrayUtil.cpp",
"$deqp_path/framework/delibs/decpp/deArrayUtil.hpp",
"$deqp_path/framework/delibs/decpp/deBlockBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deBlockBuffer.hpp",
"$deqp_path/framework/delibs/decpp/deCommandLine.cpp",
"$deqp_path/framework/delibs/decpp/deCommandLine.hpp",
"$deqp_path/framework/delibs/decpp/deDefs.cpp",
"$deqp_path/framework/delibs/decpp/deDefs.hpp",
"$deqp_path/framework/delibs/decpp/deDirectoryIterator.cpp",
"$deqp_path/framework/delibs/decpp/deDirectoryIterator.hpp",
"$deqp_path/framework/delibs/decpp/deDynamicLibrary.cpp",
"$deqp_path/framework/delibs/decpp/deDynamicLibrary.hpp",
"$deqp_path/framework/delibs/decpp/deFilePath.cpp",
"$deqp_path/framework/delibs/decpp/deFilePath.hpp",
"$deqp_path/framework/delibs/decpp/deMemPool.cpp",
"$deqp_path/framework/delibs/decpp/deMemPool.hpp",
"$deqp_path/framework/delibs/decpp/deMeta.cpp",
"$deqp_path/framework/delibs/decpp/deMeta.hpp",
"$deqp_path/framework/delibs/decpp/deMutex.cpp",
"$deqp_path/framework/delibs/decpp/deMutex.hpp",
"$deqp_path/framework/delibs/decpp/dePoolArray.cpp",
"$deqp_path/framework/delibs/decpp/dePoolArray.hpp",
"$deqp_path/framework/delibs/decpp/dePoolString.cpp",
"$deqp_path/framework/delibs/decpp/dePoolString.hpp",
"$deqp_path/framework/delibs/decpp/deProcess.cpp",
"$deqp_path/framework/delibs/decpp/deProcess.hpp",
"$deqp_path/framework/delibs/decpp/deRandom.cpp",
"$deqp_path/framework/delibs/decpp/deRandom.hpp",
"$deqp_path/framework/delibs/decpp/deRingBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deRingBuffer.hpp",
"$deqp_path/framework/delibs/decpp/deSTLUtil.cpp",
"$deqp_path/framework/delibs/decpp/deSTLUtil.hpp",
"$deqp_path/framework/delibs/decpp/deSemaphore.cpp",
"$deqp_path/framework/delibs/decpp/deSemaphore.hpp",
"$deqp_path/framework/delibs/decpp/deSha1.cpp",
"$deqp_path/framework/delibs/decpp/deSha1.hpp",
"$deqp_path/framework/delibs/decpp/deSharedPtr.cpp",
"$deqp_path/framework/delibs/decpp/deSharedPtr.hpp",
"$deqp_path/framework/delibs/decpp/deSocket.cpp",
"$deqp_path/framework/delibs/decpp/deSocket.hpp",
"$deqp_path/framework/delibs/decpp/deSpinBarrier.cpp",
"$deqp_path/framework/delibs/decpp/deSpinBarrier.hpp",
"$deqp_path/framework/delibs/decpp/deStringUtil.cpp",
"$deqp_path/framework/delibs/decpp/deStringUtil.hpp",
"$deqp_path/framework/delibs/decpp/deThread.cpp",
"$deqp_path/framework/delibs/decpp/deThread.hpp",
"$deqp_path/framework/delibs/decpp/deThreadLocal.cpp",
"$deqp_path/framework/delibs/decpp/deThreadLocal.hpp",
"$deqp_path/framework/delibs/decpp/deThreadSafeRingBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deThreadSafeRingBuffer.hpp",
"$deqp_path/framework/delibs/decpp/deUniquePtr.cpp",
"$deqp_path/framework/delibs/decpp/deUniquePtr.hpp",
]
deqp_framework_xexml_sources = [
"$deqp_path/framework/xexml/xeDefs.cpp",
"$deqp_path/framework/xexml/xeDefs.hpp",
"$deqp_path/framework/xexml/xeXMLParser.cpp",
"$deqp_path/framework/xexml/xeXMLParser.hpp",
]
deqp_framework_opengl_sources = [
"$deqp_path/framework/egl/wrapper/eglwDefs.hpp",
"$deqp_path/framework/egl/wrapper/eglwEnums.hpp",
"$deqp_path/framework/egl/wrapper/eglwEnums.inl",
"$deqp_path/framework/egl/wrapper/eglwTypes.inl",
"$deqp_path/framework/opengl/gluCallLogUtil.inl",
"$deqp_path/framework/opengl/gluCallLogWrapper.cpp",
"$deqp_path/framework/opengl/gluCallLogWrapper.hpp",
"$deqp_path/framework/opengl/gluCallLogWrapper.inl",
"$deqp_path/framework/opengl/gluCallLogWrapperApi.inl",
"$deqp_path/framework/opengl/gluContextFactory.cpp",
"$deqp_path/framework/opengl/gluContextFactory.hpp",
"$deqp_path/framework/opengl/gluContextInfo.cpp",
"$deqp_path/framework/opengl/gluContextInfo.hpp",
"$deqp_path/framework/opengl/gluDefs.cpp",
"$deqp_path/framework/opengl/gluDefs.hpp",
"$deqp_path/framework/opengl/gluDrawUtil.cpp",
"$deqp_path/framework/opengl/gluDrawUtil.hpp",
"$deqp_path/framework/opengl/gluDummyRenderContext.cpp",
"$deqp_path/framework/opengl/gluDummyRenderContext.hpp",
"$deqp_path/framework/opengl/gluES3PlusWrapperFuncs.inl",
"$deqp_path/framework/opengl/gluFboRenderContext.cpp",
"$deqp_path/framework/opengl/gluFboRenderContext.hpp",
"$deqp_path/framework/opengl/gluObjectWrapper.cpp",
"$deqp_path/framework/opengl/gluObjectWrapper.hpp",
"$deqp_path/framework/opengl/gluPixelTransfer.cpp",
"$deqp_path/framework/opengl/gluPixelTransfer.hpp",
"$deqp_path/framework/opengl/gluPlatform.cpp",
"$deqp_path/framework/opengl/gluPlatform.hpp",
"$deqp_path/framework/opengl/gluProgramInterfaceQuery.cpp",
"$deqp_path/framework/opengl/gluProgramInterfaceQuery.hpp",
"$deqp_path/framework/opengl/gluQueryUtil.inl",
"$deqp_path/framework/opengl/gluRenderConfig.cpp",
"$deqp_path/framework/opengl/gluRenderConfig.hpp",
"$deqp_path/framework/opengl/gluRenderContext.cpp",
"$deqp_path/framework/opengl/gluRenderContext.hpp",
"$deqp_path/framework/opengl/gluShaderLibrary.cpp",
"$deqp_path/framework/opengl/gluShaderLibrary.hpp",
"$deqp_path/framework/opengl/gluShaderProgram.cpp",
"$deqp_path/framework/opengl/gluShaderProgram.hpp",
"$deqp_path/framework/opengl/gluShaderUtil.cpp",
"$deqp_path/framework/opengl/gluShaderUtil.hpp",
"$deqp_path/framework/opengl/gluStateReset.cpp",
"$deqp_path/framework/opengl/gluStateReset.hpp",
"$deqp_path/framework/opengl/gluStrUtil.cpp",
"$deqp_path/framework/opengl/gluStrUtil.hpp",
"$deqp_path/framework/opengl/gluStrUtil.inl",
"$deqp_path/framework/opengl/gluStrUtilPrototypes.inl",
"$deqp_path/framework/opengl/gluTexture.cpp",
"$deqp_path/framework/opengl/gluTexture.hpp",
"$deqp_path/framework/opengl/gluTextureTestUtil.cpp",
"$deqp_path/framework/opengl/gluTextureTestUtil.hpp",
"$deqp_path/framework/opengl/gluTextureUtil.cpp",
"$deqp_path/framework/opengl/gluTextureUtil.hpp",
"$deqp_path/framework/opengl/gluVarType.cpp",
"$deqp_path/framework/opengl/gluVarType.hpp",
"$deqp_path/framework/opengl/gluVarTypeUtil.cpp",
"$deqp_path/framework/opengl/gluVarTypeUtil.hpp",
"$deqp_path/framework/opengl/simplereference/sglrContext.cpp",
"$deqp_path/framework/opengl/simplereference/sglrContext.hpp",
"$deqp_path/framework/opengl/simplereference/sglrContextUtil.cpp",
"$deqp_path/framework/opengl/simplereference/sglrContextUtil.hpp",
"$deqp_path/framework/opengl/simplereference/sglrContextWrapper.cpp",
"$deqp_path/framework/opengl/simplereference/sglrContextWrapper.hpp",
"$deqp_path/framework/opengl/simplereference/sglrGLContext.cpp",
"$deqp_path/framework/opengl/simplereference/sglrGLContext.hpp",
"$deqp_path/framework/opengl/simplereference/sglrReferenceContext.cpp",
"$deqp_path/framework/opengl/simplereference/sglrReferenceContext.hpp",
"$deqp_path/framework/opengl/simplereference/sglrReferenceUtils.cpp",
"$deqp_path/framework/opengl/simplereference/sglrReferenceUtils.hpp",
"$deqp_path/framework/opengl/simplereference/sglrShaderProgram.cpp",
"$deqp_path/framework/opengl/simplereference/sglrShaderProgram.hpp",
"$deqp_path/framework/opengl/wrapper/glw.h",
"$deqp_path/framework/opengl/wrapper/glwApi.inl",
"$deqp_path/framework/opengl/wrapper/glwDefs.cpp",
"$deqp_path/framework/opengl/wrapper/glwDefs.hpp",
"$deqp_path/framework/opengl/wrapper/glwEnums.hpp",
"$deqp_path/framework/opengl/wrapper/glwEnums.inl",
"$deqp_path/framework/opengl/wrapper/glwFunctionLoader.hpp",
"$deqp_path/framework/opengl/wrapper/glwFunctionTypes.inl",
"$deqp_path/framework/opengl/wrapper/glwFunctions.cpp",
"$deqp_path/framework/opengl/wrapper/glwFunctions.hpp",
"$deqp_path/framework/opengl/wrapper/glwFunctions.inl",
"$deqp_path/framework/opengl/wrapper/glwImpl.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES20.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES20Direct.cpp",
"$deqp_path/framework/opengl/wrapper/glwInitES20Direct.hpp",
"$deqp_path/framework/opengl/wrapper/glwInitES20Direct.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES30.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES30Direct.cpp",
"$deqp_path/framework/opengl/wrapper/glwInitES30Direct.hpp",
"$deqp_path/framework/opengl/wrapper/glwInitES30Direct.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES31.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES31Direct.cpp",
"$deqp_path/framework/opengl/wrapper/glwInitES31Direct.hpp",
"$deqp_path/framework/opengl/wrapper/glwInitES31Direct.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES32.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES32Direct.cpp",
"$deqp_path/framework/opengl/wrapper/glwInitES32Direct.hpp",
"$deqp_path/framework/opengl/wrapper/glwInitES32Direct.inl",
"$deqp_path/framework/opengl/wrapper/glwInitExtES.inl",
"$deqp_path/framework/opengl/wrapper/glwInitExtGL.inl",
"$deqp_path/framework/opengl/wrapper/glwInitFunctions.cpp",
"$deqp_path/framework/opengl/wrapper/glwInitFunctions.hpp",
"$deqp_path/framework/opengl/wrapper/glwInitGL30.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL31.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL32.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL33.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL40.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL41.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL42.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL43.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL44.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL45.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL46.inl",
"$deqp_path/framework/opengl/wrapper/glwTypes.inl",
"$deqp_path/framework/opengl/wrapper/glwVersions.inl",
"$deqp_path/framework/opengl/wrapper/glwWrapper.cpp",
"$deqp_path/framework/opengl/wrapper/glwWrapper.hpp",
]
deqp_framework_egl_sources = [
"$deqp_path/framework/egl/egluCallLogWrapper.cpp",
"$deqp_path/framework/egl/egluCallLogWrapper.hpp",
"$deqp_path/framework/egl/egluCallLogWrapper.inl",
"$deqp_path/framework/egl/egluCallLogWrapperApi.inl",
"$deqp_path/framework/egl/egluConfigFilter.cpp",
"$deqp_path/framework/egl/egluConfigFilter.hpp",
"$deqp_path/framework/egl/egluConfigInfo.cpp",
"$deqp_path/framework/egl/egluConfigInfo.hpp",
"$deqp_path/framework/egl/egluDefs.cpp",
"$deqp_path/framework/egl/egluDefs.hpp",
"$deqp_path/framework/egl/egluGLContextFactory.cpp",
"$deqp_path/framework/egl/egluGLContextFactory.hpp",
"$deqp_path/framework/egl/egluGLFunctionLoader.cpp",
"$deqp_path/framework/egl/egluGLFunctionLoader.hpp",
"$deqp_path/framework/egl/egluGLUtil.cpp",
"$deqp_path/framework/egl/egluGLUtil.hpp",
"$deqp_path/framework/egl/egluNativeDisplay.cpp",
"$deqp_path/framework/egl/egluNativeDisplay.hpp",
"$deqp_path/framework/egl/egluNativePixmap.cpp",
"$deqp_path/framework/egl/egluNativePixmap.hpp",
"$deqp_path/framework/egl/egluNativeWindow.cpp",
"$deqp_path/framework/egl/egluNativeWindow.hpp",
"$deqp_path/framework/egl/egluPlatform.cpp",
"$deqp_path/framework/egl/egluPlatform.hpp",
"$deqp_path/framework/egl/egluStaticES20Library.inl",
"$deqp_path/framework/egl/egluStaticES30Library.inl",
"$deqp_path/framework/egl/egluStaticES31Library.inl",
"$deqp_path/framework/egl/egluStaticES32Library.inl",
"$deqp_path/framework/egl/egluStaticESLibrary.cpp",
"$deqp_path/framework/egl/egluStaticESLibrary.hpp",
"$deqp_path/framework/egl/egluStrUtil.cpp",
"$deqp_path/framework/egl/egluStrUtil.hpp",
"$deqp_path/framework/egl/egluStrUtil.inl",
"$deqp_path/framework/egl/egluStrUtilPrototypes.inl",
"$deqp_path/framework/egl/egluUnique.cpp",
"$deqp_path/framework/egl/egluUnique.hpp",
"$deqp_path/framework/egl/egluUtil.cpp",
"$deqp_path/framework/egl/egluUtil.hpp",
"$deqp_path/framework/egl/wrapper/eglw.h",
"$deqp_path/framework/egl/wrapper/eglwApi.inl",
"$deqp_path/framework/egl/wrapper/eglwDefs.cpp",
"$deqp_path/framework/egl/wrapper/eglwDefs.hpp",
"$deqp_path/framework/egl/wrapper/eglwEnums.hpp",
"$deqp_path/framework/egl/wrapper/eglwEnums.inl",
"$deqp_path/framework/egl/wrapper/eglwEnumsC.inl",
"$deqp_path/framework/egl/wrapper/eglwFuncPtrLibraryDecl.inl",
"$deqp_path/framework/egl/wrapper/eglwFuncPtrLibraryImpl.inl",
"$deqp_path/framework/egl/wrapper/eglwFunctionTypes.inl",
"$deqp_path/framework/egl/wrapper/eglwFunctions.cpp",
"$deqp_path/framework/egl/wrapper/eglwFunctions.hpp",
"$deqp_path/framework/egl/wrapper/eglwFunctions.inl",
"$deqp_path/framework/egl/wrapper/eglwImpl.inl",
"$deqp_path/framework/egl/wrapper/eglwImplExt.inl",
"$deqp_path/framework/egl/wrapper/eglwInitCore.inl",
"$deqp_path/framework/egl/wrapper/eglwInitExtensions.inl",
"$deqp_path/framework/egl/wrapper/eglwLibrary.cpp",
"$deqp_path/framework/egl/wrapper/eglwLibrary.hpp",
"$deqp_path/framework/egl/wrapper/eglwLibrary.inl",
"$deqp_path/framework/egl/wrapper/eglwStaticLibrary14.inl",
"$deqp_path/framework/egl/wrapper/eglwStaticLibrary15.inl",
"$deqp_path/framework/egl/wrapper/eglwTypes.inl",
"$deqp_path/framework/egl/wrapper/eglwWrapper.cpp",
"$deqp_path/framework/egl/wrapper/eglwWrapper.hpp",
]
deqp_framework_common_sources = [
"$deqp_path/framework/common/tcuApp.cpp",
"$deqp_path/framework/common/tcuApp.hpp",
"$deqp_path/framework/common/tcuArray.cpp",
"$deqp_path/framework/common/tcuArray.hpp",
"$deqp_path/framework/common/tcuAstcUtil.cpp",
"$deqp_path/framework/common/tcuAstcUtil.hpp",
"$deqp_path/framework/common/tcuBilinearImageCompare.cpp",
"$deqp_path/framework/common/tcuBilinearImageCompare.hpp",
"$deqp_path/framework/common/tcuCPUWarmup.cpp",
"$deqp_path/framework/common/tcuCPUWarmup.hpp",
"$deqp_path/framework/common/tcuCommandLine.cpp",
"$deqp_path/framework/common/tcuCommandLine.hpp",
"$deqp_path/framework/common/tcuCompressedTexture.cpp",
"$deqp_path/framework/common/tcuCompressedTexture.hpp",
"$deqp_path/framework/common/tcuDefs.cpp",
"$deqp_path/framework/common/tcuDefs.hpp",
"$deqp_path/framework/common/tcuEither.cpp",
"$deqp_path/framework/common/tcuEither.hpp",
"$deqp_path/framework/common/tcuFactoryRegistry.cpp",
"$deqp_path/framework/common/tcuFactoryRegistry.hpp",
"$deqp_path/framework/common/tcuFloat.cpp",
"$deqp_path/framework/common/tcuFloat.hpp",
"$deqp_path/framework/common/tcuFloatFormat.cpp",
"$deqp_path/framework/common/tcuFloatFormat.hpp",
"$deqp_path/framework/common/tcuFormatUtil.hpp",
"$deqp_path/framework/common/tcuFunctionLibrary.cpp",
"$deqp_path/framework/common/tcuFunctionLibrary.hpp",
"$deqp_path/framework/common/tcuFuzzyImageCompare.cpp",
"$deqp_path/framework/common/tcuFuzzyImageCompare.hpp",
"$deqp_path/framework/common/tcuImageCompare.cpp",
"$deqp_path/framework/common/tcuImageCompare.hpp",
"$deqp_path/framework/common/tcuImageIO.cpp",
"$deqp_path/framework/common/tcuImageIO.hpp",
"$deqp_path/framework/common/tcuInterval.cpp",
"$deqp_path/framework/common/tcuInterval.hpp",
"$deqp_path/framework/common/tcuMatrix.cpp",
"$deqp_path/framework/common/tcuMatrix.hpp",
"$deqp_path/framework/common/tcuMatrixUtil.hpp",
"$deqp_path/framework/common/tcuMaybe.cpp",
"$deqp_path/framework/common/tcuMaybe.hpp",
"$deqp_path/framework/common/tcuPixelFormat.hpp",
"$deqp_path/framework/common/tcuPlatform.cpp",
"$deqp_path/framework/common/tcuPlatform.hpp",
"$deqp_path/framework/common/tcuRGBA.cpp",
"$deqp_path/framework/common/tcuRGBA.hpp",
"$deqp_path/framework/common/tcuRandomValueIterator.cpp",
"$deqp_path/framework/common/tcuRandomValueIterator.hpp",
"$deqp_path/framework/common/tcuRasterizationVerifier.cpp",
"$deqp_path/framework/common/tcuRasterizationVerifier.hpp",
"$deqp_path/framework/common/tcuRenderTarget.cpp",
"$deqp_path/framework/common/tcuRenderTarget.hpp",
"$deqp_path/framework/common/tcuResource.cpp",
"$deqp_path/framework/common/tcuResource.hpp",
"$deqp_path/framework/common/tcuResultCollector.cpp",
"$deqp_path/framework/common/tcuResultCollector.hpp",
"$deqp_path/framework/common/tcuSRGB8Lut.inl",
"$deqp_path/framework/common/tcuSeedBuilder.cpp",
"$deqp_path/framework/common/tcuSeedBuilder.hpp",
"$deqp_path/framework/common/tcuStringTemplate.cpp",
"$deqp_path/framework/common/tcuStringTemplate.hpp",
"$deqp_path/framework/common/tcuSurface.cpp",
"$deqp_path/framework/common/tcuSurface.hpp",
"$deqp_path/framework/common/tcuSurfaceAccess.cpp",
"$deqp_path/framework/common/tcuSurfaceAccess.hpp",
"$deqp_path/framework/common/tcuTestCase.cpp",
"$deqp_path/framework/common/tcuTestCase.hpp",
"$deqp_path/framework/common/tcuTestContext.cpp",
"$deqp_path/framework/common/tcuTestContext.hpp",
"$deqp_path/framework/common/tcuTestHierarchyIterator.cpp",
"$deqp_path/framework/common/tcuTestHierarchyIterator.hpp",
"$deqp_path/framework/common/tcuTestHierarchyUtil.cpp",
"$deqp_path/framework/common/tcuTestHierarchyUtil.hpp",
"$deqp_path/framework/common/tcuTestLog.cpp",
"$deqp_path/framework/common/tcuTestLog.hpp",
"$deqp_path/framework/common/tcuTestPackage.cpp",
"$deqp_path/framework/common/tcuTestPackage.hpp",
"$deqp_path/framework/common/tcuTestSessionExecutor.cpp",
"$deqp_path/framework/common/tcuTestSessionExecutor.hpp",
"$deqp_path/framework/common/tcuTexCompareVerifier.cpp",
"$deqp_path/framework/common/tcuTexCompareVerifier.hpp",
"$deqp_path/framework/common/tcuTexLookupVerifier.cpp",
"$deqp_path/framework/common/tcuTexLookupVerifier.hpp",
"$deqp_path/framework/common/tcuTexVerifierUtil.cpp",
"$deqp_path/framework/common/tcuTexVerifierUtil.hpp",
"$deqp_path/framework/common/tcuTexture.cpp",
"$deqp_path/framework/common/tcuTexture.hpp",
"$deqp_path/framework/common/tcuTextureUtil.cpp",
"$deqp_path/framework/common/tcuTextureUtil.hpp",
"$deqp_path/framework/common/tcuThreadUtil.cpp",
"$deqp_path/framework/common/tcuThreadUtil.hpp",
"$deqp_path/framework/common/tcuVector.hpp",
"$deqp_path/framework/common/tcuVectorType.hpp",
"$deqp_path/framework/common/tcuVectorUtil.hpp",
"$deqp_path/framework/common/tcuWaiverUtil.cpp",
"$deqp_path/framework/common/tcuWaiverUtil.hpp",
"$deqp_path/framework/randomshaders/rsgBinaryOps.cpp",
"$deqp_path/framework/randomshaders/rsgBinaryOps.hpp",
"$deqp_path/framework/randomshaders/rsgBuiltinFunctions.cpp",
"$deqp_path/framework/randomshaders/rsgBuiltinFunctions.hpp",
"$deqp_path/framework/randomshaders/rsgDefs.cpp",
"$deqp_path/framework/randomshaders/rsgDefs.hpp",
"$deqp_path/framework/randomshaders/rsgExecutionContext.cpp",
"$deqp_path/framework/randomshaders/rsgExecutionContext.hpp",
"$deqp_path/framework/randomshaders/rsgExpression.cpp",
"$deqp_path/framework/randomshaders/rsgExpression.hpp",
"$deqp_path/framework/randomshaders/rsgExpressionGenerator.cpp",
"$deqp_path/framework/randomshaders/rsgExpressionGenerator.hpp",
"$deqp_path/framework/randomshaders/rsgFunctionGenerator.cpp",
"$deqp_path/framework/randomshaders/rsgFunctionGenerator.hpp",
"$deqp_path/framework/randomshaders/rsgGeneratorState.cpp",
"$deqp_path/framework/randomshaders/rsgGeneratorState.hpp",
"$deqp_path/framework/randomshaders/rsgNameAllocator.cpp",
"$deqp_path/framework/randomshaders/rsgNameAllocator.hpp",
"$deqp_path/framework/randomshaders/rsgParameters.cpp",
"$deqp_path/framework/randomshaders/rsgParameters.hpp",
"$deqp_path/framework/randomshaders/rsgPrettyPrinter.cpp",
"$deqp_path/framework/randomshaders/rsgPrettyPrinter.hpp",
"$deqp_path/framework/randomshaders/rsgProgramExecutor.cpp",
"$deqp_path/framework/randomshaders/rsgProgramExecutor.hpp",
"$deqp_path/framework/randomshaders/rsgProgramGenerator.cpp",
"$deqp_path/framework/randomshaders/rsgProgramGenerator.hpp",
"$deqp_path/framework/randomshaders/rsgSamplers.cpp",
"$deqp_path/framework/randomshaders/rsgSamplers.hpp",
"$deqp_path/framework/randomshaders/rsgShader.cpp",
"$deqp_path/framework/randomshaders/rsgShader.hpp",
"$deqp_path/framework/randomshaders/rsgShaderGenerator.cpp",
"$deqp_path/framework/randomshaders/rsgShaderGenerator.hpp",
"$deqp_path/framework/randomshaders/rsgStatement.cpp",
"$deqp_path/framework/randomshaders/rsgStatement.hpp",
"$deqp_path/framework/randomshaders/rsgTest.cpp",
"$deqp_path/framework/randomshaders/rsgToken.cpp",
"$deqp_path/framework/randomshaders/rsgToken.hpp",
"$deqp_path/framework/randomshaders/rsgUtils.cpp",
"$deqp_path/framework/randomshaders/rsgUtils.hpp",
"$deqp_path/framework/randomshaders/rsgVariable.cpp",
"$deqp_path/framework/randomshaders/rsgVariable.hpp",
"$deqp_path/framework/randomshaders/rsgVariableManager.cpp",
"$deqp_path/framework/randomshaders/rsgVariableManager.hpp",
"$deqp_path/framework/randomshaders/rsgVariableType.cpp",
"$deqp_path/framework/randomshaders/rsgVariableType.hpp",
"$deqp_path/framework/randomshaders/rsgVariableValue.cpp",
"$deqp_path/framework/randomshaders/rsgVariableValue.hpp",
"$deqp_path/framework/referencerenderer/rrDefs.cpp",
"$deqp_path/framework/referencerenderer/rrDefs.hpp",
"$deqp_path/framework/referencerenderer/rrFragmentOperations.cpp",
"$deqp_path/framework/referencerenderer/rrFragmentOperations.hpp",
"$deqp_path/framework/referencerenderer/rrFragmentPacket.hpp",
"$deqp_path/framework/referencerenderer/rrGenericVector.hpp",
"$deqp_path/framework/referencerenderer/rrMultisamplePixelBufferAccess.cpp",
"$deqp_path/framework/referencerenderer/rrMultisamplePixelBufferAccess.hpp",
"$deqp_path/framework/referencerenderer/rrPrimitiveAssembler.hpp",
"$deqp_path/framework/referencerenderer/rrPrimitivePacket.cpp",
"$deqp_path/framework/referencerenderer/rrPrimitivePacket.hpp",
"$deqp_path/framework/referencerenderer/rrPrimitiveTypes.hpp",
"$deqp_path/framework/referencerenderer/rrRasterizer.cpp",
"$deqp_path/framework/referencerenderer/rrRasterizer.hpp",
"$deqp_path/framework/referencerenderer/rrRenderState.hpp",
"$deqp_path/framework/referencerenderer/rrRenderer.cpp",
"$deqp_path/framework/referencerenderer/rrRenderer.hpp",
"$deqp_path/framework/referencerenderer/rrShaders.cpp",
"$deqp_path/framework/referencerenderer/rrShaders.hpp",
"$deqp_path/framework/referencerenderer/rrShadingContext.cpp",
"$deqp_path/framework/referencerenderer/rrShadingContext.hpp",
"$deqp_path/framework/referencerenderer/rrVertexAttrib.cpp",
"$deqp_path/framework/referencerenderer/rrVertexAttrib.hpp",
"$deqp_path/framework/referencerenderer/rrVertexPacket.cpp",
"$deqp_path/framework/referencerenderer/rrVertexPacket.hpp",
]
deqp_framework_qphelper_sources = [
"$deqp_path/framework/qphelper/qpCrashHandler.c",
"$deqp_path/framework/qphelper/qpCrashHandler.h",
"$deqp_path/framework/qphelper/qpDebugOut.c",
"$deqp_path/framework/qphelper/qpDebugOut.h",
"$deqp_path/framework/qphelper/qpInfo.c",
"$deqp_path/framework/qphelper/qpInfo.h",
"$deqp_path/framework/qphelper/qpTestLog.c",
"$deqp_path/framework/qphelper/qpTestLog.h",
"$deqp_path/framework/qphelper/qpWatchDog.c",
"$deqp_path/framework/qphelper/qpWatchDog.h",
"$deqp_path/framework/qphelper/qpXmlWriter.c",
"$deqp_path/framework/qphelper/qpXmlWriter.h",
]
deqp_glshared_sources = [
"$deqp_path/modules/glshared/glsAttributeLocationTests.cpp",
"$deqp_path/modules/glshared/glsAttributeLocationTests.hpp",
"$deqp_path/modules/glshared/glsBufferTestUtil.cpp",
"$deqp_path/modules/glshared/glsBufferTestUtil.hpp",
"$deqp_path/modules/glshared/glsBuiltinPrecisionTests.cpp",
"$deqp_path/modules/glshared/glsBuiltinPrecisionTests.hpp",
"$deqp_path/modules/glshared/glsCalibration.cpp",
"$deqp_path/modules/glshared/glsCalibration.hpp",
"$deqp_path/modules/glshared/glsDrawTest.cpp",
"$deqp_path/modules/glshared/glsDrawTest.hpp",
"$deqp_path/modules/glshared/glsFboCompletenessTests.cpp",
"$deqp_path/modules/glshared/glsFboCompletenessTests.hpp",
"$deqp_path/modules/glshared/glsFboUtil.cpp",
"$deqp_path/modules/glshared/glsFboUtil.hpp",
"$deqp_path/modules/glshared/glsFragOpInteractionCase.cpp",
"$deqp_path/modules/glshared/glsFragOpInteractionCase.hpp",
"$deqp_path/modules/glshared/glsFragmentOpUtil.cpp",
"$deqp_path/modules/glshared/glsFragmentOpUtil.hpp",
"$deqp_path/modules/glshared/glsInteractionTestUtil.cpp",
"$deqp_path/modules/glshared/glsInteractionTestUtil.hpp",
"$deqp_path/modules/glshared/glsLifetimeTests.cpp",
"$deqp_path/modules/glshared/glsLifetimeTests.hpp",
"$deqp_path/modules/glshared/glsLongStressCase.cpp",
"$deqp_path/modules/glshared/glsLongStressCase.hpp",
"$deqp_path/modules/glshared/glsLongStressTestUtil.cpp",
"$deqp_path/modules/glshared/glsLongStressTestUtil.hpp",
"$deqp_path/modules/glshared/glsMemoryStressCase.cpp",
"$deqp_path/modules/glshared/glsMemoryStressCase.hpp",
"$deqp_path/modules/glshared/glsRandomShaderCase.cpp",
"$deqp_path/modules/glshared/glsRandomShaderCase.hpp",
"$deqp_path/modules/glshared/glsRandomShaderProgram.cpp",
"$deqp_path/modules/glshared/glsRandomShaderProgram.hpp",
"$deqp_path/modules/glshared/glsRandomUniformBlockCase.cpp",
"$deqp_path/modules/glshared/glsRandomUniformBlockCase.hpp",
"$deqp_path/modules/glshared/glsSamplerObjectTest.cpp",
"$deqp_path/modules/glshared/glsSamplerObjectTest.hpp",
"$deqp_path/modules/glshared/glsScissorTests.cpp",
"$deqp_path/modules/glshared/glsScissorTests.hpp",
"$deqp_path/modules/glshared/glsShaderConstExprTests.cpp",
"$deqp_path/modules/glshared/glsShaderConstExprTests.hpp",
"$deqp_path/modules/glshared/glsShaderExecUtil.cpp",
"$deqp_path/modules/glshared/glsShaderExecUtil.hpp",
"$deqp_path/modules/glshared/glsShaderLibrary.cpp",
"$deqp_path/modules/glshared/glsShaderLibrary.hpp",
"$deqp_path/modules/glshared/glsShaderLibraryCase.cpp",
"$deqp_path/modules/glshared/glsShaderLibraryCase.hpp",
"$deqp_path/modules/glshared/glsShaderPerformanceCase.cpp",
"$deqp_path/modules/glshared/glsShaderPerformanceCase.hpp",
"$deqp_path/modules/glshared/glsShaderPerformanceMeasurer.cpp",
"$deqp_path/modules/glshared/glsShaderPerformanceMeasurer.hpp",
"$deqp_path/modules/glshared/glsShaderRenderCase.cpp",
"$deqp_path/modules/glshared/glsShaderRenderCase.hpp",
"$deqp_path/modules/glshared/glsStateChangePerfTestCases.cpp",
"$deqp_path/modules/glshared/glsStateChangePerfTestCases.hpp",
"$deqp_path/modules/glshared/glsStateQueryUtil.cpp",
"$deqp_path/modules/glshared/glsStateQueryUtil.hpp",
"$deqp_path/modules/glshared/glsTextureBufferCase.cpp",
"$deqp_path/modules/glshared/glsTextureBufferCase.hpp",
"$deqp_path/modules/glshared/glsTextureStateQueryTests.cpp",
"$deqp_path/modules/glshared/glsTextureStateQueryTests.hpp",
"$deqp_path/modules/glshared/glsTextureTestUtil.cpp",
"$deqp_path/modules/glshared/glsTextureTestUtil.hpp",
"$deqp_path/modules/glshared/glsUniformBlockCase.cpp",
"$deqp_path/modules/glshared/glsUniformBlockCase.hpp",
"$deqp_path/modules/glshared/glsVertexArrayTests.cpp",
"$deqp_path/modules/glshared/glsVertexArrayTests.hpp",
]
deqp_framework_platform_sources = [
"$deqp_path/framework/platform/null/tcuNullContextFactory.cpp",
"$deqp_path/framework/platform/null/tcuNullContextFactory.hpp",
"$deqp_path/framework/platform/null/tcuNullRenderContext.cpp",
"$deqp_path/framework/platform/win32/tcuWGL.hpp",
"$deqp_path/framework/platform/win32/tcuWGLContextFactory.hpp",
"$deqp_path/framework/platform/win32/tcuWin32EGLNativeDisplayFactory.hpp",
"$deqp_path/framework/platform/win32/tcuWin32Window.hpp",
]
deqp_libtester_sources = [
"$deqp_path/execserver/xsDefs.cpp",
"$deqp_path/execserver/xsDefs.hpp",
"$deqp_path/execserver/xsExecutionServer.cpp",
"$deqp_path/execserver/xsExecutionServer.hpp",
"$deqp_path/execserver/xsPosixFileReader.cpp",
"$deqp_path/execserver/xsPosixFileReader.hpp",
"$deqp_path/execserver/xsPosixTestProcess.cpp",
"$deqp_path/execserver/xsPosixTestProcess.hpp",
"$deqp_path/execserver/xsProtocol.cpp",
"$deqp_path/execserver/xsProtocol.hpp",
"$deqp_path/execserver/xsTcpServer.cpp",
"$deqp_path/execserver/xsTcpServer.hpp",
"$deqp_path/execserver/xsTestDriver.cpp",
"$deqp_path/execserver/xsTestDriver.hpp",
"$deqp_path/execserver/xsTestProcess.cpp",
"$deqp_path/execserver/xsTestProcess.hpp",
"$deqp_path/executor/xeBatchExecutor.cpp",
"$deqp_path/executor/xeBatchExecutor.hpp",
"$deqp_path/executor/xeBatchResult.cpp",
"$deqp_path/executor/xeBatchResult.hpp",
"$deqp_path/executor/xeCallQueue.cpp",
"$deqp_path/executor/xeCallQueue.hpp",
"$deqp_path/executor/xeCommLink.cpp",
"$deqp_path/executor/xeCommLink.hpp",
"$deqp_path/executor/xeContainerFormatParser.cpp",
"$deqp_path/executor/xeContainerFormatParser.hpp",
"$deqp_path/executor/xeLocalTcpIpLink.cpp",
"$deqp_path/executor/xeLocalTcpIpLink.hpp",
"$deqp_path/executor/xeTcpIpLink.cpp",
"$deqp_path/executor/xeTcpIpLink.hpp",
"$deqp_path/executor/xeTestCase.cpp",
"$deqp_path/executor/xeTestCase.hpp",
"$deqp_path/executor/xeTestCaseListParser.cpp",
"$deqp_path/executor/xeTestCaseListParser.hpp",
"$deqp_path/executor/xeTestCaseResult.cpp",
"$deqp_path/executor/xeTestCaseResult.hpp",
"$deqp_path/executor/xeTestLogParser.cpp",
"$deqp_path/executor/xeTestLogParser.hpp",
"$deqp_path/executor/xeTestLogWriter.cpp",
"$deqp_path/executor/xeTestLogWriter.hpp",
"$deqp_path/executor/xeTestResultParser.cpp",
"$deqp_path/executor/xeTestResultParser.hpp",
"$deqp_path/executor/xeXMLWriter.cpp",
"$deqp_path/executor/xeXMLWriter.hpp",
"deqp_support/tcuANGLENativeDisplayFactory.cpp",
"deqp_support/tcuANGLENativeDisplayFactory.h",
# TODO(jmadill): integrate with dEQP
"$angle_root/third_party/renderdoc/src/renderdoc_app.h",
"deqp_support/tcuRandomOrderExecutor.cpp",
"deqp_support/tcuRandomOrderExecutor.h",
"test_utils/RenderDoc.cpp",
"test_utils/RenderDoc.h",
]