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 15 matching lines...) Expand all Loading... |
26 # gpu.gyp:gpu_config => //gpu/config | 26 # gpu.gyp:gpu_config => //gpu/config |
27 # | 27 # |
28 # gpu.gyp:gpu_ipc => //gpu/ipc | 28 # gpu.gyp:gpu_ipc => //gpu/ipc |
29 # | 29 # |
30 # gpu.gyp:disk_cache_proto => //gpu/command_buffer/service:disk_cache_proto | 30 # gpu.gyp:disk_cache_proto => //gpu/command_buffer/service:disk_cache_proto |
31 # | 31 # |
32 # command_buffer/command_buffer.gyp:gles2_utils => | 32 # command_buffer/command_buffer.gyp:gles2_utils => |
33 # //gpu/command_buffer/common | 33 # //gpu/command_buffer/common |
34 # (Merged in to here because the separate file exists in GYP only to break | 34 # (Merged in to here because the separate file exists in GYP only to break |
35 # a .gyp file dependency cycle which GN doesn't have.) | 35 # a .gyp file dependency cycle which GN doesn't have.) |
| 36 # |
| 37 # gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings => //gpu/skia_bindings |
36 | 38 |
37 component("gpu") { | 39 component("gpu") { |
38 deps = [ | 40 deps = [ |
39 "//gpu/command_buffer/client", | 41 "//gpu/command_buffer/client", |
40 "//gpu/command_buffer/common", | 42 "//gpu/command_buffer/common", |
41 "//gpu/command_buffer/service", | 43 "//gpu/command_buffer/service", |
42 "//gpu/command_buffer/client:gles2_cmd_helper", | 44 "//gpu/command_buffer/client:gles2_cmd_helper", |
43 "//gpu/config", | 45 "//gpu/config", |
44 "//gpu/ipc", | 46 "//gpu/ipc", |
45 ] | 47 ] |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 include_dirs = [ "//third_party/angle/include" ] | 251 include_dirs = [ "//third_party/angle/include" ] |
250 | 252 |
251 deps = [ | 253 deps = [ |
252 "//base", | 254 "//base", |
253 "//base/third_party/dynamic_annotations", | 255 "//base/third_party/dynamic_annotations", |
254 "//testing/gmock", | 256 "//testing/gmock", |
255 "//testing/gtest", | 257 "//testing/gtest", |
256 "//third_party/angle:translator_static", | 258 "//third_party/angle:translator_static", |
257 ] | 259 ] |
258 } | 260 } |
OLD | NEW |