1# Copyright 2015 The ANGLE Project Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5angle_perf_tests_sources = [ 6 "perf_tests/BindingPerf.cpp", 7 "perf_tests/BlitFramebufferPerf.cpp", 8 "perf_tests/BufferSubData.cpp", 9 "perf_tests/ClearPerf.cpp", 10 "perf_tests/DispatchComputePerf.cpp", 11 "perf_tests/DrawCallPerf.cpp", 12 "perf_tests/DrawElementsPerf.cpp", 13 "perf_tests/DynamicPromotionPerfTest.cpp", 14 "perf_tests/EGLMakeCurrentPerf.cpp", 15 "perf_tests/FramebufferAttachmentPerfTest.cpp", 16 "perf_tests/GenerateMipmapPerf.cpp", 17 "perf_tests/ImagelessFramebufferPerfTest.cpp", 18 "perf_tests/IndexConversionPerf.cpp", 19 "perf_tests/InstancingPerf.cpp", 20 "perf_tests/InterleavedAttributeData.cpp", 21 "perf_tests/LinkProgramPerfTest.cpp", 22 "perf_tests/MapBufferRange.cpp", 23 "perf_tests/MultisampledRenderToTexturePerf.cpp", 24 "perf_tests/MultisampledSwapchainResolve.cpp", 25 "perf_tests/MultiviewPerf.cpp", 26 "perf_tests/PointSprites.cpp", 27 "perf_tests/PreRotationPerf.cpp", 28 "perf_tests/ProgramPipelineObjectPerfTest.cpp", 29 "perf_tests/TextureSampling.cpp", 30 "perf_tests/TextureUploadPerf.cpp", 31 "perf_tests/TexturesPerf.cpp", 32 "perf_tests/UniformsPerf.cpp", 33 "perf_tests/VertexArrayPerfTest.cpp", 34 "perf_tests/VulkanBarriersPerf.cpp", 35 "perf_tests/glmark2Benchmark.cpp", 36 "test_utils/ANGLETest.cpp", 37 "test_utils/ANGLETest.h", 38 "test_utils/MultiviewTest.cpp", 39 "test_utils/MultiviewTest.h", 40 "test_utils/draw_call_perf_utils.cpp", 41 "test_utils/draw_call_perf_utils.h", 42] 43 44angle_white_box_perf_tests_sources = [ 45 "../image_util/AstcDecompressorTestUtils.h", 46 "angle_unittests_utils.h", 47 "perf_tests/AstcDecompressorPerf.cpp", 48 "perf_tests/BitSetIteratorPerf.cpp", 49 "perf_tests/CompilerPerf.cpp", 50 "perf_tests/EGLInitializePerf.cpp", # Uses ANGLEGetDisplayPlatform, a 51 # non-standard EP. 52 "perf_tests/ResultPerf.cpp", 53] 54 55angle_white_box_perf_tests_vulkan_sources = 56 [ "perf_tests/VulkanPipelineCachePerf.cpp" ] 57 58angle_white_box_perf_tests_vulkan_command_buffer_sources = [ 59 "perf_tests/VulkanCommandBufferPerf.cpp", 60 "test_utils/third_party/vulkan_command_buffer_utils.cpp", 61 "test_utils/third_party/vulkan_command_buffer_utils.h", 62] 63