OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("cc") { | 7 component("cc") { |
8 sources = [ | 8 sources = [ |
9 "animation/animation.cc", | 9 "animation/animation.cc", |
10 "animation/animation.h", | 10 "animation/animation.h", |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 "layers/ui_resource_layer.h", | 189 "layers/ui_resource_layer.h", |
190 "layers/ui_resource_layer_impl.cc", | 190 "layers/ui_resource_layer_impl.cc", |
191 "layers/ui_resource_layer_impl.h", | 191 "layers/ui_resource_layer_impl.h", |
192 "layers/video_frame_provider.h", | 192 "layers/video_frame_provider.h", |
193 "layers/video_frame_provider_client_impl.cc", | 193 "layers/video_frame_provider_client_impl.cc", |
194 "layers/video_frame_provider_client_impl.h", | 194 "layers/video_frame_provider_client_impl.h", |
195 "layers/video_layer.cc", | 195 "layers/video_layer.cc", |
196 "layers/video_layer.h", | 196 "layers/video_layer.h", |
197 "layers/video_layer_impl.cc", | 197 "layers/video_layer_impl.cc", |
198 "layers/video_layer_impl.h", | 198 "layers/video_layer_impl.h", |
| 199 "layers/viewport.cc", |
| 200 "layers/viewport.h", |
199 "output/begin_frame_args.cc", | 201 "output/begin_frame_args.cc", |
200 "output/begin_frame_args.h", | 202 "output/begin_frame_args.h", |
201 "output/bsp_tree.cc", | 203 "output/bsp_tree.cc", |
202 "output/bsp_tree.h", | 204 "output/bsp_tree.h", |
203 "output/bsp_walk_action.cc", | 205 "output/bsp_walk_action.cc", |
204 "output/bsp_walk_action.h", | 206 "output/bsp_walk_action.h", |
205 "output/compositor_frame.cc", | 207 "output/compositor_frame.cc", |
206 "output/compositor_frame.h", | 208 "output/compositor_frame.h", |
207 "output/compositor_frame_ack.cc", | 209 "output/compositor_frame_ack.cc", |
208 "output/compositor_frame_ack.h", | 210 "output/compositor_frame_ack.h", |
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 "//testing/gmock", | 909 "//testing/gmock", |
908 "//testing/gtest", | 910 "//testing/gtest", |
909 "//testing/perf", | 911 "//testing/perf", |
910 "//ui/gfx", | 912 "//ui/gfx", |
911 "//ui/gfx/geometry", | 913 "//ui/gfx/geometry", |
912 "//ui/gl", | 914 "//ui/gl", |
913 ] | 915 ] |
914 } | 916 } |
915 # When adding support for isolates, please have a look at run-time dependencies | 917 # When adding support for isolates, please have a look at run-time dependencies |
916 # in the cc_unittests_run target in cc_tests.gyp. | 918 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |