OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # GYP-to-GN project mappings: | 5 # GYP-to-GN project mappings: |
6 # | 6 # |
7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client | 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client |
8 # | 8 # |
9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common | 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common |
10 # | 10 # |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 sources = [ | 80 sources = [ |
81 "command_buffer/tests/compressed_texture_test.cc", | 81 "command_buffer/tests/compressed_texture_test.cc", |
82 "command_buffer/tests/es3_misc_functions_unittest.cc", | 82 "command_buffer/tests/es3_misc_functions_unittest.cc", |
83 "command_buffer/tests/gl_bind_uniform_location_unittest.cc", | 83 "command_buffer/tests/gl_bind_uniform_location_unittest.cc", |
84 "command_buffer/tests/gl_chromium_framebuffer_multisample_unittest.cc", | 84 "command_buffer/tests/gl_chromium_framebuffer_multisample_unittest.cc", |
85 "command_buffer/tests/gl_chromium_path_rendering_unittest.cc", | 85 "command_buffer/tests/gl_chromium_path_rendering_unittest.cc", |
86 "command_buffer/tests/gl_clear_framebuffer_unittest.cc", | 86 "command_buffer/tests/gl_clear_framebuffer_unittest.cc", |
87 "command_buffer/tests/gl_compressed_copy_texture_CHROMIUM_unittest.cc", | 87 "command_buffer/tests/gl_compressed_copy_texture_CHROMIUM_unittest.cc", |
88 "command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc", | 88 "command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc", |
89 "command_buffer/tests/gl_depth_texture_unittest.cc", | 89 "command_buffer/tests/gl_depth_texture_unittest.cc", |
| 90 "command_buffer/tests/gl_ext_blend_func_extended_unittest.cc", |
90 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", | 91 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", |
91 "command_buffer/tests/gl_lose_context_chromium_unittest.cc", | 92 "command_buffer/tests/gl_lose_context_chromium_unittest.cc", |
92 "command_buffer/tests/gl_manager.cc", | 93 "command_buffer/tests/gl_manager.cc", |
93 "command_buffer/tests/gl_manager.h", | 94 "command_buffer/tests/gl_manager.h", |
94 "command_buffer/tests/gl_pointcoord_unittest.cc", | 95 "command_buffer/tests/gl_pointcoord_unittest.cc", |
95 "command_buffer/tests/gl_program_unittest.cc", | 96 "command_buffer/tests/gl_program_unittest.cc", |
96 "command_buffer/tests/gl_query_unittest.cc", | 97 "command_buffer/tests/gl_query_unittest.cc", |
97 "command_buffer/tests/gl_readback_unittest.cc", | 98 "command_buffer/tests/gl_readback_unittest.cc", |
98 "command_buffer/tests/gl_shared_resources_unittest.cc", | 99 "command_buffer/tests/gl_shared_resources_unittest.cc", |
99 "command_buffer/tests/gl_stream_draw_unittest.cc", | 100 "command_buffer/tests/gl_stream_draw_unittest.cc", |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 | 336 |
336 deps = [ | 337 deps = [ |
337 "//base/test:test_support", | 338 "//base/test:test_support", |
338 "//testing/gmock", | 339 "//testing/gmock", |
339 "//testing/gtest", | 340 "//testing/gtest", |
340 | 341 |
341 # TODO(crbug.com/519778): This needs to be implemented. | 342 # TODO(crbug.com/519778): This needs to be implemented. |
342 # "//third_party/angle:end_to_end_tests", | 343 # "//third_party/angle:end_to_end_tests", |
343 ] | 344 ] |
344 } | 345 } |
OLD | NEW |