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", |
| 16 "picture_serializer.h", |
15 "rasterizer.cc", | 17 "rasterizer.cc", |
16 "rasterizer.h", | 18 "rasterizer.h", |
17 "rasterizer_bitmap.cc", | 19 "rasterizer_bitmap.cc", |
18 "rasterizer_bitmap.h", | 20 "rasterizer_bitmap.h", |
19 "rasterizer_ganesh.cc", | 21 "rasterizer_ganesh.cc", |
20 "rasterizer_ganesh.h", | 22 "rasterizer_ganesh.h", |
21 "resource_manager.cc", | 23 "resource_manager.cc", |
22 "resource_manager.h", | 24 "resource_manager.h", |
23 "surface_allocator.cc", | 25 "surface_allocator.cc", |
24 "surface_allocator.h", | 26 "surface_allocator.h", |
(...skipping 12 matching lines...) Expand all Loading... |
37 "//mojo/public/cpp/environment", | 39 "//mojo/public/cpp/environment", |
38 "//mojo/public/cpp/system", | 40 "//mojo/public/cpp/system", |
39 "//mojo/public/cpp/utility", | 41 "//mojo/public/cpp/utility", |
40 "//mojo/public/interfaces/application", | 42 "//mojo/public/interfaces/application", |
41 "//mojo/services/geometry/public/interfaces", | 43 "//mojo/services/geometry/public/interfaces", |
42 "//mojo/services/surfaces/public/cpp", | 44 "//mojo/services/surfaces/public/cpp", |
43 "//mojo/services/surfaces/public/interfaces", | 45 "//mojo/services/surfaces/public/interfaces", |
44 "//mojo/services/surfaces/public/interfaces:surface_id", | 46 "//mojo/services/surfaces/public/interfaces:surface_id", |
45 "//mojo/skia", | 47 "//mojo/skia", |
46 "//skia", | 48 "//skia", |
| 49 "//third_party/libpng", |
| 50 "//ui/gfx", |
47 "//ui/gfx/geometry", | 51 "//ui/gfx/geometry", |
48 ] | 52 ] |
49 } | 53 } |
OLD | NEW |