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

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: Fixed dependency for unit test 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "//ui/events:events_base", 71 "//ui/events:events_base",
72 "//ui/events/blink", 72 "//ui/events/blink",
73 "//ui/gl", 73 "//ui/gl",
74 "//ui/native_theme", 74 "//ui/native_theme",
75 "//ui/surface", 75 "//ui/surface",
76 "//v8", 76 "//v8",
77 ] 77 ]
78 78
79 if (use_aura) { 79 if (use_aura) {
80 sources += [ 80 sources += [
81 "compositor_mus_connection.cc",
82 "compositor_mus_connection.h",
81 "render_widget_mus_connection.cc", 83 "render_widget_mus_connection.cc",
82 "render_widget_mus_connection.h", 84 "render_widget_mus_connection.h",
83 "render_widget_window_tree_client_factory.cc", 85 "render_widget_window_tree_client_factory.cc",
84 "render_widget_window_tree_client_factory.h", 86 "render_widget_window_tree_client_factory.h",
85 ] 87 ]
88
89 deps += [ "//mojo/converters/blink" ]
86 } 90 }
87 91
88 if (is_mac) { 92 if (is_mac) {
89 sources -= [ 93 sources -= [
90 "webscrollbarbehavior_impl_gtkoraura.cc", 94 "webscrollbarbehavior_impl_gtkoraura.cc",
91 "webscrollbarbehavior_impl_gtkoraura.h", 95 "webscrollbarbehavior_impl_gtkoraura.h",
92 ] 96 ]
93 sources += [ 97 sources += [
94 "external_popup_menu.cc", 98 "external_popup_menu.cc",
95 "external_popup_menu.h", 99 "external_popup_menu.h",
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 "vr/vr_dispatcher.h", 235 "vr/vr_dispatcher.h",
232 "vr/vr_type_converters.cc", 236 "vr/vr_type_converters.cc",
233 "vr/vr_type_converters.h", 237 "vr/vr_type_converters.h",
234 ] 238 ]
235 } 239 }
236 240
237 if (use_seccomp_bpf) { 241 if (use_seccomp_bpf) {
238 defines += [ "USE_SECCOMP_BPF" ] 242 defines += [ "USE_SECCOMP_BPF" ]
239 } 243 }
240 } 244 }
OLDNEW
« no previous file with comments | « components/html_viewer/input_events_unittest.cc ('k') | content/renderer/compositor_mus_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698