| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 test("gpu_unittests") { | 135 test("gpu_unittests") { |
| 136 sources = [ | 136 sources = [ |
| 137 "command_buffer/client/buffer_tracker_unittest.cc", | 137 "command_buffer/client/buffer_tracker_unittest.cc", |
| 138 "command_buffer/client/client_test_helper.cc", | 138 "command_buffer/client/client_test_helper.cc", |
| 139 "command_buffer/client/client_test_helper.h", | 139 "command_buffer/client/client_test_helper.h", |
| 140 "command_buffer/client/cmd_buffer_helper_test.cc", | 140 "command_buffer/client/cmd_buffer_helper_test.cc", |
| 141 "command_buffer/client/fenced_allocator_test.cc", | 141 "command_buffer/client/fenced_allocator_test.cc", |
| 142 "command_buffer/client/gles2_implementation_unittest.cc", | 142 "command_buffer/client/gles2_implementation_unittest.cc", |
| 143 "command_buffer/client/mapped_memory_unittest.cc", | 143 "command_buffer/client/mapped_memory_unittest.cc", |
| 144 "command_buffer/client/query_tracker_unittest.cc", | 144 "command_buffer/client/query_tracker_unittest.cc", |
| 145 "command_buffer/client/program_info_manager_unittest.cc", | |
| 146 "command_buffer/client/ring_buffer_test.cc", | 145 "command_buffer/client/ring_buffer_test.cc", |
| 147 "command_buffer/client/transfer_buffer_unittest.cc", | 146 "command_buffer/client/transfer_buffer_unittest.cc", |
| 148 "command_buffer/client/vertex_array_object_manager_unittest.cc", | 147 "command_buffer/client/vertex_array_object_manager_unittest.cc", |
| 149 "command_buffer/common/bitfield_helpers_test.cc", | 148 "command_buffer/common/bitfield_helpers_test.cc", |
| 150 "command_buffer/common/command_buffer_mock.cc", | 149 "command_buffer/common/command_buffer_mock.cc", |
| 151 "command_buffer/common/command_buffer_mock.h", | 150 "command_buffer/common/command_buffer_mock.h", |
| 152 "command_buffer/common/command_buffer_shared_test.cc", | 151 "command_buffer/common/command_buffer_shared_test.cc", |
| 153 "command_buffer/common/debug_marker_manager_unittest.cc", | 152 "command_buffer/common/debug_marker_manager_unittest.cc", |
| 154 "command_buffer/common/gles2_cmd_format_test.cc", | 153 "command_buffer/common/gles2_cmd_format_test.cc", |
| 155 "command_buffer/common/gles2_cmd_format_test_autogen.h", | 154 "command_buffer/common/gles2_cmd_format_test_autogen.h", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 | 268 |
| 270 deps = [ | 269 deps = [ |
| 271 "//base", | 270 "//base", |
| 272 "//base/test:test_support", | 271 "//base/test:test_support", |
| 273 "//base/third_party/dynamic_annotations", | 272 "//base/third_party/dynamic_annotations", |
| 274 "//testing/gmock", | 273 "//testing/gmock", |
| 275 "//testing/gtest", | 274 "//testing/gtest", |
| 276 "//third_party/angle:translator_static", | 275 "//third_party/angle:translator_static", |
| 277 ] | 276 ] |
| 278 } | 277 } |
| OLD | NEW |