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

Side by Side Diff: components/mus/surfaces/BUILD.gn

Issue 1881793002: SurfacelessSurfaces for Mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build Created 4 years, 8 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 | « no previous file | components/mus/surfaces/buffer_queue.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")
6
5 source_set("surfaces") { 7 source_set("surfaces") {
6 sources = [ 8 sources = [
7 "direct_output_surface.cc", 9 "direct_output_surface.cc",
8 "direct_output_surface.h", 10 "direct_output_surface.h",
9 "surfaces_context_provider.cc", 11 "surfaces_context_provider.cc",
10 "surfaces_context_provider.h", 12 "surfaces_context_provider.h",
11 "surfaces_context_provider_delegate.h", 13 "surfaces_context_provider_delegate.h",
12 "surfaces_state.cc", 14 "surfaces_state.cc",
13 "surfaces_state.h", 15 "surfaces_state.h",
14 "top_level_display_client.cc", 16 "top_level_display_client.cc",
(...skipping 12 matching lines...) Expand all
27 "//gpu/command_buffer/client:gles2_implementation", 29 "//gpu/command_buffer/client:gles2_implementation",
28 "//gpu/command_buffer/client:gles2_interface", 30 "//gpu/command_buffer/client:gles2_interface",
29 "//mojo/converters/geometry", 31 "//mojo/converters/geometry",
30 "//mojo/converters/surfaces", 32 "//mojo/converters/surfaces",
31 "//mojo/services/tracing/public/cpp", 33 "//mojo/services/tracing/public/cpp",
32 "//mojo/shell/public/cpp", 34 "//mojo/shell/public/cpp",
33 "//ui/gfx", 35 "//ui/gfx",
34 "//ui/gl", 36 "//ui/gl",
35 "//ui/mojo/geometry:interfaces", 37 "//ui/mojo/geometry:interfaces",
36 ] 38 ]
39
40 if (use_ozone) {
41 sources += [
42 "buffer_queue.cc",
43 "buffer_queue.h",
44 "direct_output_surface_ozone.cc",
45 "direct_output_surface_ozone.h",
46 ]
47 deps += [ "//gpu/command_buffer/common" ]
48 }
37 } 49 }
OLDNEW
« no previous file with comments | « no previous file | components/mus/surfaces/buffer_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698