| 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", |
| 11 "local_frame_id.cc", | 11 "local_frame_id.cc", |
| 12 "local_frame_id.h", | 12 "local_frame_id.h", |
| 13 "surface_id.cc", | 13 "surface_id.cc", |
| 14 "surface_id.h", | 14 "surface_id.h", |
| 15 "surface_sequence.h", | 15 "surface_sequence.h", |
| 16 "surface_sequence_generator.cc", | 16 "surface_sequence_generator.cc", |
| 17 "surface_sequence_generator.h", | 17 "surface_sequence_generator.h", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 deps = [ | 20 deps = [ |
| 21 "//base", | 21 "//base", |
| 22 ] | 22 ] |
| 23 } | 23 } |
| 24 | 24 |
| 25 cc_component("surfaces") { | 25 cc_component("surfaces") { |
| 26 output_name = "cc_surfaces" | 26 output_name = "cc_surfaces" |
| 27 sources = [ | 27 sources = [ |
| 28 "compositor_frame_sink_support.cc", |
| 29 "compositor_frame_sink_support.h", |
| 30 "compositor_frame_sink_support_client.h", |
| 28 "direct_compositor_frame_sink.cc", | 31 "direct_compositor_frame_sink.cc", |
| 29 "direct_compositor_frame_sink.h", | 32 "direct_compositor_frame_sink.h", |
| 30 "display.cc", | 33 "display.cc", |
| 31 "display.h", | 34 "display.h", |
| 32 "display_client.h", | 35 "display_client.h", |
| 33 "display_scheduler.cc", | 36 "display_scheduler.cc", |
| 34 "display_scheduler.h", | 37 "display_scheduler.h", |
| 35 "surface.cc", | 38 "surface.cc", |
| 36 "surface.h", | 39 "surface.h", |
| 37 "surface_aggregator.cc", | 40 "surface_aggregator.cc", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 62 "//base/third_party/dynamic_annotations", | 65 "//base/third_party/dynamic_annotations", |
| 63 "//cc", | 66 "//cc", |
| 64 "//gpu/command_buffer/client:gles2_interface", | 67 "//gpu/command_buffer/client:gles2_interface", |
| 65 "//gpu/command_buffer/common", | 68 "//gpu/command_buffer/common", |
| 66 "//skia", | 69 "//skia", |
| 67 "//ui/events:events_base", | 70 "//ui/events:events_base", |
| 68 "//ui/gfx", | 71 "//ui/gfx", |
| 69 "//ui/gfx/geometry", | 72 "//ui/gfx/geometry", |
| 70 ] | 73 ] |
| 71 } | 74 } |
| OLD | NEW |