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 # |
11 # gpu.gyp:command_buffer_service => //gpu/command_buffer/service | 11 # gpu.gyp:command_buffer_service => //gpu/command_buffer/service |
12 | 12 |
13 # gpu/gpu.gyp:gl_in_process_context => | 13 # gpu/gpu.gyp:gl_in_process_context => |
14 # //gpu/command_buffer/client:gl_in_process_context | 14 # //gpu/command_buffer/client:gl_in_process_context |
15 # | 15 # |
16 # gpu.gyp:gles2_cmd_helper => //gpu/command_buffer/client:gles2_cmd_helper | 16 # gpu.gyp:gles2_cmd_helper => //gpu/command_buffer/client:gles2_cmd_helper |
17 # | 17 # |
18 # gpu.gyp:gles2_c_lib => //gpu/command_buffer/client:gles2_c_lib | 18 # gpu.gyp:gles2_c_lib => //gpu/command_buffer/client:gles2_c_lib |
19 # | 19 # |
20 # gpu.gyp:gles2_implementation => | 20 # gpu.gyp:gles2_implementation => |
21 # //gpu/command_buffer/client:gles2_implementation | 21 # //gpu/command_buffer/client:gles2_implementation |
22 | 22 |
23 # gpu.gyp:gles2_implementation_client_side_arrays => | 23 # gpu.gyp:gles2_implementation_client_side_arrays => |
24 # //gpu/command_buffer/client:gles2_implementation_client_side_arrays | 24 # //gpu/command_buffer/client:gles2_implementation_client_side_arrays |
25 # | 25 # |
26 # gpu.gyp:gpu_config => //gpu/config | 26 # gpu.gyp:gpu_config => //gpu/config |
27 # | 27 # |
28 # gpu.gyp:gpu_ipc => //gpu/ipc | |
29 # | 28 # |
30 # gpu.gyp:disk_cache_proto => //gpu/command_buffer/service:disk_cache_proto | 29 # gpu.gyp:disk_cache_proto => //gpu/command_buffer/service:disk_cache_proto |
31 # | 30 # |
32 # command_buffer/command_buffer.gyp:gles2_utils => | 31 # command_buffer/command_buffer.gyp:gles2_utils => |
33 # //gpu/command_buffer/common | 32 # //gpu/command_buffer/common |
34 # (Merged in to here because the separate file exists in GYP only to break | 33 # (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.) | 34 # a .gyp file dependency cycle which GN doesn't have.) |
36 # | 35 # |
37 # gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings => //gpu/skia_bindings | 36 # gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings => //gpu/skia_bindings |
38 | 37 |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 ] | 246 ] |
248 | 247 |
249 deps = [ | 248 deps = [ |
250 "//base", | 249 "//base", |
251 "//base/third_party/dynamic_annotations", | 250 "//base/third_party/dynamic_annotations", |
252 "//testing/gmock", | 251 "//testing/gmock", |
253 "//testing/gtest", | 252 "//testing/gtest", |
254 "//third_party/angle:translator_static", | 253 "//third_party/angle:translator_static", |
255 ] | 254 ] |
256 } | 255 } |
OLD | NEW |