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 "display_compositor.cc", | 9 "display_compositor.cc", |
10 "display_compositor.h", | 10 "display_compositor.h", |
11 "display_output_surface.cc", | 11 "display_output_surface.cc", |
12 "display_output_surface.h", | 12 "display_output_surface.h", |
13 ] | 13 ] |
14 | 14 |
15 deps = [ | 15 deps = [ |
16 "//base", | 16 "//base", |
17 "//cc", | 17 "//cc", |
18 "//cc/ipc:interfaces", | 18 "//cc/ipc:interfaces", |
19 "//cc/surfaces", | 19 "//cc/surfaces", |
20 "//components/display_compositor", | 20 "//components/display_compositor", |
21 "//gpu/command_buffer/client", | 21 "//gpu/command_buffer/client", |
22 "//gpu/command_buffer/client:gles2_interface", | 22 "//gpu/command_buffer/client:gles2_interface", |
23 "//gpu/ipc:command_buffer", | 23 "//gpu/ipc:command_buffer", |
24 "//gpu/ipc:gl_in_process_context", | |
mfomitchev
2017/03/23 15:25:17
Is this ok?
Fady Samuel
2017/03/23 17:24:38
Probably OK.
| |
25 "//components/latency_tracker", | |
24 "//ui/display/types", | 26 "//ui/display/types", |
25 "//ui/gfx", | 27 "//ui/gfx", |
26 "//ui/gfx/geometry/mojo", | 28 "//ui/gfx/geometry/mojo", |
27 ] | 29 ] |
28 | 30 |
29 if (use_ozone) { | 31 if (use_ozone) { |
30 sources += [ | 32 sources += [ |
31 "display_output_surface_ozone.cc", | 33 "display_output_surface_ozone.cc", |
32 "display_output_surface_ozone.h", | 34 "display_output_surface_ozone.h", |
33 ] | 35 ] |
34 deps += [ | 36 deps += [ |
35 "//gpu/command_buffer/common", | 37 "//gpu/command_buffer/common", |
36 "//ui/gl", | 38 "//ui/gl", |
37 ] | 39 ] |
38 } | 40 } |
39 } | 41 } |
OLD | NEW |