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

Unified Diff: ui/events/BUILD.gn

Issue 1802333002: [iOS] Remove dependencies on //ipc from //ui/events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@jpeg
Patch Set: Fix "gn check" on iOS Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/events/latency_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/BUILD.gn
diff --git a/ui/events/BUILD.gn b/ui/events/BUILD.gn
index 2c037f77e10253924b621efc9307abd4d368c8aa..ecdf795dee818fd7f9c93eeb5e800c4739a311c1 100644
--- a/ui/events/BUILD.gn
+++ b/ui/events/BUILD.gn
@@ -61,7 +61,6 @@ component("events_base") {
deps = [
":dom_keycode_converter",
"//base/third_party/dynamic_annotations",
- "//ipc:param_traits",
"//skia",
]
@@ -95,6 +94,10 @@ component("events_base") {
"keycodes/xkb_keysym.h",
]
}
+
+ if (!is_ios) {
+ deps += [ "//ipc:param_traits" ]
+ }
}
component("events") {
@@ -358,7 +361,6 @@ test("events_unittests") {
"gesture_detection/touch_disposition_gesture_filter_unittest.cc",
"gesture_detection/velocity_tracker_unittest.cc",
"gestures/fling_curve_unittest.cc",
- "ipc/latency_info_param_traits_unittest.cc",
"keycodes/dom/keycode_converter_unittest.cc",
"keycodes/keyboard_code_conversion_unittest.cc",
"keycodes/platform_key_map_win_unittest.cc",
@@ -377,12 +379,10 @@ test("events_unittests") {
"//base",
"//base/test:run_all_unittests",
"//base/test:test_support",
- "//ipc:test_support",
"//skia",
"//testing/gmock",
"//testing/gtest",
"//ui/events/devices",
- "//ui/events/ipc:events_ipc",
"//ui/events/platform",
"//ui/gfx:test_support",
]
@@ -392,12 +392,15 @@ test("events_unittests") {
"blink/input_handler_proxy_unittest.cc",
"blink/input_scroll_elasticity_controller_unittest.cc",
"gestures/blink/web_gesture_curve_impl_unittest.cc",
+ "ipc/latency_info_param_traits_unittest.cc",
]
deps += [
"//cc",
+ "//ipc:test_support",
"//third_party/WebKit/public:blink_headers",
"//ui/events/blink",
"//ui/events/gestures/blink",
+ "//ui/events/ipc:events_ipc",
]
}
« no previous file with comments | « no previous file | ui/events/latency_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698