| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 source_set("test_support") { | 50 source_set("test_support") { |
| 51 testonly = true | 51 testonly = true |
| 52 sources = [ | 52 sources = [ |
| 53 "command_buffer/service/gles2_cmd_decoder_mock.cc", | 53 "command_buffer/service/gles2_cmd_decoder_mock.cc", |
| 54 "command_buffer/service/error_state_mock.cc", | 54 "command_buffer/service/error_state_mock.cc", |
| 55 "command_buffer/client/gles2_interface_stub.cc", | 55 "command_buffer/client/gles2_interface_stub.cc", |
| 56 "command_buffer/client/gles2_interface_stub.h", | 56 "command_buffer/client/gles2_interface_stub.h", |
| 57 ] | 57 ] |
| 58 | 58 |
| 59 configs += [ "//third_party/khronos:khronos_headers" ] | |
| 60 | |
| 61 deps = [ | 59 deps = [ |
| 62 ":gpu", | 60 ":gpu", |
| 61 "//gpu/command_buffer/client:gles2_interface", |
| 63 "//testing/gmock", | 62 "//testing/gmock", |
| 64 "//testing/gtest", | 63 "//testing/gtest", |
| 65 "//ui/gl:gl_unittest_utils", | 64 "//ui/gl:gl_unittest_utils", |
| 66 ] | 65 ] |
| 66 forward_dependent_configs_from = [ |
| 67 "//gpu/command_buffer/client:gles2_interface", |
| 68 ] |
| 67 } | 69 } |
| 68 | 70 |
| 69 test("gl_tests") { | 71 test("gl_tests") { |
| 70 sources = [ | 72 sources = [ |
| 71 "command_buffer/tests/compressed_texture_test.cc", | 73 "command_buffer/tests/compressed_texture_test.cc", |
| 72 "command_buffer/tests/gl_bind_uniform_location_unittest.cc", | 74 "command_buffer/tests/gl_bind_uniform_location_unittest.cc", |
| 73 "command_buffer/tests/gl_chromium_framebuffer_multisample_unittest.cc", | 75 "command_buffer/tests/gl_chromium_framebuffer_multisample_unittest.cc", |
| 74 "command_buffer/tests/gl_chromium_path_rendering_unittest.cc", | 76 "command_buffer/tests/gl_chromium_path_rendering_unittest.cc", |
| 75 "command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc", | 77 "command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc", |
| 76 "command_buffer/tests/gl_depth_texture_unittest.cc", | 78 "command_buffer/tests/gl_depth_texture_unittest.cc", |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 ] | 249 ] |
| 248 | 250 |
| 249 deps = [ | 251 deps = [ |
| 250 "//base", | 252 "//base", |
| 251 "//base/third_party/dynamic_annotations", | 253 "//base/third_party/dynamic_annotations", |
| 252 "//testing/gmock", | 254 "//testing/gmock", |
| 253 "//testing/gtest", | 255 "//testing/gtest", |
| 254 "//third_party/angle:translator_static", | 256 "//third_party/angle:translator_static", |
| 255 ] | 257 ] |
| 256 } | 258 } |
| OLD | NEW |