| 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 component("host") { | 5 component("host") { |
| 6 defines = [ "VIZ_HOST_IMPLEMENTATION" ] | 6 defines = [ "VIZ_HOST_IMPLEMENTATION" ] |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "frame_sink_observer.h", | 9 "frame_sink_observer.h", |
| 10 "host_frame_sink_manager.cc", | 10 "host_frame_sink_manager.cc", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 sources = [ | 25 sources = [ |
| 26 "host_frame_sink_manager_unittests.cc", | 26 "host_frame_sink_manager_unittests.cc", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 deps = [ | 29 deps = [ |
| 30 "//base", | 30 "//base", |
| 31 "//base/test:test_support", | 31 "//base/test:test_support", |
| 32 "//cc/ipc:interfaces", | 32 "//cc/ipc:interfaces", |
| 33 "//cc/surfaces", | 33 "//cc/surfaces", |
| 34 "//components/viz/host", | 34 "//components/viz/host", |
| 35 "//components/viz/host/hit_test:unit_tests", |
| 35 "//mojo/public/cpp/bindings", | 36 "//mojo/public/cpp/bindings", |
| 36 "//testing/gmock", | 37 "//testing/gmock", |
| 37 "//testing/gtest", | 38 "//testing/gtest", |
| 38 ] | 39 ] |
| 39 } | 40 } |
| OLD | NEW |