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

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

Issue 1476643002: mustash: Enable connections to mus from the Chrome renderer [take 2] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't create a RenderWidgetWindowTreeeClientFactory in tests Created 5 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/renderer/renderer.gni") 7 import("//content/renderer/renderer.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("renderer") { 10 source_set("renderer") {
11 # Only the public target should depend on this. All other targets (even 11 # Only the public target should depend on this. All other targets (even
12 # internal content ones) should depend on the public one. 12 # internal content ones) should depend on the public one.
13 visibility = [ "//content/public/renderer:renderer_sources" ] 13 visibility = [ "//content/public/renderer:renderer_sources" ]
14 14
15 sources = rebase_path(content_renderer_gypi_values.private_renderer_sources, 15 sources = rebase_path(content_renderer_gypi_values.private_renderer_sources,
16 ".", 16 ".",
17 "//content") 17 "//content")
18 18
19 configs += [ 19 configs += [
20 "//content:content_implementation", 20 "//content:content_implementation",
21 "//build/config/compiler:no_size_t_to_int_warning", 21 "//build/config/compiler:no_size_t_to_int_warning",
22 "//content/public/common:mojo_shell_client",
22 ] 23 ]
23 24
24 deps = [ 25 deps = [
25 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but 26 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but
26 # those don't cross component boundaries. 27 # those don't cross component boundaries.
27 "//base/allocator", 28 "//base/allocator",
28 "//cc", 29 "//cc",
29 "//cc/blink", 30 "//cc/blink",
30 "//cc/proto", 31 "//cc/proto",
31 "//components/scheduler:scheduler", 32 "//components/scheduler:scheduler",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "//ui/accessibility", 67 "//ui/accessibility",
67 "//ui/base", 68 "//ui/base",
68 "//ui/events:dom_keycode_converter", 69 "//ui/events:dom_keycode_converter",
69 "//ui/events:events_base", 70 "//ui/events:events_base",
70 "//ui/gl", 71 "//ui/gl",
71 "//ui/native_theme", 72 "//ui/native_theme",
72 "//ui/surface", 73 "//ui/surface",
73 "//v8", 74 "//v8",
74 ] 75 ]
75 76
77 if (use_aura) {
78 sources += [
79 "render_widget_mus_connection.cc",
80 "render_widget_mus_connection.h",
81 "render_widget_window_tree_client_factory.cc",
82 "render_widget_window_tree_client_factory.h",
83 ]
84 }
85
76 if (is_mac) { 86 if (is_mac) {
77 sources -= [ 87 sources -= [
78 "webscrollbarbehavior_impl_gtkoraura.cc", 88 "webscrollbarbehavior_impl_gtkoraura.cc",
79 "webscrollbarbehavior_impl_gtkoraura.h", 89 "webscrollbarbehavior_impl_gtkoraura.h",
80 ] 90 ]
81 sources += [ 91 sources += [
82 "external_popup_menu.cc", 92 "external_popup_menu.cc",
83 "external_popup_menu.h", 93 "external_popup_menu.h",
84 ] 94 ]
85 } 95 }
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 233
224 if (enable_webvr) { 234 if (enable_webvr) {
225 sources += [ 235 sources += [
226 "vr/vr_dispatcher.cc", 236 "vr/vr_dispatcher.cc",
227 "vr/vr_dispatcher.h", 237 "vr/vr_dispatcher.h",
228 "vr/vr_type_converters.cc", 238 "vr/vr_type_converters.cc",
229 "vr/vr_type_converters.h", 239 "vr/vr_type_converters.h",
230 ] 240 ]
231 } 241 }
232 } 242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698