| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 import("//components/viz/viz.gni") | 5 import("//components/viz/viz.gni") |
| 6 | 6 |
| 7 viz_component("host") { | 7 viz_component("host") { |
| 8 defines = [ "VIZ_HOST_IMPLEMENTATION" ] | 8 defines = [ "VIZ_HOST_IMPLEMENTATION" ] |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "host_frame_sink_manager_unittests.cc", | 42 "host_frame_sink_manager_unittests.cc", |
| 43 "server_gpu_memory_buffer_manager_unittest.cc", | 43 "server_gpu_memory_buffer_manager_unittest.cc", |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 deps = [ | 46 deps = [ |
| 47 ":host", | 47 ":host", |
| 48 "//base", | 48 "//base", |
| 49 "//base/test:test_support", | 49 "//base/test:test_support", |
| 50 "//cc/ipc:interfaces", | 50 "//cc/ipc:interfaces", |
| 51 "//cc/surfaces", | 51 "//cc/surfaces", |
| 52 "//components/viz/host/hit_test:unit_tests", |
| 52 "//gpu/ipc/host", | 53 "//gpu/ipc/host", |
| 53 "//mojo/public/cpp/bindings", | 54 "//mojo/public/cpp/bindings", |
| 54 "//services/ui/gpu/interfaces", | 55 "//services/ui/gpu/interfaces", |
| 55 "//testing/gmock", | 56 "//testing/gmock", |
| 56 "//testing/gtest", | 57 "//testing/gtest", |
| 57 | 58 |
| 58 # TODO(kylechar): This is temporary and will be removed when all host to | 59 # TODO(kylechar): This is temporary and will be removed when all host to |
| 59 # service communication is over Mojo. | 60 # service communication is over Mojo. |
| 60 "//components/viz/service", | 61 "//components/viz/service", |
| 61 ] | 62 ] |
| 62 } | 63 } |
| OLD | NEW |