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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 "command_buffer/tests/gl_texture_mailbox_unittest.cc", | 92 "command_buffer/tests/gl_texture_mailbox_unittest.cc", |
93 "command_buffer/tests/gl_texture_storage_unittest.cc", | 93 "command_buffer/tests/gl_texture_storage_unittest.cc", |
94 "command_buffer/tests/gl_unittest.cc", | 94 "command_buffer/tests/gl_unittest.cc", |
95 "command_buffer/tests/gl_unittests_android.cc", | 95 "command_buffer/tests/gl_unittests_android.cc", |
96 "command_buffer/tests/gl_virtual_contexts_unittest.cc", | 96 "command_buffer/tests/gl_virtual_contexts_unittest.cc", |
97 "command_buffer/tests/occlusion_query_unittest.cc", | 97 "command_buffer/tests/occlusion_query_unittest.cc", |
98 ] | 98 ] |
99 | 99 |
100 defines = [ "GL_GLEXT_PROTOTYPES" ] | 100 defines = [ "GL_GLEXT_PROTOTYPES" ] |
101 | 101 |
| 102 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 103 |
102 deps = [ | 104 deps = [ |
103 ":gpu", | 105 ":gpu", |
104 ":test_support", | 106 ":test_support", |
105 "//base", | 107 "//base", |
106 "//base/test:test_support", | 108 "//base/test:test_support", |
107 "//base/third_party/dynamic_annotations", | 109 "//base/third_party/dynamic_annotations", |
108 "//testing/gmock", | 110 "//testing/gmock", |
109 "//testing/gtest", | 111 "//testing/gtest", |
110 "//third_party/angle:translator", | 112 "//third_party/angle:translator", |
111 "//ui/gfx", | 113 "//ui/gfx", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 "config/gpu_control_list_unittest.cc", | 223 "config/gpu_control_list_unittest.cc", |
222 "config/gpu_control_list_version_info_unittest.cc", | 224 "config/gpu_control_list_version_info_unittest.cc", |
223 "config/gpu_driver_bug_list_unittest.cc", | 225 "config/gpu_driver_bug_list_unittest.cc", |
224 "config/gpu_info_collector_unittest.cc", | 226 "config/gpu_info_collector_unittest.cc", |
225 "config/gpu_info_unittest.cc", | 227 "config/gpu_info_unittest.cc", |
226 "config/gpu_test_config_unittest.cc", | 228 "config/gpu_test_config_unittest.cc", |
227 "config/gpu_test_expectations_parser_unittest.cc", | 229 "config/gpu_test_expectations_parser_unittest.cc", |
228 "config/gpu_util_unittest.cc", | 230 "config/gpu_util_unittest.cc", |
229 ] | 231 ] |
230 | 232 |
| 233 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 234 |
231 deps = [ | 235 deps = [ |
232 ":gpu", | 236 ":gpu", |
233 ":test_support", | 237 ":test_support", |
234 "//base", | 238 "//base", |
235 "//base/test:test_support", | 239 "//base/test:test_support", |
236 "//base/third_party/dynamic_annotations", | 240 "//base/third_party/dynamic_annotations", |
237 "//testing/gmock", | 241 "//testing/gmock", |
238 "//testing/gtest", | 242 "//testing/gtest", |
239 "//third_party/angle:translator", | 243 "//third_party/angle:translator", |
240 "//ui/gfx", | 244 "//ui/gfx", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 deps = [ | 277 deps = [ |
274 "//base", | 278 "//base", |
275 "//base/test:test_support", | 279 "//base/test:test_support", |
276 "//base/third_party/dynamic_annotations", | 280 "//base/third_party/dynamic_annotations", |
277 "//testing/gmock", | 281 "//testing/gmock", |
278 "//testing/gtest", | 282 "//testing/gtest", |
279 "//third_party/angle:translator_static", | 283 "//third_party/angle:translator_static", |
280 ] | 284 ] |
281 } | 285 } |
282 } | 286 } |
OLD | NEW |