| 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("//cc/cc.gni") | 5 import("//cc/cc.gni") |
| 6 | 6 |
| 7 cc_source_set("surface_id") { | 7 cc_source_set("surface_id") { |
| 8 sources = [ | 8 sources = [ |
| 9 "frame_sink_id.cc", | 9 "frame_sink_id.cc", |
| 10 "frame_sink_id.h", | 10 "frame_sink_id.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 cc_component("surfaces") { | 28 cc_component("surfaces") { |
| 29 output_name = "cc_surfaces" | 29 output_name = "cc_surfaces" |
| 30 sources = [ | 30 sources = [ |
| 31 "compositor_frame_sink_support.cc", | 31 "compositor_frame_sink_support.cc", |
| 32 "compositor_frame_sink_support.h", | 32 "compositor_frame_sink_support.h", |
| 33 "compositor_frame_sink_support_client.h", | 33 "compositor_frame_sink_support_client.h", |
| 34 "direct_compositor_frame_sink.cc", | 34 "direct_compositor_frame_sink.cc", |
| 35 "direct_compositor_frame_sink.h", | 35 "direct_compositor_frame_sink.h", |
| 36 "display.cc", | 36 "display.cc", |
| 37 "display.h", | 37 "display.h", |
| 38 "display_begin_frame_source.cc", |
| 39 "display_begin_frame_source.h", |
| 38 "display_client.h", | 40 "display_client.h", |
| 39 "display_scheduler.cc", | 41 "display_scheduler.cc", |
| 40 "display_scheduler.h", | 42 "display_scheduler.h", |
| 41 "surface.cc", | 43 "surface.cc", |
| 42 "surface.h", | 44 "surface.h", |
| 43 "surface_aggregator.cc", | 45 "surface_aggregator.cc", |
| 44 "surface_aggregator.h", | 46 "surface_aggregator.h", |
| 45 "surface_factory.cc", | 47 "surface_factory.cc", |
| 46 "surface_factory.h", | 48 "surface_factory.h", |
| 47 "surface_factory_client.h", | 49 "surface_factory_client.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 68 "//base/third_party/dynamic_annotations", | 70 "//base/third_party/dynamic_annotations", |
| 69 "//cc", | 71 "//cc", |
| 70 "//gpu/command_buffer/client:gles2_interface", | 72 "//gpu/command_buffer/client:gles2_interface", |
| 71 "//gpu/command_buffer/common", | 73 "//gpu/command_buffer/common", |
| 72 "//skia", | 74 "//skia", |
| 73 "//ui/events:events_base", | 75 "//ui/events:events_base", |
| 74 "//ui/gfx", | 76 "//ui/gfx", |
| 75 "//ui/gfx/geometry", | 77 "//ui/gfx/geometry", |
| 76 ] | 78 ] |
| 77 } | 79 } |
| OLD | NEW |