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

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

Issue 2540413003: Mus: DirectOutputSurface* => DisplayOutputSurface* (Closed)
Patch Set: Created 4 years 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 | « no previous file | services/ui/surfaces/direct_output_surface.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 "direct_output_surface.cc",
10 "direct_output_surface.h",
11 "display_compositor.cc", 9 "display_compositor.cc",
12 "display_compositor.h", 10 "display_compositor.h",
11 "display_output_surface.cc",
12 "display_output_surface.h",
13 "gpu_compositor_frame_sink.cc", 13 "gpu_compositor_frame_sink.cc",
14 "gpu_compositor_frame_sink.h", 14 "gpu_compositor_frame_sink.h",
15 ] 15 ]
16 16
17 deps = [ 17 deps = [
18 "//base", 18 "//base",
19 "//cc", 19 "//cc",
20 "//cc/ipc:internal_interfaces", 20 "//cc/ipc:internal_interfaces",
21 "//cc/surfaces", 21 "//cc/surfaces",
22 "//cc/surfaces:surface_id", 22 "//cc/surfaces:surface_id",
(...skipping 11 matching lines...) Expand all
34 "//services/ui/gpu/interfaces", 34 "//services/ui/gpu/interfaces",
35 "//services/ui/public/interfaces", 35 "//services/ui/public/interfaces",
36 "//ui/display/types", 36 "//ui/display/types",
37 "//ui/gfx", 37 "//ui/gfx",
38 "//ui/gfx/geometry/mojo", 38 "//ui/gfx/geometry/mojo",
39 "//ui/gl", 39 "//ui/gl",
40 ] 40 ]
41 41
42 if (use_ozone) { 42 if (use_ozone) {
43 sources += [ 43 sources += [
44 "direct_output_surface_ozone.cc", 44 "display_output_surface_ozone.cc",
45 "direct_output_surface_ozone.h", 45 "display_output_surface_ozone.h",
46 ] 46 ]
47 deps += [ "//gpu/command_buffer/common" ] 47 deps += [ "//gpu/command_buffer/common" ]
48 } 48 }
49 } 49 }
OLDNEW
« no previous file with comments | « no previous file | services/ui/surfaces/direct_output_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698