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

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

Issue 1411833006: Refactoring to make adding ink drop animations easier (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactor ink drop animations (simplify MenuButton) 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/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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 "event_target_iterator.h", 111 "event_target_iterator.h",
112 "event_targeter.h", 112 "event_targeter.h",
113 "event_utils.cc", 113 "event_utils.cc",
114 "event_utils.h", 114 "event_utils.h",
115 "events_export.h", 115 "events_export.h",
116 "events_stub.cc", 116 "events_stub.cc",
117 "gestures/gesture_recognizer_impl_mac.cc", 117 "gestures/gesture_recognizer_impl_mac.cc",
118 "gestures/gesture_types.h", 118 "gestures/gesture_types.h",
119 "null_event_targeter.cc", 119 "null_event_targeter.cc",
120 "null_event_targeter.h", 120 "null_event_targeter.h",
121 "scoped_target_handler.cc",
122 "scoped_target_handler.h",
121 "win/events_win.cc", 123 "win/events_win.cc",
122 "win/system_event_state_lookup.cc", 124 "win/system_event_state_lookup.cc",
123 "win/system_event_state_lookup.h", 125 "win/system_event_state_lookup.h",
124 ] 126 ]
125 127
126 defines = [ "EVENTS_IMPLEMENTATION" ] 128 defines = [ "EVENTS_IMPLEMENTATION" ]
127 129
128 public_deps = [ 130 public_deps = [
129 ":events_base", 131 ":events_base",
130 ] 132 ]
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 sources += [ "android/motion_event_android_unittest.cc" ] 434 sources += [ "android/motion_event_android_unittest.cc" ]
433 } 435 }
434 } 436 }
435 437
436 if (is_android) { 438 if (is_android) {
437 generate_jar_jni("motionevent_jni_headers") { 439 generate_jar_jni("motionevent_jni_headers") {
438 jni_package = "ui" 440 jni_package = "ui"
439 classes = [ "android/view/MotionEvent.class" ] 441 classes = [ "android/view/MotionEvent.class" ]
440 } 442 }
441 } 443 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698