| 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/gpu", | |
| 38 "//mojo/public/c/gles2", | |
| 39 "//mojo/public/cpp/bindings", | |
| 40 "//mojo/public/cpp/environment", | |
| 41 "//mojo/public/cpp/system", | |
| 42 "//mojo/public/cpp/utility", | |
| 43 "//mojo/public/interfaces/application", | |
| 44 "//mojo/services/geometry/public/interfaces", | |
| 45 "//mojo/services/surfaces/public/cpp", | |
| 46 "//mojo/services/surfaces/public/interfaces", | |
| 47 "//mojo/services/surfaces/public/interfaces:surface_id", | |
| 48 "//mojo/skia", | |
| 49 "//skia", | |
| 50 "//third_party/libpng", | |
| 51 "//ui/gfx", | |
| 52 "//ui/gfx/geometry", | |
| 53 ] | |
| 54 } | |
| OLD | NEW |