| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "//ui/gl:gl_unittest_utils", | 61 "//ui/gl:gl_unittest_utils", |
| 62 ] | 62 ] |
| 63 } | 63 } |
| 64 | 64 |
| 65 test("gl_tests") { | 65 test("gl_tests") { |
| 66 sources = [ | 66 sources = [ |
| 67 "command_buffer/tests/compressed_texture_test.cc", | 67 "command_buffer/tests/compressed_texture_test.cc", |
| 68 "command_buffer/tests/gl_bind_uniform_location_unittest.cc", | 68 "command_buffer/tests/gl_bind_uniform_location_unittest.cc", |
| 69 "command_buffer/tests/gl_chromium_framebuffer_multisample_unittest.cc", | 69 "command_buffer/tests/gl_chromium_framebuffer_multisample_unittest.cc", |
| 70 "command_buffer/tests/gl_chromium_path_rendering_unittest.cc", | 70 "command_buffer/tests/gl_chromium_path_rendering_unittest.cc", |
| 71 "command_buffer/tests/gl_clear_framebuffer_unittest.cc", |
| 71 "command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc", | 72 "command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc", |
| 72 "command_buffer/tests/gl_depth_texture_unittest.cc", | 73 "command_buffer/tests/gl_depth_texture_unittest.cc", |
| 73 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", | 74 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", |
| 74 "command_buffer/tests/gl_lose_context_chromium_unittest.cc", | 75 "command_buffer/tests/gl_lose_context_chromium_unittest.cc", |
| 75 "command_buffer/tests/gl_manager.cc", | 76 "command_buffer/tests/gl_manager.cc", |
| 76 "command_buffer/tests/gl_manager.h", | 77 "command_buffer/tests/gl_manager.h", |
| 77 "command_buffer/tests/gl_pointcoord_unittest.cc", | 78 "command_buffer/tests/gl_pointcoord_unittest.cc", |
| 78 "command_buffer/tests/gl_program_unittest.cc", | 79 "command_buffer/tests/gl_program_unittest.cc", |
| 79 "command_buffer/tests/gl_query_unittest.cc", | 80 "command_buffer/tests/gl_query_unittest.cc", |
| 80 "command_buffer/tests/gl_readback_unittest.cc", | 81 "command_buffer/tests/gl_readback_unittest.cc", |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 ] | 250 ] |
| 250 | 251 |
| 251 deps = [ | 252 deps = [ |
| 252 "//base", | 253 "//base", |
| 253 "//base/third_party/dynamic_annotations", | 254 "//base/third_party/dynamic_annotations", |
| 254 "//testing/gmock", | 255 "//testing/gmock", |
| 255 "//testing/gtest", | 256 "//testing/gtest", |
| 256 "//third_party/angle:translator_static", | 257 "//third_party/angle:translator_static", |
| 257 ] | 258 ] |
| 258 } | 259 } |
| OLD | NEW |