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", |
(...skipping 16 matching lines...) Expand all Loading... |
27 "graph/resource_def.cc", | 27 "graph/resource_def.cc", |
28 "graph/resource_def.h", | 28 "graph/resource_def.h", |
29 "graph/scene_content.cc", | 29 "graph/scene_content.cc", |
30 "graph/scene_content.h", | 30 "graph/scene_content.h", |
31 "graph/scene_def.cc", | 31 "graph/scene_def.cc", |
32 "graph/scene_def.h", | 32 "graph/scene_def.h", |
33 "graph/scene_label.cc", | 33 "graph/scene_label.cc", |
34 "graph/scene_label.h", | 34 "graph/scene_label.h", |
35 "graph/snapshot.cc", | 35 "graph/snapshot.cc", |
36 "graph/snapshot.h", | 36 "graph/snapshot.h", |
| 37 "graph/transform_pair.cc", |
| 38 "graph/transform_pair.h", |
37 "render/render_frame.cc", | 39 "render/render_frame.cc", |
38 "render/render_frame.h", | 40 "render/render_frame.h", |
39 "render/render_image.cc", | 41 "render/render_image.cc", |
40 "render/render_image.h", | 42 "render/render_image.h", |
41 "renderer_impl.cc", | 43 "renderer_impl.cc", |
42 "renderer_impl.h", | 44 "renderer_impl.h", |
43 "renderer_state.cc", | 45 "renderer_state.cc", |
44 "renderer_state.h", | 46 "renderer_state.h", |
45 "scene_impl.cc", | 47 "scene_impl.cc", |
46 "scene_impl.h", | 48 "scene_impl.h", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "backend/vsync_scheduler_unittest.cc", | 91 "backend/vsync_scheduler_unittest.cc", |
90 ] | 92 ] |
91 | 93 |
92 deps = [ | 94 deps = [ |
93 ":common", | 95 ":common", |
94 "//base/test:test_support", | 96 "//base/test:test_support", |
95 "//mojo/application:test_support", | 97 "//mojo/application:test_support", |
96 "//testing/gtest", | 98 "//testing/gtest", |
97 ] | 99 ] |
98 } | 100 } |
OLD | NEW |