| 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 import("//testing/test.gni") | 34 import("//testing/test.gni") |
| 35 import("//build/config/ui.gni") | 35 import("//build/config/ui.gni") |
| 36 | 36 |
| 37 config("gpu_implementation") { | 37 config("gpu_implementation") { |
| 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", | 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", | 45 "//gpu/command_buffer/common:common_sources", |
| 46 "//gpu/command_buffer/service", | 46 "//gpu/command_buffer/service:service_sources", |
| 47 "//gpu/config", | 47 "//gpu/config:config_sources", |
| 48 "//gpu/ipc", | 48 "//gpu/ipc:ipc_sources", |
| 49 ] | 49 ] |
| 50 } | 50 } |
| 51 | 51 |
| 52 source_set("test_support") { | 52 source_set("test_support") { |
| 53 testonly = true | 53 testonly = true |
| 54 sources = [ | 54 sources = [ |
| 55 "command_buffer/client/gles2_interface_stub.cc", | 55 "command_buffer/client/gles2_interface_stub.cc", |
| 56 "command_buffer/client/gles2_interface_stub.h", | 56 "command_buffer/client/gles2_interface_stub.h", |
| 57 "command_buffer/service/error_state_mock.cc", | 57 "command_buffer/service/error_state_mock.cc", |
| 58 "command_buffer/service/gles2_cmd_decoder_mock.cc", | 58 "command_buffer/service/gles2_cmd_decoder_mock.cc", |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 282 |
| 283 deps = [ | 283 deps = [ |
| 284 "//base", | 284 "//base", |
| 285 "//base/test:test_support", | 285 "//base/test:test_support", |
| 286 "//base/third_party/dynamic_annotations", | 286 "//base/third_party/dynamic_annotations", |
| 287 "//testing/gmock", | 287 "//testing/gmock", |
| 288 "//testing/gtest", | 288 "//testing/gtest", |
| 289 "//third_party/angle:translator_static", | 289 "//third_party/angle:translator_static", |
| 290 ] | 290 ] |
| 291 } | 291 } |
| OLD | NEW |