OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 source_set("common") { | 8 source_set("common") { |
9 sources = [ | 9 sources = [ |
10 "backend/gpu_output.cc", | 10 "backend/gpu_output.cc", |
11 "backend/gpu_output.h", | 11 "backend/gpu_output.h", |
12 "backend/gpu_rasterizer.cc", | 12 "backend/gpu_rasterizer.cc", |
13 "backend/gpu_rasterizer.h", | 13 "backend/gpu_rasterizer.h", |
14 "backend/output.h", | 14 "backend/output.h", |
15 "backend/scheduler.cc", | 15 "backend/scheduler.cc", |
16 "backend/scheduler.h", | 16 "backend/scheduler.h", |
17 "backend/vsync_scheduler.cc", | 17 "backend/vsync_scheduler.cc", |
18 "backend/vsync_scheduler.h", | 18 "backend/vsync_scheduler.h", |
19 "compositor_app.cc", | 19 "compositor_app.cc", |
20 "compositor_app.h", | 20 "compositor_app.h", |
21 "compositor_engine.cc", | 21 "compositor_engine.cc", |
22 "compositor_engine.h", | 22 "compositor_engine.h", |
23 "compositor_impl.cc", | 23 "compositor_impl.cc", |
24 "compositor_impl.h", | 24 "compositor_impl.h", |
| 25 "frame_dispatcher.cc", |
| 26 "frame_dispatcher.h", |
25 "graph/nodes.cc", | 27 "graph/nodes.cc", |
26 "graph/nodes.h", | 28 "graph/nodes.h", |
27 "graph/resources.cc", | 29 "graph/resources.cc", |
28 "graph/resources.h", | 30 "graph/resources.h", |
29 "graph/scene_content.cc", | 31 "graph/scene_content.cc", |
30 "graph/scene_content.h", | 32 "graph/scene_content.h", |
31 "graph/scene_def.cc", | 33 "graph/scene_def.cc", |
32 "graph/scene_def.h", | 34 "graph/scene_def.h", |
33 "graph/scene_label.cc", | 35 "graph/scene_label.cc", |
34 "graph/scene_label.h", | 36 "graph/scene_label.h", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 ] | 86 ] |
85 } | 87 } |
86 | 88 |
87 mojo_native_application("apptests") { | 89 mojo_native_application("apptests") { |
88 output_name = "compositor_apptests" | 90 output_name = "compositor_apptests" |
89 | 91 |
90 testonly = true | 92 testonly = true |
91 | 93 |
92 sources = [ | 94 sources = [ |
93 "backend/vsync_scheduler_unittest.cc", | 95 "backend/vsync_scheduler_unittest.cc", |
| 96 "tests/scheduling_apptest.cc", |
94 ] | 97 ] |
95 | 98 |
96 deps = [ | 99 deps = [ |
97 ":common", | 100 ":common", |
98 "//base/test:test_support", | 101 "//base/test:test_support", |
99 "//mojo/application:test_support", | 102 "//mojo/application:test_support", |
| 103 "//mojo/services/gfx/composition/interfaces:interfaces_sync", |
| 104 "//mojo/services/native_viewport/interfaces", |
100 "//testing/gtest", | 105 "//testing/gtest", |
101 ] | 106 ] |
102 } | 107 } |
OLD | NEW |