Hash :
e1037e9b
Author :
Date :
2018-08-29T20:49:49
Avoid rebase_path() in tests/BUILD.gn. Adjust source paths so we don't need to use rebase_path() on all of them. BUG=angleproject:1569 Change-Id: I1af7678dd8961405446fec49731eba5294bcb586 Reviewed-on: https://chromium-review.googlesource.com/1196046 Commit-Queue: Frank Henigman <fjhenigman@chromium.org> Reviewed-by: Jamie Madill <jmadill@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
# 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.
# leading underscore makes this a local variable
_deqp_path = "../../third_party/deqp/src"
deqp_include_dirs = [
"$_deqp_path/executor",
"$_deqp_path/execserver",
"$_deqp_path/framework/common",
"$_deqp_path/framework/delibs/debase",
"$_deqp_path/framework/delibs/decpp",
"$_deqp_path/framework/delibs/depool",
"$_deqp_path/framework/delibs/dethread",
"$_deqp_path/framework/delibs/deutil",
"$_deqp_path/framework/delibs/destream",
"$_deqp_path/framework/egl",
"$_deqp_path/framework/egl/wrapper",
"$_deqp_path/framework/opengl",
"$_deqp_path/framework/opengl/simplereference",
"$_deqp_path/framework/opengl/wrapper",
"$_deqp_path/framework/platform/null",
"$_deqp_path/framework/qphelper",
"$_deqp_path/framework/randomshaders",
"$_deqp_path/framework/referencerenderer",
"$_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/glshared",
"$_deqp_path/modules/glusecases",
]
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/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/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/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/es3fApiCase.cpp",
"$_deqp_path/modules/gles3/functional/es3fApiCase.hpp",
"$_deqp_path/modules/gles3/functional/es3fASTCDecompressionCases.cpp",
"$_deqp_path/modules/gles3/functional/es3fASTCDecompressionCases.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/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/es3fFragmentOutputTests.cpp",
"$_deqp_path/modules/gles3/functional/es3fFragmentOutputTests.hpp",
"$_deqp_path/modules/gles3/functional/es3fFragOpInteractionTests.cpp",
"$_deqp_path/modules/gles3/functional/es3fFragOpInteractionTests.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/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/es3fShaderMetamorphicTests.cpp",
"$_deqp_path/modules/gles3/functional/es3fShaderMetamorphicTests.hpp",
"$_deqp_path/modules/gles3/functional/es3fShaderMatrixTests.cpp",
"$_deqp_path/modules/gles3/functional/es3fShaderMatrixTests.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/tes3TestPackage.cpp",
"$_deqp_path/modules/gles3/tes3TestPackage.hpp",
"$_deqp_path/modules/gles3/tes3TestPackageEntry.cpp",
]
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/es31fDrawBuffersIndexedTests.cpp",
"$_deqp_path/modules/gles31/functional/es31fDrawBuffersIndexedTests.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/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/es31fNegativeSSBOBlockTests.cpp",
"$_deqp_path/modules/gles31/functional/es31fNegativeSSBOBlockTests.hpp",
"$_deqp_path/modules/gles31/functional/es31fNegativeStateApiTests.cpp",
"$_deqp_path/modules/gles31/functional/es31fNegativeStateApiTests.hpp",
"$_deqp_path/modules/gles31/functional/es31fNegativeTestShared.cpp",
"$_deqp_path/modules/gles31/functional/es31fNegativeTestShared.hpp",
"$_deqp_path/modules/gles31/functional/es31fNegativeTessellationTests.cpp",
"$_deqp_path/modules/gles31/functional/es31fNegativeTessellationTests.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/tes31TestPackage.cpp",
"$_deqp_path/modules/gles31/tes31TestPackage.hpp",
"$_deqp_path/modules/gles31/tes31TestPackageEntry.cpp",
]
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/teglGetFrameTimestampsTests.cpp",
"$_deqp_path/modules/egl/teglGetFrameTimestampsTests.hpp",
"$_deqp_path/modules/egl/teglGetProcAddressTests.cpp",
"$_deqp_path/modules/egl/teglGetProcAddressTests.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/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/teglPreservingSwapTests.cpp",
"$_deqp_path/modules/egl/teglPreservingSwapTests.hpp",
"$_deqp_path/modules/egl/teglPartialUpdateTests.cpp",
"$_deqp_path/modules/egl/teglPartialUpdateTests.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_libtester_decpp_sources = [
"$_deqp_path/framework/delibs/decpp/deArrayBuffer.cpp",
"$_deqp_path/framework/delibs/decpp/deBlockBuffer.cpp",
"$_deqp_path/framework/delibs/decpp/deCommandLine.cpp",
"$_deqp_path/framework/delibs/decpp/deDefs.cpp",
"$_deqp_path/framework/delibs/decpp/deDirectoryIterator.cpp",
"$_deqp_path/framework/delibs/decpp/deDynamicLibrary.cpp",
"$_deqp_path/framework/delibs/decpp/deFilePath.cpp",
"$_deqp_path/framework/delibs/decpp/deMemPool.cpp",
"$_deqp_path/framework/delibs/decpp/deMutex.cpp",
"$_deqp_path/framework/delibs/decpp/dePoolArray.cpp",
"$_deqp_path/framework/delibs/decpp/dePoolString.cpp",
"$_deqp_path/framework/delibs/decpp/deProcess.cpp",
"$_deqp_path/framework/delibs/decpp/deRandom.cpp",
"$_deqp_path/framework/delibs/decpp/deRingBuffer.cpp",
"$_deqp_path/framework/delibs/decpp/deSemaphore.cpp",
"$_deqp_path/framework/delibs/decpp/deSharedPtr.cpp",
"$_deqp_path/framework/delibs/decpp/deSha1.cpp",
"$_deqp_path/framework/delibs/decpp/deSocket.cpp",
"$_deqp_path/framework/delibs/decpp/deSTLUtil.cpp",
"$_deqp_path/framework/delibs/decpp/deStringUtil.cpp",
"$_deqp_path/framework/delibs/decpp/deThread.cpp",
"$_deqp_path/framework/delibs/decpp/deThreadLocal.cpp",
"$_deqp_path/framework/delibs/decpp/deThreadSafeRingBuffer.cpp",
"$_deqp_path/framework/delibs/decpp/deUniquePtr.cpp",
]
deqp_libtester_sources = [
"$_deqp_path/execserver/xsDefs.cpp",
"$_deqp_path/execserver/xsExecutionServer.cpp",
"$_deqp_path/execserver/xsPosixFileReader.cpp",
"$_deqp_path/execserver/xsPosixTestProcess.cpp",
"$_deqp_path/execserver/xsProtocol.cpp",
"$_deqp_path/execserver/xsTcpServer.cpp",
"$_deqp_path/execserver/xsTestDriver.cpp",
"$_deqp_path/execserver/xsTestProcess.cpp",
"$_deqp_path/executor/xeBatchExecutor.cpp",
"$_deqp_path/executor/xeBatchResult.cpp",
"$_deqp_path/executor/xeCallQueue.cpp",
"$_deqp_path/executor/xeCommLink.cpp",
"$_deqp_path/executor/xeContainerFormatParser.cpp",
"$_deqp_path/executor/xeDefs.cpp",
"$_deqp_path/executor/xeLocalTcpIpLink.cpp",
"$_deqp_path/executor/xeTcpIpLink.cpp",
"$_deqp_path/executor/xeTestCase.cpp",
"$_deqp_path/executor/xeTestCaseListParser.cpp",
"$_deqp_path/executor/xeTestCaseResult.cpp",
"$_deqp_path/executor/xeTestLogParser.cpp",
"$_deqp_path/executor/xeTestLogWriter.cpp",
"$_deqp_path/executor/xeTestResultParser.cpp",
"$_deqp_path/executor/xeXMLParser.cpp",
"$_deqp_path/executor/xeXMLWriter.cpp",
"$_deqp_path/framework/common/tcuApp.cpp",
"$_deqp_path/framework/common/tcuAstcUtil.cpp",
"$_deqp_path/framework/common/tcuBilinearImageCompare.cpp",
"$_deqp_path/framework/common/tcuCommandLine.cpp",
"$_deqp_path/framework/common/tcuCompressedTexture.cpp",
"$_deqp_path/framework/common/tcuCPUWarmup.cpp",
"$_deqp_path/framework/common/tcuDefs.cpp",
"$_deqp_path/framework/common/tcuEither.cpp",
"$_deqp_path/framework/common/tcuFactoryRegistry.cpp",
"$_deqp_path/framework/common/tcuFloatFormat.cpp",
"$_deqp_path/framework/common/tcuFunctionLibrary.cpp",
"$_deqp_path/framework/common/tcuFuzzyImageCompare.cpp",
"$_deqp_path/framework/common/tcuImageCompare.cpp",
"$_deqp_path/framework/common/tcuImageIO.cpp",
"$_deqp_path/framework/common/tcuInterval.cpp",
"$_deqp_path/framework/common/tcuPlatform.cpp",
"$_deqp_path/framework/common/tcuRandomValueIterator.cpp",
"$_deqp_path/framework/common/tcuRasterizationVerifier.cpp",
"$_deqp_path/framework/common/tcuRasterizationVerifier.hpp",
"$_deqp_path/framework/common/tcuRenderTarget.cpp",
"$_deqp_path/framework/common/tcuResource.cpp",
"$_deqp_path/framework/common/tcuResultCollector.cpp",
"$_deqp_path/framework/common/tcuRGBA.cpp",
"$_deqp_path/framework/common/tcuStringTemplate.cpp",
"$_deqp_path/framework/common/tcuSurface.cpp",
"$_deqp_path/framework/common/tcuSurfaceAccess.cpp",
"$_deqp_path/framework/common/tcuSurfaceAccess.hpp",
"$_deqp_path/framework/common/tcuTestCase.cpp",
"$_deqp_path/framework/common/tcuTestContext.cpp",
"$_deqp_path/framework/common/tcuTestHierarchyIterator.cpp",
"$_deqp_path/framework/common/tcuTestHierarchyUtil.cpp",
"$_deqp_path/framework/common/tcuTestLog.cpp",
"$_deqp_path/framework/common/tcuTestPackage.cpp",
"$_deqp_path/framework/common/tcuTestSessionExecutor.cpp",
"$_deqp_path/framework/common/tcuTexCompareVerifier.cpp",
"$_deqp_path/framework/common/tcuTexLookupVerifier.cpp",
"$_deqp_path/framework/common/tcuTexture.cpp",
"$_deqp_path/framework/common/tcuTextureUtil.cpp",
"$_deqp_path/framework/common/tcuTexVerifierUtil.cpp",
"$_deqp_path/framework/common/tcuThreadUtil.cpp",
"$_deqp_path/framework/common/tcuSeedBuilder.cpp",
"$_deqp_path/framework/delibs/debase/deDefs.c",
"$_deqp_path/framework/delibs/debase/deFloat16.c",
"$_deqp_path/framework/delibs/debase/deInt32.c",
"$_deqp_path/framework/delibs/debase/deInt32Test.c",
"$_deqp_path/framework/delibs/debase/deMath.c",
"$_deqp_path/framework/delibs/debase/deMemory.c",
"$_deqp_path/framework/delibs/debase/deRandom.c",
"$_deqp_path/framework/delibs/debase/deString.c",
"$_deqp_path/framework/delibs/debase/deSha1.c",
"$_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/dePoolHashArray.c",
"$_deqp_path/framework/delibs/depool/dePoolHash.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/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/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_path/framework/egl/egluCallLogWrapper.cpp",
"$_deqp_path/framework/egl/egluConfigFilter.cpp",
"$_deqp_path/framework/egl/egluConfigInfo.cpp",
"$_deqp_path/framework/egl/egluDefs.cpp",
"$_deqp_path/framework/egl/egluGLContextFactory.cpp",
"$_deqp_path/framework/egl/egluGLFunctionLoader.cpp",
"$_deqp_path/framework/egl/egluGLUtil.cpp",
# TODO(jmadill): Remove override when upstreamed. http://anglebug.com/2564
#"$_deqp_path/framework/egl/egluNativeDisplay.cpp",
"deqp_support/egluNativeDisplay_override.cpp",
"deqp_support/egluNativeDisplay_override.hpp",
"$_deqp_path/framework/egl/egluNativePixmap.cpp",
"$_deqp_path/framework/egl/egluNativeWindow.cpp",
"$_deqp_path/framework/egl/egluPlatform.cpp",
"$_deqp_path/framework/egl/egluStaticESLibrary.cpp",
"$_deqp_path/framework/egl/egluStrUtil.cpp",
"$_deqp_path/framework/egl/egluUnique.cpp",
# TODO(jmadill): Remove override when upstreamed. http://anglebug.com/2564
#"$_deqp_path/framework/egl/egluUtil.cpp",
"deqp_support/egluUtil_override.cpp",
"$_deqp_path/framework/egl/wrapper/eglwDefs.cpp",
"$_deqp_path/framework/egl/wrapper/eglwFunctions.cpp",
"$_deqp_path/framework/egl/wrapper/eglwLibrary.cpp",
"$_deqp_path/framework/opengl/gluCallLogWrapper.cpp",
"$_deqp_path/framework/opengl/gluContextFactory.cpp",
"$_deqp_path/framework/opengl/gluContextInfo.cpp",
"$_deqp_path/framework/opengl/gluDefs.cpp",
"$_deqp_path/framework/opengl/gluDrawUtil.cpp",
"$_deqp_path/framework/opengl/gluDummyRenderContext.cpp",
"$_deqp_path/framework/opengl/gluFboRenderContext.cpp",
"$_deqp_path/framework/opengl/gluObjectWrapper.cpp",
"$_deqp_path/framework/opengl/gluPixelTransfer.cpp",
"$_deqp_path/framework/opengl/gluPlatform.cpp",
"$_deqp_path/framework/opengl/gluProgramInterfaceQuery.cpp",
"$_deqp_path/framework/opengl/gluRenderConfig.cpp",
"$_deqp_path/framework/opengl/gluRenderContext.cpp",
"$_deqp_path/framework/opengl/gluShaderLibrary.cpp",
"$_deqp_path/framework/opengl/gluShaderProgram.cpp",
"$_deqp_path/framework/opengl/gluShaderUtil.cpp",
"$_deqp_path/framework/opengl/gluStateReset.cpp",
"$_deqp_path/framework/opengl/gluStrUtil.cpp",
"$_deqp_path/framework/opengl/gluTexture.cpp",
"$_deqp_path/framework/opengl/gluTextureUtil.cpp",
"$_deqp_path/framework/opengl/gluTextureTestUtil.cpp",
"$_deqp_path/framework/opengl/gluTextureTestUtil.hpp",
"$_deqp_path/framework/opengl/gluVarType.cpp",
"$_deqp_path/framework/opengl/gluVarTypeUtil.cpp",
"$_deqp_path/framework/opengl/simplereference/sglrContext.cpp",
"$_deqp_path/framework/opengl/simplereference/sglrContextUtil.cpp",
"$_deqp_path/framework/opengl/simplereference/sglrContextWrapper.cpp",
"$_deqp_path/framework/opengl/simplereference/sglrGLContext.cpp",
"$_deqp_path/framework/opengl/simplereference/sglrReferenceContext.cpp",
"$_deqp_path/framework/opengl/simplereference/sglrReferenceUtils.cpp",
"$_deqp_path/framework/opengl/simplereference/sglrShaderProgram.cpp",
"$_deqp_path/framework/opengl/wrapper/glwDefs.cpp",
"$_deqp_path/framework/opengl/wrapper/glwFunctions.cpp",
"$_deqp_path/framework/opengl/wrapper/glwInitES20Direct.cpp",
"$_deqp_path/framework/opengl/wrapper/glwInitES30Direct.cpp",
"$_deqp_path/framework/opengl/wrapper/glwInitFunctions.cpp",
"$_deqp_path/framework/opengl/wrapper/glwWrapper.cpp",
"$_deqp_path/framework/platform/null/tcuNullContextFactory.cpp",
"$_deqp_path/framework/platform/null/tcuNullContextFactory.hpp",
"$_deqp_path/framework/platform/null/tcuNullRenderContext.cpp",
"$_deqp_path/framework/qphelper/qpCrashHandler.c",
"$_deqp_path/framework/qphelper/qpDebugOut.c",
"$_deqp_path/framework/qphelper/qpInfo.c",
"$_deqp_path/framework/qphelper/qpTestLog.c",
"$_deqp_path/framework/qphelper/qpWatchDog.c",
"$_deqp_path/framework/qphelper/qpXmlWriter.c",
"$_deqp_path/framework/randomshaders/rsgBinaryOps.cpp",
"$_deqp_path/framework/randomshaders/rsgBuiltinFunctions.cpp",
"$_deqp_path/framework/randomshaders/rsgDefs.cpp",
"$_deqp_path/framework/randomshaders/rsgExecutionContext.cpp",
"$_deqp_path/framework/randomshaders/rsgExpression.cpp",
"$_deqp_path/framework/randomshaders/rsgExpressionGenerator.cpp",
"$_deqp_path/framework/randomshaders/rsgFunctionGenerator.cpp",
"$_deqp_path/framework/randomshaders/rsgGeneratorState.cpp",
"$_deqp_path/framework/randomshaders/rsgNameAllocator.cpp",
"$_deqp_path/framework/randomshaders/rsgParameters.cpp",
"$_deqp_path/framework/randomshaders/rsgPrettyPrinter.cpp",
"$_deqp_path/framework/randomshaders/rsgProgramExecutor.cpp",
"$_deqp_path/framework/randomshaders/rsgProgramGenerator.cpp",
"$_deqp_path/framework/randomshaders/rsgSamplers.cpp",
"$_deqp_path/framework/randomshaders/rsgShader.cpp",
"$_deqp_path/framework/randomshaders/rsgShaderGenerator.cpp",
"$_deqp_path/framework/randomshaders/rsgStatement.cpp",
"$_deqp_path/framework/randomshaders/rsgToken.cpp",
"$_deqp_path/framework/randomshaders/rsgUtils.cpp",
"$_deqp_path/framework/randomshaders/rsgVariable.cpp",
"$_deqp_path/framework/randomshaders/rsgVariableManager.cpp",
"$_deqp_path/framework/randomshaders/rsgVariableType.cpp",
"$_deqp_path/framework/randomshaders/rsgVariableValue.cpp",
"$_deqp_path/framework/referencerenderer/rrDefs.cpp",
"$_deqp_path/framework/referencerenderer/rrFragmentOperations.cpp",
"$_deqp_path/framework/referencerenderer/rrMultisamplePixelBufferAccess.cpp",
"$_deqp_path/framework/referencerenderer/rrPrimitivePacket.cpp",
"$_deqp_path/framework/referencerenderer/rrRasterizer.cpp",
"$_deqp_path/framework/referencerenderer/rrRenderer.cpp",
"$_deqp_path/framework/referencerenderer/rrShaders.cpp",
"$_deqp_path/framework/referencerenderer/rrShadingContext.cpp",
"$_deqp_path/framework/referencerenderer/rrVertexAttrib.cpp",
"$_deqp_path/framework/referencerenderer/rrVertexPacket.cpp",
"$_deqp_path/modules/glshared/glsAttributeLocationTests.cpp",
"$_deqp_path/modules/glshared/glsBufferTestUtil.cpp",
"$_deqp_path/modules/glshared/glsBuiltinPrecisionTests.cpp",
"$_deqp_path/modules/glshared/glsCalibration.cpp",
"$_deqp_path/modules/glshared/glsDrawTest.cpp",
"$_deqp_path/modules/glshared/glsFboCompletenessTests.cpp",
"$_deqp_path/modules/glshared/glsFboUtil.cpp",
"$_deqp_path/modules/glshared/glsFragmentOpUtil.cpp",
"$_deqp_path/modules/glshared/glsFragOpInteractionCase.cpp",
"$_deqp_path/modules/glshared/glsInteractionTestUtil.cpp",
"$_deqp_path/modules/glshared/glsLifetimeTests.cpp",
"$_deqp_path/modules/glshared/glsLongStressCase.cpp",
"$_deqp_path/modules/glshared/glsLongStressTestUtil.cpp",
"$_deqp_path/modules/glshared/glsMemoryStressCase.cpp",
"$_deqp_path/modules/glshared/glsRandomShaderCase.cpp",
"$_deqp_path/modules/glshared/glsRandomShaderProgram.cpp",
"$_deqp_path/modules/glshared/glsRandomUniformBlockCase.cpp",
"$_deqp_path/modules/glshared/glsSamplerObjectTest.cpp",
"$_deqp_path/modules/glshared/glsScissorTests.cpp",
"$_deqp_path/modules/glshared/glsShaderConstExprTests.cpp",
"$_deqp_path/modules/glshared/glsShaderExecUtil.cpp",
"$_deqp_path/modules/glshared/glsShaderLibraryCase.cpp",
"$_deqp_path/modules/glshared/glsShaderLibrary.cpp",
"$_deqp_path/modules/glshared/glsShaderPerformanceCase.cpp",
"$_deqp_path/modules/glshared/glsShaderPerformanceMeasurer.cpp",
"$_deqp_path/modules/glshared/glsShaderRenderCase.cpp",
"$_deqp_path/modules/glshared/glsStateQueryUtil.cpp",
"$_deqp_path/modules/glshared/glsStateChangePerfTestCases.cpp",
"$_deqp_path/modules/glshared/glsTextureBufferCase.cpp",
"$_deqp_path/modules/glshared/glsTextureStateQueryTests.cpp",
"$_deqp_path/modules/glshared/glsTextureTestUtil.cpp",
"$_deqp_path/modules/glshared/glsUniformBlockCase.cpp",
"$_deqp_path/modules/glshared/glsVertexArrayTests.cpp",
"deqp_support/tcuANGLENativeDisplayFactory.cpp",
"deqp_support/tcuANGLENativeDisplayFactory.h",
# TODO(jmadill): integrate with dEQP
"deqp_support/tcuRandomOrderExecutor.cpp",
"deqp_support/tcuRandomOrderExecutor.h",
]
deqp_libtester_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_libtester_sources_unix = [
"$_deqp_path/framework/delibs/dethread/unix/deMutexUnix.c",
"$_deqp_path/framework/delibs/dethread/unix/deNamedSemaphoreUnix.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_libtester_sources_android = [
"$_deqp_path/framework/platform/android/tcuAndroidInternals.cpp",
"$_deqp_path/framework/platform/android/tcuAndroidInternals.hpp",
]
deqp_gpu_test_expectations_sources = [
"third_party/gpu_test_expectations/gpu_info.cc",
"third_party/gpu_test_expectations/gpu_info.h",
"third_party/gpu_test_expectations/gpu_test_config.cc",
"third_party/gpu_test_expectations/gpu_test_config.h",
"third_party/gpu_test_expectations/gpu_test_expectations_parser.cc",
"third_party/gpu_test_expectations/gpu_test_expectations_parser.h",
]
deqp_gpu_test_expectations_sources_mac = [
"third_party/gpu_test_expectations/gpu_test_config_mac.mm",
"third_party/gpu_test_expectations/gpu_test_config_mac.h",
]