| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", |
| 59 "surface_hittest.h", | 59 "surface_hittest.h", |
| 60 "surface_hittest_delegate.h", | 60 "surface_hittest_delegate.h", |
| 61 "surface_id_allocator.cc", | 61 "surface_id_allocator.cc", |
| 62 "surface_id_allocator.h", | 62 "surface_id_allocator.h", |
| 63 "surface_manager.cc", | 63 "surface_manager.cc", |
| 64 "surface_manager.h", | 64 "surface_manager.h", |
| 65 "surface_reference_manager.h", | |
| 66 "surface_resource_holder.cc", | 65 "surface_resource_holder.cc", |
| 67 "surface_resource_holder.h", | 66 "surface_resource_holder.h", |
| 68 "surfaces_export.h", | 67 "surfaces_export.h", |
| 69 ] | 68 ] |
| 70 | 69 |
| 71 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] | 70 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] |
| 72 | 71 |
| 73 public_deps = [ | 72 public_deps = [ |
| 74 ":surface_id", | 73 ":surface_id", |
| 75 ] | 74 ] |
| 76 | 75 |
| 77 deps = [ | 76 deps = [ |
| 78 "//base", | 77 "//base", |
| 79 "//base/third_party/dynamic_annotations", | 78 "//base/third_party/dynamic_annotations", |
| 80 "//cc", | 79 "//cc", |
| 81 "//gpu/command_buffer/client:gles2_interface", | 80 "//gpu/command_buffer/client:gles2_interface", |
| 82 "//gpu/command_buffer/common", | 81 "//gpu/command_buffer/common", |
| 83 "//skia", | 82 "//skia", |
| 84 "//ui/events:events_base", | 83 "//ui/events:events_base", |
| 85 "//ui/gfx", | 84 "//ui/gfx", |
| 86 "//ui/gfx/geometry", | 85 "//ui/gfx/geometry", |
| 87 ] | 86 ] |
| 88 } | 87 } |
| OLD | NEW |