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

Side by Side Diff: ui/events/blink/BUILD.gn

Issue 2683043004: Remove ui/events/blink dependency on blink_minimal. (Closed)
Patch Set: fix win debug 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
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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 source_set("blink") { 7 source_set("blink") {
8 sources = [ 8 sources = [
9 "blink_event_util.cc", 9 "blink_event_util.cc",
10 "blink_event_util.h", 10 "blink_event_util.h",
(...skipping 12 matching lines...) Expand all
23 "input_scroll_elasticity_controller.h", 23 "input_scroll_elasticity_controller.h",
24 "synchronous_input_handler_proxy.h", 24 "synchronous_input_handler_proxy.h",
25 "web_input_event.cc", 25 "web_input_event.cc",
26 "web_input_event.h", 26 "web_input_event.h",
27 "web_input_event_traits.cc", 27 "web_input_event_traits.cc",
28 "web_input_event_traits.h", 28 "web_input_event_traits.h",
29 ] 29 ]
30 30
31 deps = [ 31 deps = [
32 "//cc:cc", 32 "//cc:cc",
33 "//third_party/WebKit/public:blink_minimal", 33 "//third_party/WebKit/public:blink_headers",
34 "//ui/events", 34 "//ui/events",
35 "//ui/events:dom_keycode_converter", 35 "//ui/events:dom_keycode_converter",
36 "//ui/events:events_base", 36 "//ui/events:events_base",
37 "//ui/events:gesture_detection", 37 "//ui/events:gesture_detection",
38 "//ui/gfx", 38 "//ui/gfx",
39 "//ui/gfx/geometry", 39 "//ui/gfx/geometry",
40 ] 40 ]
41 41
42 if (is_win) { 42 if (is_win) {
43 sources += [ 43 sources += [
44 "web_input_event_builders_win.cc", 44 "web_input_event_builders_win.cc",
45 "web_input_event_builders_win.h", 45 "web_input_event_builders_win.h",
46 ] 46 ]
47 deps += [ "//ui/display" ] 47 deps += [ "//ui/display" ]
48 } 48 }
49 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698