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

Side by Side Diff: components/mus/public/cpp/BUILD.gn

Issue 1976703003: Impl mus::mojom::GpuService to enable using Chrome IPC version gpu CmdBuf in mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 4 years, 6 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
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 source_set("cpp") { 5 source_set("cpp") {
6 sources = [ 6 sources = [
7 "context_provider.h", 7 "context_provider.h",
8 "gles2_context.h", 8 "gles2_context.h",
9 "input_event_handler.h", 9 "input_event_handler.h",
10 "lib/command_buffer_client_impl.cc", 10 "lib/command_buffer_client_impl.cc",
11 "lib/command_buffer_client_impl.h", 11 "lib/command_buffer_client_impl.h",
12 "lib/context_provider.cc", 12 "lib/context_provider.cc",
13 "lib/gles2_context.cc", 13 "lib/gles2_context.cc",
14 "lib/gpu_memory_buffer_manager_mus.cc",
15 "lib/gpu_memory_buffer_manager_mus.h",
16 "lib/gpu_service.cc",
17 "lib/gpu_service.h",
14 "lib/in_flight_change.cc", 18 "lib/in_flight_change.cc",
15 "lib/in_flight_change.h", 19 "lib/in_flight_change.h",
16 "lib/output_surface.cc", 20 "lib/output_surface.cc",
17 "lib/property_type_converters.cc", 21 "lib/property_type_converters.cc",
18 "lib/scoped_window_ptr.cc", 22 "lib/scoped_window_ptr.cc",
19 "lib/window.cc", 23 "lib/window.cc",
20 "lib/window_observer.cc", 24 "lib/window_observer.cc",
21 "lib/window_private.cc", 25 "lib/window_private.cc",
22 "lib/window_private.h", 26 "lib/window_private.h",
23 "lib/window_surface.cc", 27 "lib/window_surface.cc",
(...skipping 22 matching lines...) Expand all
46 ] 50 ]
47 51
48 deps = [ 52 deps = [
49 "//base", 53 "//base",
50 "//cc", 54 "//cc",
51 "//cc/surfaces", 55 "//cc/surfaces",
52 "//cc/surfaces:surface_id", 56 "//cc/surfaces:surface_id",
53 "//components/mus/common:mus_common", 57 "//components/mus/common:mus_common",
54 "//components/mus/gles2:lib", 58 "//components/mus/gles2:lib",
55 "//components/mus/public/cpp/surfaces", 59 "//components/mus/public/cpp/surfaces",
60 "//components/mus/public/interfaces",
56 "//gpu/command_buffer/client", 61 "//gpu/command_buffer/client",
57 "//gpu/command_buffer/client:gles2_cmd_helper", 62 "//gpu/command_buffer/client:gles2_cmd_helper",
58 "//gpu/command_buffer/client:gles2_implementation", 63 "//gpu/command_buffer/client:gles2_implementation",
59 "//gpu/command_buffer/client:gles2_interface", 64 "//gpu/command_buffer/client:gles2_interface",
60 "//gpu/command_buffer/common", 65 "//gpu/command_buffer/common",
66 "//mojo/public/c/system:for_component",
61 "//mojo/public/cpp/bindings:bindings", 67 "//mojo/public/cpp/bindings:bindings",
62 "//mojo/public/cpp/system", 68 "//mojo/public/cpp/system",
63 "//services/shell/public/cpp", 69 "//services/shell/public/cpp",
64 "//services/shell/public/interfaces", 70 "//services/shell/public/interfaces",
65 "//ui/display", 71 "//ui/display",
66 "//ui/events", 72 "//ui/events",
67 "//ui/events/mojo", 73 "//ui/events/mojo",
68 "//ui/gfx/geometry", 74 "//ui/gfx/geometry",
69 "//ui/gfx/geometry/mojo", 75 "//ui/gfx/geometry/mojo",
70 ] 76 ]
71 77
72 data_deps = [ 78 data_deps = [
73 "//components/mus", 79 "//components/mus",
74 ] 80 ]
75 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698