Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: services/ui/surfaces/BUILD.gn

Issue 2768563002: Move DisplayCompositor code to new component. (Closed)
Patch Set: Rebase. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « services/ui/gpu/gpu_main.cc ('k') | services/ui/surfaces/display_compositor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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",
10 "display_compositor.h",
11 "display_output_surface.cc", 9 "display_output_surface.cc",
12 "display_output_surface.h", 10 "display_output_surface.h",
13 ] 11 ]
14 12
15 deps = [ 13 deps = [
16 "//base", 14 "//base",
17 "//cc", 15 "//cc",
18 "//cc/ipc:interfaces", 16 "//cc/ipc:interfaces",
19 "//cc/surfaces", 17 "//cc/surfaces",
20 "//components/display_compositor", 18 "//components/display_compositor",
21 "//gpu/command_buffer/client", 19 "//gpu/command_buffer/client",
22 "//gpu/command_buffer/client:gles2_interface", 20 "//gpu/command_buffer/client:gles2_interface",
23 "//gpu/ipc:command_buffer", 21 "//gpu/ipc:command_buffer",
24 "//ui/display/types", 22 "//ui/display/types",
25 "//ui/gfx", 23 "//ui/gfx",
26 "//ui/gfx/geometry/mojo", 24 "//ui/gfx/geometry/mojo",
27 ] 25 ]
28 26
29 if (use_ozone) { 27 if (use_ozone) {
30 sources += [ 28 sources += [
31 "display_output_surface_ozone.cc", 29 "display_output_surface_ozone.cc",
32 "display_output_surface_ozone.h", 30 "display_output_surface_ozone.h",
33 ] 31 ]
34 deps += [ 32 deps += [
35 "//gpu/command_buffer/common", 33 "//gpu/command_buffer/common",
36 "//ui/gl", 34 "//ui/gl",
37 ] 35 ]
38 } 36 }
39 } 37 }
OLDNEW
« no previous file with comments | « services/ui/gpu/gpu_main.cc ('k') | services/ui/surfaces/display_compositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698