| 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 26 matching lines...) Expand all Loading... |
| 37 "compositor_frame_sink_support_client.h", | 37 "compositor_frame_sink_support_client.h", |
| 38 "direct_compositor_frame_sink.cc", | 38 "direct_compositor_frame_sink.cc", |
| 39 "direct_compositor_frame_sink.h", | 39 "direct_compositor_frame_sink.h", |
| 40 "direct_surface_reference_factory.cc", | 40 "direct_surface_reference_factory.cc", |
| 41 "direct_surface_reference_factory.h", | 41 "direct_surface_reference_factory.h", |
| 42 "display.cc", | 42 "display.cc", |
| 43 "display.h", | 43 "display.h", |
| 44 "display_client.h", | 44 "display_client.h", |
| 45 "display_scheduler.cc", | 45 "display_scheduler.cc", |
| 46 "display_scheduler.h", | 46 "display_scheduler.h", |
| 47 "embedded_surface_tracker.cc", | 47 "referenced_surface_tracker.cc", |
| 48 "embedded_surface_tracker.h", | 48 "referenced_surface_tracker.h", |
| 49 "sequence_surface_reference_factory.cc", | 49 "sequence_surface_reference_factory.cc", |
| 50 "sequence_surface_reference_factory.h", | 50 "sequence_surface_reference_factory.h", |
| 51 "surface.cc", | 51 "surface.cc", |
| 52 "surface.h", | 52 "surface.h", |
| 53 "surface_aggregator.cc", | 53 "surface_aggregator.cc", |
| 54 "surface_aggregator.h", | 54 "surface_aggregator.h", |
| 55 "surface_factory.cc", | 55 "surface_factory.cc", |
| 56 "surface_factory.h", | 56 "surface_factory.h", |
| 57 "surface_factory_client.h", | 57 "surface_factory_client.h", |
| 58 "surface_hittest.cc", | 58 "surface_hittest.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 79 "//base/third_party/dynamic_annotations", | 79 "//base/third_party/dynamic_annotations", |
| 80 "//cc", | 80 "//cc", |
| 81 "//gpu/command_buffer/client:gles2_interface", | 81 "//gpu/command_buffer/client:gles2_interface", |
| 82 "//gpu/command_buffer/common", | 82 "//gpu/command_buffer/common", |
| 83 "//skia", | 83 "//skia", |
| 84 "//ui/events:events_base", | 84 "//ui/events:events_base", |
| 85 "//ui/gfx", | 85 "//ui/gfx", |
| 86 "//ui/gfx/geometry", | 86 "//ui/gfx/geometry", |
| 87 ] | 87 ] |
| 88 } | 88 } |
| OLD | NEW |