| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 group("gl_tests_run") { | 111 group("gl_tests_run") { |
| 112 testonly = true | 112 testonly = true |
| 113 deps = [ | 113 deps = [ |
| 114 ":gl_tests", | 114 ":gl_tests", |
| 115 ] | 115 ] |
| 116 } | 116 } |
| 117 | 117 |
| 118 test("gl_tests") { | 118 test("gl_tests") { |
| 119 sources = [ | 119 sources = [ |
| 120 "command_buffer/tests/compressed_texture_test.cc", | 120 "command_buffer/tests/compressed_texture_test.cc", |
| 121 "command_buffer/tests/es3_misc_functions_unittest.cc", |
| 121 "command_buffer/tests/gl_bind_uniform_location_unittest.cc", | 122 "command_buffer/tests/gl_bind_uniform_location_unittest.cc", |
| 122 "command_buffer/tests/gl_chromium_framebuffer_multisample_unittest.cc", | 123 "command_buffer/tests/gl_chromium_framebuffer_multisample_unittest.cc", |
| 123 "command_buffer/tests/gl_chromium_path_rendering_unittest.cc", | 124 "command_buffer/tests/gl_chromium_path_rendering_unittest.cc", |
| 124 "command_buffer/tests/gl_clear_framebuffer_unittest.cc", | 125 "command_buffer/tests/gl_clear_framebuffer_unittest.cc", |
| 125 "command_buffer/tests/gl_compressed_copy_texture_CHROMIUM_unittest.cc", | 126 "command_buffer/tests/gl_compressed_copy_texture_CHROMIUM_unittest.cc", |
| 126 "command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc", | 127 "command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc", |
| 127 "command_buffer/tests/gl_cube_map_texture_unittest.cc", | 128 "command_buffer/tests/gl_cube_map_texture_unittest.cc", |
| 128 "command_buffer/tests/gl_depth_texture_unittest.cc", | 129 "command_buffer/tests/gl_depth_texture_unittest.cc", |
| 129 "command_buffer/tests/gl_ext_multisample_compatibility_unittest.cc", | 130 "command_buffer/tests/gl_ext_multisample_compatibility_unittest.cc", |
| 130 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", | 131 "command_buffer/tests/gl_gpu_memory_buffer_unittest.cc", |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 } | 341 } |
| 341 | 342 |
| 342 # TODO(GYP): Delete this after we've converted everything to GN. | 343 # TODO(GYP): Delete this after we've converted everything to GN. |
| 343 # The _run targets exist only for compatibility w/ GYP. | 344 # The _run targets exist only for compatibility w/ GYP. |
| 344 group("angle_end2end_tests_run") { | 345 group("angle_end2end_tests_run") { |
| 345 testonly = true | 346 testonly = true |
| 346 deps = [ | 347 deps = [ |
| 347 "//third_party/angle/src/tests:angle_end2end_tests", | 348 "//third_party/angle/src/tests:angle_end2end_tests", |
| 348 ] | 349 ] |
| 349 } | 350 } |
| OLD | NEW |