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

Side by Side Diff: services/gfx/compositor/BUILD.gn

Issue 1552963002: Initial checkin of the new Mozart compositor. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-11
Patch Set: fix android build Created 4 years, 10 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 | « services/gfx/README.md ('k') | services/gfx/compositor/README.md » ('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 2015 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 import("//mojo/public/mojo_application.gni")
6 import("//testing/test.gni")
7
8 source_set("common") {
9 sources = [
10 "backend/gpu_output.cc",
11 "backend/gpu_output.h",
12 "backend/gpu_rasterizer.cc",
13 "backend/gpu_rasterizer.h",
14 "backend/output.h",
15 "backend/scheduler.cc",
16 "backend/scheduler.h",
17 "backend/vsync_scheduler.cc",
18 "backend/vsync_scheduler.h",
19 "compositor_app.cc",
20 "compositor_app.h",
21 "compositor_engine.cc",
22 "compositor_engine.h",
23 "compositor_impl.cc",
24 "compositor_impl.h",
25 "graph/node_def.cc",
26 "graph/node_def.h",
27 "graph/resource_def.cc",
28 "graph/resource_def.h",
29 "graph/scene_def.cc",
30 "graph/scene_def.h",
31 "graph/snapshot.cc",
32 "graph/snapshot.h",
33 "render/render_frame.cc",
34 "render/render_frame.h",
35 "render/render_image.cc",
36 "render/render_image.h",
37 "render/render_layer.cc",
38 "render/render_layer.h",
39 "renderer_impl.cc",
40 "renderer_impl.h",
41 "renderer_state.cc",
42 "renderer_state.h",
43 "scene_impl.cc",
44 "scene_impl.h",
45 "scene_state.cc",
46 "scene_state.h",
47 ]
48
49 public_deps = [
50 "//base",
51 "//mojo/application",
52 "//mojo/common",
53 "//mojo/common:tracing_impl",
54 "//mojo/converters/geometry",
55 "//mojo/gpu",
56 "//mojo/public/c/gpu",
57 "//mojo/public/cpp/bindings:bindings",
58 "//mojo/services/geometry/cpp",
59 "//mojo/services/geometry/interfaces",
60 "//mojo/services/gfx/composition/cpp",
61 "//mojo/services/gfx/composition/interfaces",
62 "//mojo/services/gpu/interfaces",
63 "//mojo/skia",
64 "//skia",
65 ]
66 }
67
68 mojo_native_application("compositor") {
69 output_name = "compositor_service"
70
71 sources = [
72 "main.cc",
73 ]
74
75 deps = [
76 ":common",
77 "//mojo/environment:chromium",
78 ]
79 }
80
81 mojo_native_application("apptests") {
82 output_name = "compositor_apptests"
83
84 testonly = true
85
86 sources = [
87 "backend/vsync_scheduler_unittest.cc",
88 ]
89
90 deps = [
91 ":common",
92 "//base/test:test_support",
93 "//mojo/application:test_support",
94 "//testing/gtest",
95 ]
96 }
OLDNEW
« no previous file with comments | « services/gfx/README.md ('k') | services/gfx/compositor/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698