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

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

Issue 854713003: More old files deletion. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix tryjobs? Created 5 years, 11 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
« no previous file with comments | « ui/base/x/x11_util.cc ('k') | ui/events/event_utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 static_library("dom4_keycode_converter") { 7 static_library("dom4_keycode_converter") {
8 sources = [ 8 sources = [
9 "keycodes/dom4/keycode_converter.cc", 9 "keycodes/dom4/keycode_converter.cc",
10 "keycodes/dom4/keycode_converter.h", 10 "keycodes/dom4/keycode_converter.h",
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 "//ui/gfx/geometry", 198 "//ui/gfx/geometry",
199 ] 199 ]
200 200
201 defines = [ "GESTURE_DETECTION_IMPLEMENTATION" ] 201 defines = [ "GESTURE_DETECTION_IMPLEMENTATION" ]
202 } 202 }
203 203
204 source_set("test_support") { 204 source_set("test_support") {
205 sources = [ 205 sources = [
206 "test/cocoa_test_event_utils.h", 206 "test/cocoa_test_event_utils.h",
207 "test/cocoa_test_event_utils.mm", 207 "test/cocoa_test_event_utils.mm",
208 "test/event_generator.cc",
209 "test/event_generator.h",
210 "test/events_test_utils.cc", 208 "test/events_test_utils.cc",
211 "test/events_test_utils.h", 209 "test/events_test_utils.h",
212 "test/mock_motion_event.cc", 210 "test/mock_motion_event.cc",
213 "test/mock_motion_event.h", 211 "test/mock_motion_event.h",
214 "test/platform_event_waiter.cc", 212 "test/platform_event_waiter.cc",
215 "test/platform_event_waiter.h", 213 "test/platform_event_waiter.h",
216 "test/test_event_handler.cc", 214 "test/test_event_handler.cc",
217 "test/test_event_handler.h", 215 "test/test_event_handler.h",
218 "test/test_event_processor.cc", 216 "test/test_event_processor.cc",
219 "test/test_event_processor.h", 217 "test/test_event_processor.h",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 "event_rewriter_unittest.cc", 256 "event_rewriter_unittest.cc",
259 "event_unittest.cc", 257 "event_unittest.cc",
260 "gesture_detection/bitset_32_unittest.cc", 258 "gesture_detection/bitset_32_unittest.cc",
261 "gesture_detection/gesture_event_data_packet_unittest.cc", 259 "gesture_detection/gesture_event_data_packet_unittest.cc",
262 "gesture_detection/gesture_provider_unittest.cc", 260 "gesture_detection/gesture_provider_unittest.cc",
263 "gesture_detection/motion_event_buffer_unittest.cc", 261 "gesture_detection/motion_event_buffer_unittest.cc",
264 "gesture_detection/motion_event_generic_unittest.cc", 262 "gesture_detection/motion_event_generic_unittest.cc",
265 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", 263 "gesture_detection/touch_disposition_gesture_filter_unittest.cc",
266 "gesture_detection/velocity_tracker_unittest.cc", 264 "gesture_detection/velocity_tracker_unittest.cc",
267 "gestures/fling_curve_unittest.cc", 265 "gestures/fling_curve_unittest.cc",
266 "gestures/gesture_provider_impl_unittest.cc",
268 "keycodes/dom4/keycode_converter_unittest.cc", 267 "keycodes/dom4/keycode_converter_unittest.cc",
269 "latency_info_unittest.cc", 268 "latency_info_unittest.cc",
270 "platform/platform_event_source_unittest.cc", 269 "platform/platform_event_source_unittest.cc",
271 "x/events_x_unittest.cc", 270 "x/events_x_unittest.cc",
272 ] 271 ]
273 272
274 deps = [ 273 deps = [
275 ":dom4_keycode_converter", 274 ":dom4_keycode_converter",
276 ":events", 275 ":events",
277 ":events_base", 276 ":events_base",
278 ":gesture_detection", 277 ":gesture_detection",
279 ":test_support", 278 ":test_support",
280 "//base", 279 "//base",
281 "//base/test:run_all_unittests", 280 "//base/test:run_all_unittests",
282 "//skia", 281 "//skia",
283 "//testing/gtest", 282 "//testing/gtest",
284 "//ui/events/platform", 283 "//ui/events/platform",
285 "//ui/gfx:test_support", 284 "//ui/gfx:test_support",
286 ] 285 ]
287 286
288 if (use_x11) { 287 if (use_x11) {
289 configs += [ "//build/config/linux:x11" ] 288 configs += [ "//build/config/linux:x11" ]
290 deps += [ "//ui/gfx/x" ] 289 deps += [ "//ui/gfx/x" ]
291 } else { 290 } else {
292 sources -= [ "x/events_x_unittest.cc" ] 291 sources -= [ "x/events_x_unittest.cc" ]
293 } 292 }
294
295 if (use_aura) {
296 sources += [ "gestures/gesture_provider_impl_unittest.cc" ]
297 }
298 } 293 }
OLDNEW
« no previous file with comments | « ui/base/x/x11_util.cc ('k') | ui/events/event_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698