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

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

Issue 1415953004: Move content/renderer input handling for web input events to ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: OWNERS edit. Created 5 years, 1 month 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "//third_party/mojo/src/mojo/edk/js", 58 "//third_party/mojo/src/mojo/edk/js",
59 "//third_party/mojo/src/mojo/public/cpp/bindings", 59 "//third_party/mojo/src/mojo/public/cpp/bindings",
60 "//third_party/mojo/src/mojo/public/js", 60 "//third_party/mojo/src/mojo/public/js",
61 "//third_party/npapi", 61 "//third_party/npapi",
62 "//third_party/WebKit/public:blink", 62 "//third_party/WebKit/public:blink",
63 "//third_party/widevine/cdm:version_h", 63 "//third_party/widevine/cdm:version_h",
64 "//ui/accessibility", 64 "//ui/accessibility",
65 "//ui/base", 65 "//ui/base",
66 "//ui/events:events_base", 66 "//ui/events:events_base",
67 "//ui/events:dom_keycode_converter", 67 "//ui/events:dom_keycode_converter",
68 "//ui/events/blink",
68 "//ui/gl", 69 "//ui/gl",
69 "//ui/native_theme", 70 "//ui/native_theme",
70 "//ui/surface", 71 "//ui/surface",
71 "//v8", 72 "//v8",
72 ] 73 ]
73 74
74 if (is_mac) { 75 if (is_mac) {
75 sources -= [ 76 sources -= [
76 "webscrollbarbehavior_impl_gtkoraura.cc", 77 "webscrollbarbehavior_impl_gtkoraura.cc",
77 "webscrollbarbehavior_impl_gtkoraura.h", 78 "webscrollbarbehavior_impl_gtkoraura.h",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 221
221 if (enable_webvr) { 222 if (enable_webvr) {
222 sources += [ 223 sources += [
223 "vr/vr_dispatcher.cc", 224 "vr/vr_dispatcher.cc",
224 "vr/vr_dispatcher.h", 225 "vr/vr_dispatcher.h",
225 "vr/vr_type_converters.cc", 226 "vr/vr_type_converters.cc",
226 "vr/vr_type_converters.h", 227 "vr/vr_type_converters.h",
227 ] 228 ]
228 } 229 }
229 } 230 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698