| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 "layers/ui_resource_layer.h", | 222 "layers/ui_resource_layer.h", |
| 223 "layers/ui_resource_layer_impl.cc", | 223 "layers/ui_resource_layer_impl.cc", |
| 224 "layers/ui_resource_layer_impl.h", | 224 "layers/ui_resource_layer_impl.h", |
| 225 "layers/video_frame_provider.h", | 225 "layers/video_frame_provider.h", |
| 226 "layers/video_frame_provider_client_impl.cc", | 226 "layers/video_frame_provider_client_impl.cc", |
| 227 "layers/video_frame_provider_client_impl.h", | 227 "layers/video_frame_provider_client_impl.h", |
| 228 "layers/video_layer.cc", | 228 "layers/video_layer.cc", |
| 229 "layers/video_layer.h", | 229 "layers/video_layer.h", |
| 230 "layers/video_layer_impl.cc", | 230 "layers/video_layer_impl.cc", |
| 231 "layers/video_layer_impl.h", | 231 "layers/video_layer_impl.h", |
| 232 "layers/viewport.cc", |
| 233 "layers/viewport.h", |
| 232 "output/begin_frame_args.cc", | 234 "output/begin_frame_args.cc", |
| 233 "output/begin_frame_args.h", | 235 "output/begin_frame_args.h", |
| 234 "output/bsp_tree.cc", | 236 "output/bsp_tree.cc", |
| 235 "output/bsp_tree.h", | 237 "output/bsp_tree.h", |
| 236 "output/bsp_walk_action.cc", | 238 "output/bsp_walk_action.cc", |
| 237 "output/bsp_walk_action.h", | 239 "output/bsp_walk_action.h", |
| 238 "output/compositor_frame.cc", | 240 "output/compositor_frame.cc", |
| 239 "output/compositor_frame.h", | 241 "output/compositor_frame.h", |
| 240 "output/compositor_frame_ack.cc", | 242 "output/compositor_frame_ack.cc", |
| 241 "output/compositor_frame_ack.h", | 243 "output/compositor_frame_ack.h", |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 "//media", | 918 "//media", |
| 917 "//skia", | 919 "//skia", |
| 918 "//testing/gmock", | 920 "//testing/gmock", |
| 919 "//testing/gtest", | 921 "//testing/gtest", |
| 920 "//testing/perf", | 922 "//testing/perf", |
| 921 "//ui/gfx", | 923 "//ui/gfx", |
| 922 "//ui/gfx/geometry", | 924 "//ui/gfx/geometry", |
| 923 "//ui/gl", | 925 "//ui/gl", |
| 924 ] | 926 ] |
| 925 } | 927 } |
| OLD | NEW |