OLD | NEW |
| (Empty) |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 import("//build/config/ui.gni") | |
6 | |
7 source_set("display_compositor") { | |
8 sources = [ | |
9 "compositor_frame_sink_delegate.h", | |
10 "compositor_frame_sink_factory_impl.cc", | |
11 "compositor_frame_sink_factory_impl.h", | |
12 "compositor_frame_sink_impl.cc", | |
13 "compositor_frame_sink_impl.h", | |
14 "display_compositor_impl.cc", | |
15 "display_compositor_impl.h", | |
16 "display_impl.cc", | |
17 "display_impl.h", | |
18 ] | |
19 | |
20 deps = [ | |
21 "//base", | |
22 "//cc", | |
23 "//cc/surfaces", | |
24 "//cc/surfaces:surface_id", | |
25 "//components/mus/public/interfaces/gpu:interfaces", | |
26 | |
27 # TODO(fsamuel): Remove this dependency. | |
28 "//components/mus/surfaces", | |
29 ] | |
30 } | |
OLD | NEW |