| 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 27 matching lines...) Expand all Loading... |
| 38 defines = [ "GPU_IMPLEMENTATION" ] | 38 defines = [ "GPU_IMPLEMENTATION" ] |
| 39 } | 39 } |
| 40 | 40 |
| 41 component("gpu") { | 41 component("gpu") { |
| 42 public_deps = [ | 42 public_deps = [ |
| 43 "//gpu/command_buffer/client:client_sources", | 43 "//gpu/command_buffer/client:client_sources", |
| 44 "//gpu/command_buffer/client:gles2_cmd_helper_sources", | 44 "//gpu/command_buffer/client:gles2_cmd_helper_sources", |
| 45 "//gpu/command_buffer/common:common_sources", | 45 "//gpu/command_buffer/common:common_sources", |
| 46 "//gpu/command_buffer/service:service_sources", | 46 "//gpu/command_buffer/service:service_sources", |
| 47 "//gpu/config:config_sources", | 47 "//gpu/config:config_sources", |
| 48 "//gpu/ipc:ipc_sources", | |
| 49 "//gpu/ipc/common:ipc_common_sources", | 48 "//gpu/ipc/common:ipc_common_sources", |
| 50 ] | 49 ] |
| 51 } | 50 } |
| 52 | 51 |
| 53 # GYP version: //gpu/gpu.gyp:command_buffer_gles2 | 52 # GYP version: //gpu/gpu.gyp:command_buffer_gles2 |
| 54 shared_library("command_buffer_gles2") { | 53 shared_library("command_buffer_gles2") { |
| 55 sources = [ | 54 sources = [ |
| 56 # TODO(hendrikw): Move egl out of gles2_conform_support. | 55 # TODO(hendrikw): Move egl out of gles2_conform_support. |
| 57 "gles2_conform_support/egl/config.cc", | 56 "gles2_conform_support/egl/config.cc", |
| 58 "gles2_conform_support/egl/config.h", | 57 "gles2_conform_support/egl/config.h", |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 "//base", | 346 "//base", |
| 348 "//base/test:test_support", | 347 "//base/test:test_support", |
| 349 "//gpu/command_buffer/service", | 348 "//gpu/command_buffer/service", |
| 350 "//testing/gmock", | 349 "//testing/gmock", |
| 351 "//testing/gtest", | 350 "//testing/gtest", |
| 352 "//testing/perf", | 351 "//testing/perf", |
| 353 "//ui/gfx/geometry", | 352 "//ui/gfx/geometry", |
| 354 "//ui/gl", | 353 "//ui/gl", |
| 355 ] | 354 ] |
| 356 } | 355 } |
| OLD | NEW |