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 source_set("compositor") { | 5 source_set("compositor") { |
6 sources = [ | 6 sources = [ |
| 7 "display_delegate.cc", |
| 8 "display_delegate.h", |
| 9 "display_delegate_bitmap.cc", |
| 10 "display_delegate_bitmap.h", |
| 11 "display_delegate_ganesh.cc", |
| 12 "display_delegate_ganesh.h", |
7 "layer.cc", | 13 "layer.cc", |
8 "layer.h", | 14 "layer.h", |
9 "layer_client.cc", | 15 "layer_client.cc", |
10 "layer_client.h", | 16 "layer_client.h", |
11 "layer_host.cc", | 17 "layer_host.cc", |
12 "layer_host.h", | 18 "layer_host.h", |
13 "layer_host_client.cc", | 19 "layer_host_client.cc", |
14 "layer_host_client.h", | 20 "layer_host_client.h", |
15 "resource_manager.cc", | 21 "resource_manager.cc", |
16 "resource_manager.h", | 22 "resource_manager.h", |
(...skipping 17 matching lines...) Expand all Loading... |
34 "//mojo/public/interfaces/application", | 40 "//mojo/public/interfaces/application", |
35 "//mojo/services/geometry/public/interfaces", | 41 "//mojo/services/geometry/public/interfaces", |
36 "//mojo/services/surfaces/public/cpp", | 42 "//mojo/services/surfaces/public/cpp", |
37 "//mojo/services/surfaces/public/interfaces", | 43 "//mojo/services/surfaces/public/interfaces", |
38 "//mojo/services/surfaces/public/interfaces:surface_id", | 44 "//mojo/services/surfaces/public/interfaces:surface_id", |
39 "//mojo/skia", | 45 "//mojo/skia", |
40 "//skia", | 46 "//skia", |
41 "//ui/gfx/geometry", | 47 "//ui/gfx/geometry", |
42 ] | 48 ] |
43 } | 49 } |
OLD | NEW |