| 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 14 matching lines...) Expand all Loading... |
| 25 # | 25 # |
| 26 # gpu.gyp:disk_cache_proto => //gpu/command_buffer/service:disk_cache_proto | 26 # gpu.gyp:disk_cache_proto => //gpu/command_buffer/service:disk_cache_proto |
| 27 # | 27 # |
| 28 # command_buffer/command_buffer.gyp:gles2_utils => | 28 # command_buffer/command_buffer.gyp:gles2_utils => |
| 29 # //gpu/command_buffer/common | 29 # //gpu/command_buffer/common |
| 30 # (Merged in to here because the separate file exists in GYP only to break | 30 # (Merged in to here because the separate file exists in GYP only to break |
| 31 # a .gyp file dependency cycle which GN doesn't have.) | 31 # a .gyp file dependency cycle which GN doesn't have.) |
| 32 # | 32 # |
| 33 # gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings => //gpu/skia_bindings | 33 # gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings => //gpu/skia_bindings |
| 34 | 34 |
| 35 import("//testing/test.gni") |
| 36 |
| 35 component("gpu") { | 37 component("gpu") { |
| 36 public_deps = [ | 38 public_deps = [ |
| 37 "//gpu/command_buffer/client", | 39 "//gpu/command_buffer/client", |
| 38 "//gpu/command_buffer/client:gles2_cmd_helper_sources", | 40 "//gpu/command_buffer/client:gles2_cmd_helper_sources", |
| 39 "//gpu/command_buffer/common", | 41 "//gpu/command_buffer/common", |
| 40 "//gpu/command_buffer/service", | 42 "//gpu/command_buffer/service", |
| 41 "//gpu/config", | 43 "//gpu/config", |
| 42 ] | 44 ] |
| 43 } | 45 } |
| 44 | 46 |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 | 251 |
| 250 deps = [ | 252 deps = [ |
| 251 "//base", | 253 "//base", |
| 252 "//base/test:test_support", | 254 "//base/test:test_support", |
| 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 |