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