| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "gles2_conform_support/egl/egl.cc", | 60 "gles2_conform_support/egl/egl.cc", |
| 61 "gles2_conform_support/egl/surface.cc", | 61 "gles2_conform_support/egl/surface.cc", |
| 62 "gles2_conform_support/egl/surface.h", | 62 "gles2_conform_support/egl/surface.h", |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 deps = [ | 65 deps = [ |
| 66 "//base", | 66 "//base", |
| 67 "//gpu/command_buffer/client:gles2_c_lib", | 67 "//gpu/command_buffer/client:gles2_c_lib", |
| 68 "//gpu/command_buffer/client:gles2_implementation", | 68 "//gpu/command_buffer/client:gles2_implementation", |
| 69 "//gpu/command_buffer/service", | 69 "//gpu/command_buffer/service", |
| 70 "//gpu/config:config_sources", |
| 70 "//ui/gl:gl", | 71 "//ui/gl:gl", |
| 71 ] | 72 ] |
| 72 | 73 |
| 73 if (!is_component_build) { | 74 if (!is_component_build) { |
| 74 deps += [ | 75 deps += [ |
| 75 "//gpu/command_buffer/client:client_sources", | 76 "//gpu/command_buffer/client:client_sources", |
| 76 "//gpu/command_buffer/client:gles2_cmd_helper_sources", | 77 "//gpu/command_buffer/client:gles2_cmd_helper_sources", |
| 77 ] | 78 ] |
| 78 } | 79 } |
| 79 | 80 |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 if (is_win || is_linux || is_mac) { | 348 if (is_win || is_linux || is_mac) { |
| 348 # TODO(GYP): Delete this after we've converted everything to GN. | 349 # TODO(GYP): Delete this after we've converted everything to GN. |
| 349 # The _run targets exist only for compatibility w/ GYP. | 350 # The _run targets exist only for compatibility w/ GYP. |
| 350 group("angle_end2end_tests_run") { | 351 group("angle_end2end_tests_run") { |
| 351 testonly = true | 352 testonly = true |
| 352 deps = [ | 353 deps = [ |
| 353 "//third_party/angle/src/tests:angle_end2end_tests", | 354 "//third_party/angle/src/tests:angle_end2end_tests", |
| 354 ] | 355 ] |
| 355 } | 356 } |
| 356 } | 357 } |
| OLD | NEW |