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

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

Issue 1458193002: Flip the CrOS GN release bots to use Ozone. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix target nesting 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
« no previous file with comments | « tools/mb/mb_config.pyl ('k') | ui/gl/BUILD.gn » ('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 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 sources += [ 399 sources += [
400 "ozone/chromeos/cursor_controller_unittest.cc", 400 "ozone/chromeos/cursor_controller_unittest.cc",
401 "ozone/evdev/event_converter_evdev_impl_unittest.cc", 401 "ozone/evdev/event_converter_evdev_impl_unittest.cc",
402 "ozone/evdev/event_converter_test_util.cc", 402 "ozone/evdev/event_converter_test_util.cc",
403 "ozone/evdev/event_device_info_unittest.cc", 403 "ozone/evdev/event_device_info_unittest.cc",
404 "ozone/evdev/event_device_test_util.cc", 404 "ozone/evdev/event_device_test_util.cc",
405 "ozone/evdev/input_injector_evdev_unittest.cc", 405 "ozone/evdev/input_injector_evdev_unittest.cc",
406 "ozone/evdev/tablet_event_converter_evdev_unittest.cc", 406 "ozone/evdev/tablet_event_converter_evdev_unittest.cc",
407 "ozone/evdev/touch_event_converter_evdev_unittest.cc", 407 "ozone/evdev/touch_event_converter_evdev_unittest.cc",
408 "ozone/evdev/touch_noise/touch_noise_finder_unittest.cc", 408 "ozone/evdev/touch_noise/touch_noise_finder_unittest.cc",
409 "ozone/layout/keyboard_layout_engine_unittest.cc",
410 "ozone/layout/xkb/xkb_keyboard_layout_engine_unittest.cc",
411 ] 409 ]
412 410
413 if (use_xkbcommon) { 411 if (use_xkbcommon) {
414 sources += [ "ozone/layout/xkb/xkb_keyboard_layout_engine_unittest.cc" ] 412 sources += [
413 "ozone/layout/keyboard_layout_engine_unittest.cc",
414 "ozone/layout/xkb/xkb_keyboard_layout_engine_unittest.cc",
415 ]
415 } 416 }
416 417
417 deps += [ 418 deps += [
418 "//ui/events/ozone:events_ozone", 419 "//ui/events/ozone:events_ozone",
419 "//ui/events/ozone:events_ozone_evdev", 420 "//ui/events/ozone:events_ozone_evdev",
420 "//ui/events/ozone:events_ozone_layout", 421 "//ui/events/ozone:events_ozone_layout",
421 ] 422 ]
422 } 423 }
423 424
424 if (use_aura) { 425 if (use_aura) {
425 sources += [ 426 sources += [
426 "gestures/gesture_provider_aura_unittest.cc", 427 "gestures/gesture_provider_aura_unittest.cc",
427 "gestures/motion_event_aura_unittest.cc", 428 "gestures/motion_event_aura_unittest.cc",
428 ] 429 ]
429 } 430 }
430 431
431 if (is_android) { 432 if (is_android) {
432 sources += [ "android/motion_event_android_unittest.cc" ] 433 sources += [ "android/motion_event_android_unittest.cc" ]
433 } 434 }
434 } 435 }
435 436
436 if (is_android) { 437 if (is_android) {
437 generate_jar_jni("motionevent_jni_headers") { 438 generate_jar_jni("motionevent_jni_headers") {
438 jni_package = "ui" 439 jni_package = "ui"
439 classes = [ "android/view/MotionEvent.class" ] 440 classes = [ "android/view/MotionEvent.class" ]
440 } 441 }
441 } 442 }
OLDNEW
« no previous file with comments | « tools/mb/mb_config.pyl ('k') | ui/gl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698