Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: sky/compositor/BUILD.gn

Issue 1213683004: Move //sky/compositor to //sky/viewer/compositor (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « examples/sky_compositor_app/sky_compositor_app.cc ('k') | sky/compositor/layer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « examples/sky_compositor_app/sky_compositor_app.cc ('k') | sky/compositor/layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698