• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/IndexConversionPerf.cpp",
16  "perf_tests/InstancingPerf.cpp",
17  "perf_tests/InterleavedAttributeData.cpp",
18  "perf_tests/LinkProgramPerfTest.cpp",
19  "perf_tests/MultiviewPerf.cpp",
20  "perf_tests/PointSprites.cpp",
21  "perf_tests/TextureSampling.cpp",
22  "perf_tests/TextureUploadPerf.cpp",
23  "perf_tests/TexturesPerf.cpp",
24  "perf_tests/UniformsPerf.cpp",
25  "perf_tests/VulkanBarriersPerf.cpp",
26  "perf_tests/glmark2Benchmark.cpp",
27  "test_utils/ANGLETest.cpp",
28  "test_utils/ANGLETest.h",
29  "test_utils/MultiviewTest.cpp",
30  "test_utils/MultiviewTest.h",
31  "test_utils/draw_call_perf_utils.cpp",
32  "test_utils/draw_call_perf_utils.h",
33]
34
35angle_white_box_perf_tests_sources = [
36  "angle_unittests_utils.h",
37  "perf_tests/BitSetIteratorPerf.cpp",
38  "perf_tests/CompilerPerf.cpp",
39  "perf_tests/EGLInitializePerf.cpp",  # Uses ANGLEGetDisplayPlatform, a
40                                       # non-standard EP.
41  "perf_tests/ResultPerf.cpp",
42]
43
44if (is_win) {
45  angle_white_box_perf_tests_sources +=
46      [ "perf_tests/IndexDataManagerTest.cpp" ]
47}
48
49angle_white_box_perf_tests_vulkan_sources = [
50  "perf_tests/VulkanCommandBufferPerf.cpp",
51  "perf_tests/VulkanPipelineCachePerf.cpp",
52  "test_utils/third_party/vulkan_command_buffer_utils.cpp",
53  "test_utils/third_party/vulkan_command_buffer_utils.h",
54]
55