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