| 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 source_set("client") { | 5 source_set("client") { |
| 6 sources = [ | 6 sources = [ |
| 7 "client_layer_tree_frame_sink.cc", | 7 "client_layer_tree_frame_sink.cc", |
| 8 "client_layer_tree_frame_sink.h", | 8 "client_layer_tree_frame_sink.h", |
| 9 "client_shared_bitmap_manager.cc", | 9 "client_shared_bitmap_manager.cc", |
| 10 "client_shared_bitmap_manager.h", | 10 "client_shared_bitmap_manager.h", |
| 11 "hit_test_data_provider.h", |
| 11 "local_surface_id_provider.cc", | 12 "local_surface_id_provider.cc", |
| 12 "local_surface_id_provider.h", | 13 "local_surface_id_provider.h", |
| 13 ] | 14 ] |
| 14 | 15 |
| 15 public_deps = [ | 16 public_deps = [ |
| 16 "//base", | 17 "//base", |
| 17 "//cc", | 18 "//cc", |
| 18 "//cc/ipc:interfaces", | 19 "//cc/ipc:interfaces", |
| 19 "//cc/surfaces", | 20 "//cc/surfaces", |
| 20 "//mojo/public/cpp/bindings", | 21 "//mojo/public/cpp/bindings", |
| 21 ] | 22 ] |
| 22 } | 23 } |
| OLD | NEW |