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", | |
13 "layer.cc", | 7 "layer.cc", |
14 "layer.h", | 8 "layer.h", |
15 "layer_client.cc", | 9 "layer_client.cc", |
16 "layer_client.h", | 10 "layer_client.h", |
17 "layer_host.cc", | 11 "layer_host.cc", |
18 "layer_host.h", | 12 "layer_host.h", |
19 "layer_host_client.cc", | 13 "layer_host_client.cc", |
20 "layer_host_client.h", | 14 "layer_host_client.h", |
| 15 "rasterizer.cc", |
| 16 "rasterizer.h", |
| 17 "rasterizer_bitmap.cc", |
| 18 "rasterizer_bitmap.h", |
| 19 "rasterizer_ganesh.cc", |
| 20 "rasterizer_ganesh.h", |
21 "resource_manager.cc", | 21 "resource_manager.cc", |
22 "resource_manager.h", | 22 "resource_manager.h", |
23 "surface_allocator.cc", | 23 "surface_allocator.cc", |
24 "surface_allocator.h", | 24 "surface_allocator.h", |
25 "surface_holder.cc", | 25 "surface_holder.cc", |
26 "surface_holder.h", | 26 "surface_holder.h", |
27 ] | 27 ] |
28 | 28 |
29 deps = [ | 29 deps = [ |
30 "//base", | 30 "//base", |
31 "//mojo/application", | 31 "//mojo/application", |
32 "//mojo/converters/geometry", | 32 "//mojo/converters/geometry", |
33 "//mojo/converters/surfaces", | 33 "//mojo/converters/surfaces", |
34 "//mojo/gpu", | 34 "//mojo/gpu", |
35 "//mojo/public/c/gles2", | 35 "//mojo/public/c/gles2", |
36 "//mojo/public/cpp/bindings", | 36 "//mojo/public/cpp/bindings", |
37 "//mojo/public/cpp/environment", | 37 "//mojo/public/cpp/environment", |
38 "//mojo/public/cpp/system", | 38 "//mojo/public/cpp/system", |
39 "//mojo/public/cpp/utility", | 39 "//mojo/public/cpp/utility", |
40 "//mojo/public/interfaces/application", | 40 "//mojo/public/interfaces/application", |
41 "//mojo/services/geometry/public/interfaces", | 41 "//mojo/services/geometry/public/interfaces", |
42 "//mojo/services/surfaces/public/cpp", | 42 "//mojo/services/surfaces/public/cpp", |
43 "//mojo/services/surfaces/public/interfaces", | 43 "//mojo/services/surfaces/public/interfaces", |
44 "//mojo/services/surfaces/public/interfaces:surface_id", | 44 "//mojo/services/surfaces/public/interfaces:surface_id", |
45 "//mojo/skia", | 45 "//mojo/skia", |
46 "//skia", | 46 "//skia", |
47 "//ui/gfx/geometry", | 47 "//ui/gfx/geometry", |
48 ] | 48 ] |
49 } | 49 } |
OLD | NEW |