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

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

Issue 2449173003: Mus: Introduce DisplayCompositorClient mojo interface (Closed)
Patch Set: Added more comments Created 4 years, 1 month 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
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", 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_client.h",
14 "display_compositor_frame_sink.cc", 13 "display_compositor_frame_sink.cc",
15 "display_compositor_frame_sink.h", 14 "display_compositor_frame_sink.h",
16 "surfaces_context_provider.cc", 15 "surfaces_context_provider.cc",
17 "surfaces_context_provider.h", 16 "surfaces_context_provider.h",
18 "surfaces_context_provider_delegate.h", 17 "surfaces_context_provider_delegate.h",
19 ] 18 ]
20 19
21 deps = [ 20 deps = [
22 "//base", 21 "//base",
23 "//cc", 22 "//cc",
(...skipping 16 matching lines...) Expand all
40 ] 39 ]
41 40
42 if (use_ozone) { 41 if (use_ozone) {
43 sources += [ 42 sources += [
44 "direct_output_surface_ozone.cc", 43 "direct_output_surface_ozone.cc",
45 "direct_output_surface_ozone.h", 44 "direct_output_surface_ozone.h",
46 ] 45 ]
47 deps += [ "//gpu/command_buffer/common" ] 46 deps += [ "//gpu/command_buffer/common" ]
48 } 47 }
49 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698