| 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 28 matching lines...) Expand all Loading... |
| 39 "surface_factory.cc", | 39 "surface_factory.cc", |
| 40 "surface_factory.h", | 40 "surface_factory.h", |
| 41 "surface_factory_client.h", | 41 "surface_factory_client.h", |
| 42 "surface_hittest.cc", | 42 "surface_hittest.cc", |
| 43 "surface_hittest.h", | 43 "surface_hittest.h", |
| 44 "surface_hittest_delegate.h", | 44 "surface_hittest_delegate.h", |
| 45 "surface_id_allocator.cc", | 45 "surface_id_allocator.cc", |
| 46 "surface_id_allocator.h", | 46 "surface_id_allocator.h", |
| 47 "surface_manager.cc", | 47 "surface_manager.cc", |
| 48 "surface_manager.h", | 48 "surface_manager.h", |
| 49 "surface_reference_manager.h", |
| 49 "surface_resource_holder.cc", | 50 "surface_resource_holder.cc", |
| 50 "surface_resource_holder.h", | 51 "surface_resource_holder.h", |
| 51 "surfaces_export.h", | 52 "surfaces_export.h", |
| 52 ] | 53 ] |
| 53 | 54 |
| 54 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] | 55 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] |
| 55 | 56 |
| 56 public_deps = [ | 57 public_deps = [ |
| 57 ":surface_id", | 58 ":surface_id", |
| 58 ] | 59 ] |
| 59 deps = [ | 60 deps = [ |
| 60 "//base", | 61 "//base", |
| 61 "//base/third_party/dynamic_annotations", | 62 "//base/third_party/dynamic_annotations", |
| 62 "//cc", | 63 "//cc", |
| 63 "//gpu/command_buffer/client:gles2_interface", | 64 "//gpu/command_buffer/client:gles2_interface", |
| 64 "//gpu/command_buffer/common", | 65 "//gpu/command_buffer/common", |
| 65 "//skia", | 66 "//skia", |
| 66 "//ui/events:events_base", | 67 "//ui/events:events_base", |
| 67 "//ui/gfx", | 68 "//ui/gfx", |
| 68 "//ui/gfx/geometry", | 69 "//ui/gfx/geometry", |
| 69 ] | 70 ] |
| 70 } | 71 } |
| OLD | NEW |