| 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 14 matching lines...) Expand all Loading... |
| 25 deps = [ | 25 deps = [ |
| 26 "//base", | 26 "//base", |
| 27 "//mojo/public/cpp/bindings:struct_traits", | 27 "//mojo/public/cpp/bindings:struct_traits", |
| 28 "//ui/gfx/geometry:geometry", | 28 "//ui/gfx/geometry:geometry", |
| 29 ] | 29 ] |
| 30 } | 30 } |
| 31 | 31 |
| 32 cc_component("surfaces") { | 32 cc_component("surfaces") { |
| 33 output_name = "cc_surfaces" | 33 output_name = "cc_surfaces" |
| 34 sources = [ | 34 sources = [ |
| 35 "compositor_frame_sink_delegate.h", |
| 35 "compositor_frame_sink_support.cc", | 36 "compositor_frame_sink_support.cc", |
| 36 "compositor_frame_sink_support.h", | 37 "compositor_frame_sink_support.h", |
| 37 "compositor_frame_sink_support_client.h", | 38 "compositor_frame_sink_support_client.h", |
| 38 "direct_compositor_frame_sink.cc", | 39 "direct_compositor_frame_sink.cc", |
| 39 "direct_compositor_frame_sink.h", | 40 "direct_compositor_frame_sink.h", |
| 40 "direct_surface_reference_factory.cc", | 41 "direct_surface_reference_factory.cc", |
| 41 "direct_surface_reference_factory.h", | 42 "direct_surface_reference_factory.h", |
| 42 "display.cc", | 43 "display.cc", |
| 43 "display.h", | 44 "display.h", |
| 44 "display_client.h", | 45 "display_client.h", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "//base/third_party/dynamic_annotations", | 80 "//base/third_party/dynamic_annotations", |
| 80 "//cc", | 81 "//cc", |
| 81 "//gpu/command_buffer/client:gles2_interface", | 82 "//gpu/command_buffer/client:gles2_interface", |
| 82 "//gpu/command_buffer/common", | 83 "//gpu/command_buffer/common", |
| 83 "//skia", | 84 "//skia", |
| 84 "//ui/events:events_base", | 85 "//ui/events:events_base", |
| 85 "//ui/gfx", | 86 "//ui/gfx", |
| 86 "//ui/gfx/geometry", | 87 "//ui/gfx/geometry", |
| 87 ] | 88 ] |
| 88 } | 89 } |
| OLD | NEW |