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