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

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

Issue 1484013003: mustash: Implement basic input event routing in renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: The right diff 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") {
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 "//ui/events:events_base", 70 "//ui/events:events_base",
71 "//ui/events/blink", 71 "//ui/events/blink",
72 "//ui/gl", 72 "//ui/gl",
73 "//ui/native_theme", 73 "//ui/native_theme",
74 "//ui/surface", 74 "//ui/surface",
75 "//v8", 75 "//v8",
76 ] 76 ]
77 77
78 if (use_aura) { 78 if (use_aura) {
79 sources += [ 79 sources += [
80 "blink_input_events_type_converters.cc",
81 "blink_input_events_type_converters.h",
82 "compositor_mus_connection.cc",
83 "compositor_mus_connection.h",
80 "render_widget_mus_connection.cc", 84 "render_widget_mus_connection.cc",
81 "render_widget_mus_connection.h", 85 "render_widget_mus_connection.h",
82 "render_widget_window_tree_client_factory.cc", 86 "render_widget_window_tree_client_factory.cc",
83 "render_widget_window_tree_client_factory.h", 87 "render_widget_window_tree_client_factory.h",
84 ] 88 ]
85 } 89 }
86 90
87 if (is_mac) { 91 if (is_mac) {
88 sources -= [ 92 sources -= [
89 "webscrollbarbehavior_impl_gtkoraura.cc", 93 "webscrollbarbehavior_impl_gtkoraura.cc",
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 238
235 if (enable_webvr) { 239 if (enable_webvr) {
236 sources += [ 240 sources += [
237 "vr/vr_dispatcher.cc", 241 "vr/vr_dispatcher.cc",
238 "vr/vr_dispatcher.h", 242 "vr/vr_dispatcher.h",
239 "vr/vr_type_converters.cc", 243 "vr/vr_type_converters.cc",
240 "vr/vr_type_converters.h", 244 "vr/vr_type_converters.h",
241 ] 245 ]
242 } 246 }
243 } 247 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698