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

Side by Side Diff: content/renderer/mus/BUILD.gn

Issue 2648213002: mus: Use a barebone mus client-lib in chrome-renderer. (Closed)
Patch Set: . Created 3 years, 10 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 | content/renderer/mus/render_widget_mus_connection.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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 static_library("mus") { 5 static_library("mus") {
6 # Depend on this only via //content/renderer. 6 # Depend on this only via //content/renderer.
7 visibility = [ "//content/renderer/*" ] 7 visibility = [ "//content/renderer/*" ]
8 8
9 sources = [ 9 sources = [
10 "render_widget_mus_connection.cc",
11 "render_widget_mus_connection.h",
12 "render_widget_window_tree_client_factory.cc", 10 "render_widget_window_tree_client_factory.cc",
13 "render_widget_window_tree_client_factory.h", 11 "render_widget_window_tree_client_factory.h",
12 "renderer_window_tree_client.cc",
13 "renderer_window_tree_client.h",
14 ] 14 ]
15 15
16 configs += [ "//content:content_implementation" ] 16 configs += [ "//content:content_implementation" ]
17 17
18 deps = [ 18 deps = [
19 "//base", 19 "//base",
20 "//cc", 20 "//cc",
21 "//content/common", 21 "//content/common",
22 "//content/public/child:child_sources", 22 "//content/public/child:child_sources",
23 "//content/public/common:common_sources", 23 "//content/public/common:common_sources",
24 "//media/mojo/interfaces:remoting", 24 "//media/mojo/interfaces:remoting",
25 "//mojo/common", 25 "//mojo/common",
26 "//services/service_manager/public/cpp", 26 "//services/service_manager/public/cpp",
27 "//services/ui/public/cpp", 27 "//services/ui/public/cpp",
28 "//services/ui/public/interfaces", 28 "//services/ui/public/interfaces",
29 "//third_party/WebKit/public:blink", 29 "//third_party/WebKit/public:blink",
30 "//ui/events:events", 30 "//ui/events:events",
31 "//ui/events:events_base", 31 "//ui/events:events_base",
32 "//ui/events/blink", 32 "//ui/events/blink",
33 "//ui/gfx/geometry/mojo", 33 "//ui/gfx/geometry/mojo",
34 ] 34 ]
35 } 35 }
OLDNEW
« no previous file with comments | « no previous file | content/renderer/mus/render_widget_mus_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698