| 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_reference.cc", |
| 16 "surface_reference.h", |
| 15 "surface_sequence.h", | 17 "surface_sequence.h", |
| 16 "surface_sequence_generator.cc", | 18 "surface_sequence_generator.cc", |
| 17 "surface_sequence_generator.h", | 19 "surface_sequence_generator.h", |
| 18 ] | 20 ] |
| 19 | 21 |
| 20 deps = [ | 22 deps = [ |
| 21 "//base", | 23 "//base", |
| 22 ] | 24 ] |
| 23 } | 25 } |
| 24 | 26 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//base/third_party/dynamic_annotations", | 64 "//base/third_party/dynamic_annotations", |
| 63 "//cc", | 65 "//cc", |
| 64 "//gpu/command_buffer/client:gles2_interface", | 66 "//gpu/command_buffer/client:gles2_interface", |
| 65 "//gpu/command_buffer/common", | 67 "//gpu/command_buffer/common", |
| 66 "//skia", | 68 "//skia", |
| 67 "//ui/events:events_base", | 69 "//ui/events:events_base", |
| 68 "//ui/gfx", | 70 "//ui/gfx", |
| 69 "//ui/gfx/geometry", | 71 "//ui/gfx/geometry", |
| 70 ] | 72 ] |
| 71 } | 73 } |
| OLD | NEW |