| 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 18 matching lines...) Expand all Loading... |
| 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", | 37 "graph/transform_pair.cc", |
| 38 "graph/transform_pair.h", | 38 "graph/transform_pair.h", |
| 39 "graph/universe.cc", |
| 40 "graph/universe.h", |
| 39 "render/render_frame.cc", | 41 "render/render_frame.cc", |
| 40 "render/render_frame.h", | 42 "render/render_frame.h", |
| 41 "render/render_image.cc", | 43 "render/render_image.cc", |
| 42 "render/render_image.h", | 44 "render/render_image.h", |
| 43 "renderer_impl.cc", | 45 "renderer_impl.cc", |
| 44 "renderer_impl.h", | 46 "renderer_impl.h", |
| 45 "renderer_state.cc", | 47 "renderer_state.cc", |
| 46 "renderer_state.h", | 48 "renderer_state.h", |
| 47 "scene_impl.cc", | 49 "scene_impl.cc", |
| 48 "scene_impl.h", | 50 "scene_impl.h", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "backend/vsync_scheduler_unittest.cc", | 93 "backend/vsync_scheduler_unittest.cc", |
| 92 ] | 94 ] |
| 93 | 95 |
| 94 deps = [ | 96 deps = [ |
| 95 ":common", | 97 ":common", |
| 96 "//base/test:test_support", | 98 "//base/test:test_support", |
| 97 "//mojo/application:test_support", | 99 "//mojo/application:test_support", |
| 98 "//testing/gtest", | 100 "//testing/gtest", |
| 99 ] | 101 ] |
| 100 } | 102 } |
| OLD | NEW |