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