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