| 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_id_allocator.cc", |
| 16 "surface_id_allocator.h", |
| 15 "surface_reference.cc", | 17 "surface_reference.cc", |
| 16 "surface_reference.h", | 18 "surface_reference.h", |
| 17 "surface_sequence.h", | 19 "surface_sequence.h", |
| 18 "surface_sequence_generator.cc", | 20 "surface_sequence_generator.cc", |
| 19 "surface_sequence_generator.h", | 21 "surface_sequence_generator.h", |
| 20 ] | 22 ] |
| 21 | 23 |
| 22 deps = [ | 24 deps = [ |
| 23 "//base", | 25 "//base", |
| 24 "//mojo/public/cpp/bindings:struct_traits", | 26 "//mojo/public/cpp/bindings:struct_traits", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 41 "surface.cc", | 43 "surface.cc", |
| 42 "surface.h", | 44 "surface.h", |
| 43 "surface_aggregator.cc", | 45 "surface_aggregator.cc", |
| 44 "surface_aggregator.h", | 46 "surface_aggregator.h", |
| 45 "surface_factory.cc", | 47 "surface_factory.cc", |
| 46 "surface_factory.h", | 48 "surface_factory.h", |
| 47 "surface_factory_client.h", | 49 "surface_factory_client.h", |
| 48 "surface_hittest.cc", | 50 "surface_hittest.cc", |
| 49 "surface_hittest.h", | 51 "surface_hittest.h", |
| 50 "surface_hittest_delegate.h", | 52 "surface_hittest_delegate.h", |
| 51 "surface_id_allocator.cc", | |
| 52 "surface_id_allocator.h", | |
| 53 "surface_manager.cc", | 53 "surface_manager.cc", |
| 54 "surface_manager.h", | 54 "surface_manager.h", |
| 55 "surface_reference_manager.h", | 55 "surface_reference_manager.h", |
| 56 "surface_resource_holder.cc", | 56 "surface_resource_holder.cc", |
| 57 "surface_resource_holder.h", | 57 "surface_resource_holder.h", |
| 58 "surfaces_export.h", | 58 "surfaces_export.h", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] | 61 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] |
| 62 | 62 |
| 63 public_deps = [ | 63 public_deps = [ |
| 64 ":surface_id", | 64 ":surface_id", |
| 65 ] | 65 ] |
| 66 deps = [ | 66 deps = [ |
| 67 "//base", | 67 "//base", |
| 68 "//base/third_party/dynamic_annotations", | 68 "//base/third_party/dynamic_annotations", |
| 69 "//cc", | 69 "//cc", |
| 70 "//gpu/command_buffer/client:gles2_interface", | 70 "//gpu/command_buffer/client:gles2_interface", |
| 71 "//gpu/command_buffer/common", | 71 "//gpu/command_buffer/common", |
| 72 "//skia", | 72 "//skia", |
| 73 "//ui/events:events_base", | 73 "//ui/events:events_base", |
| 74 "//ui/gfx", | 74 "//ui/gfx", |
| 75 "//ui/gfx/geometry", | 75 "//ui/gfx/geometry", |
| 76 ] | 76 ] |
| 77 } | 77 } |
| OLD | NEW |