| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 public_deps = [ | 76 public_deps = [ |
| 77 ":surface_id", | 77 ":surface_id", |
| 78 ] | 78 ] |
| 79 | 79 |
| 80 deps = [ | 80 deps = [ |
| 81 "//base", | 81 "//base", |
| 82 "//base/third_party/dynamic_annotations", | 82 "//base/third_party/dynamic_annotations", |
| 83 "//cc", | 83 "//cc", |
| 84 "//gpu/command_buffer/client:gles2_interface", | 84 "//gpu/command_buffer/client:gles2_interface", |
| 85 "//gpu/command_buffer/common", | 85 "//gpu/command_buffer/common", |
| 86 "//gpu/vulkan:features", | |
| 87 "//skia", | 86 "//skia", |
| 88 "//ui/events:events_base", | 87 "//ui/events:events_base", |
| 89 "//ui/gfx", | 88 "//ui/gfx", |
| 90 "//ui/gfx/geometry", | 89 "//ui/gfx/geometry", |
| 91 ] | 90 ] |
| 92 } | 91 } |
| OLD | NEW |