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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 source_set("surfaces") { | 7 source_set("surfaces") { |
8 sources = [ | 8 sources = [ |
9 "direct_output_surface.cc", | 9 "direct_output_surface.cc", |
10 "direct_output_surface.h", | 10 "direct_output_surface.h", |
11 "display_compositor.cc", | 11 "display_compositor.cc", |
12 "display_compositor.h", | 12 "display_compositor.h", |
| 13 "display_compositor_factory.cc", |
| 14 "display_compositor_factory.h", |
13 "gpu_compositor_frame_sink.cc", | 15 "gpu_compositor_frame_sink.cc", |
14 "gpu_compositor_frame_sink.h", | 16 "gpu_compositor_frame_sink.h", |
15 ] | 17 ] |
16 | 18 |
17 deps = [ | 19 deps = [ |
18 "//base", | 20 "//base", |
19 "//cc", | 21 "//cc", |
20 "//cc/ipc:internal_interfaces", | 22 "//cc/ipc:internal_interfaces", |
21 "//cc/surfaces", | 23 "//cc/surfaces", |
22 "//cc/surfaces:surface_id", | 24 "//cc/surfaces:surface_id", |
(...skipping 17 matching lines...) Expand all Loading... |
40 ] | 42 ] |
41 | 43 |
42 if (use_ozone) { | 44 if (use_ozone) { |
43 sources += [ | 45 sources += [ |
44 "direct_output_surface_ozone.cc", | 46 "direct_output_surface_ozone.cc", |
45 "direct_output_surface_ozone.h", | 47 "direct_output_surface_ozone.h", |
46 ] | 48 ] |
47 deps += [ "//gpu/command_buffer/common" ] | 49 deps += [ "//gpu/command_buffer/common" ] |
48 } | 50 } |
49 } | 51 } |
OLD | NEW |