| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 'gestures/gesture_provider_aura.h', | 122 'gestures/gesture_provider_aura.h', |
| 123 'gestures/gesture_recognizer.h', | 123 'gestures/gesture_recognizer.h', |
| 124 'gestures/gesture_recognizer_impl.cc', | 124 'gestures/gesture_recognizer_impl.cc', |
| 125 'gestures/gesture_recognizer_impl.h', | 125 'gestures/gesture_recognizer_impl.h', |
| 126 'gestures/gesture_recognizer_impl_mac.cc', | 126 'gestures/gesture_recognizer_impl_mac.cc', |
| 127 'gestures/gesture_types.h', | 127 'gestures/gesture_types.h', |
| 128 'gestures/motion_event_aura.cc', | 128 'gestures/motion_event_aura.cc', |
| 129 'gestures/motion_event_aura.h', | 129 'gestures/motion_event_aura.h', |
| 130 'keycodes/platform_key_map_win.cc', | 130 'keycodes/platform_key_map_win.cc', |
| 131 'keycodes/platform_key_map_win.h', | 131 'keycodes/platform_key_map_win.h', |
| 132 'linux/text_edit_command_auralinux.cc', | |
| 133 'linux/text_edit_command_auralinux.h', | |
| 134 'linux/text_edit_key_bindings_delegate_auralinux.cc', | |
| 135 'linux/text_edit_key_bindings_delegate_auralinux.h', | |
| 136 'null_event_targeter.cc', | 132 'null_event_targeter.cc', |
| 137 'null_event_targeter.h', | 133 'null_event_targeter.h', |
| 138 'scoped_target_handler.cc', | 134 'scoped_target_handler.cc', |
| 139 'scoped_target_handler.h', | 135 'scoped_target_handler.h', |
| 140 'ozone/events_ozone.cc', | 136 'ozone/events_ozone.cc', |
| 141 'win/events_win.cc', | 137 'win/events_win.cc', |
| 142 'win/system_event_state_lookup.cc', | 138 'win/system_event_state_lookup.cc', |
| 143 'win/system_event_state_lookup.h', | 139 'win/system_event_state_lookup.h', |
| 144 'x/events_x.cc', | 140 'x/events_x.cc', |
| 145 ], | 141 ], |
| (...skipping 25 matching lines...) Expand all Loading... |
| 171 'events_default.cc', | 167 'events_default.cc', |
| 172 ], | 168 ], |
| 173 }], | 169 }], |
| 174 # We explicitly enumerate the platforms we _do_ provide native cracking | 170 # We explicitly enumerate the platforms we _do_ provide native cracking |
| 175 # for here. | 171 # for here. |
| 176 ['OS=="win" or OS=="mac" or use_x11==1 or use_ozone==1 or (OS=="android"
and use_aura==1)', { | 172 ['OS=="win" or OS=="mac" or use_x11==1 or use_ozone==1 or (OS=="android"
and use_aura==1)', { |
| 177 'sources!': [ | 173 'sources!': [ |
| 178 'events_stub.cc', | 174 'events_stub.cc', |
| 179 ], | 175 ], |
| 180 }], | 176 }], |
| 181 ['chromeos==1', { | |
| 182 'sources!': [ | |
| 183 'linux/text_edit_command_auralinux.cc', | |
| 184 'linux/text_edit_command_auralinux.h', | |
| 185 'linux/text_edit_key_bindings_delegate_auralinux.cc', | |
| 186 'linux/text_edit_key_bindings_delegate_auralinux.h', | |
| 187 ], | |
| 188 }], | |
| 189 ['use_ozone==1', { | 177 ['use_ozone==1', { |
| 190 'dependencies': [ | 178 'dependencies': [ |
| 191 'ozone/events_ozone.gyp:events_ozone_layout', | 179 'ozone/events_ozone.gyp:events_ozone_layout', |
| 192 ], | 180 ], |
| 193 }], | 181 }], |
| 194 ['OS=="android"', { | 182 ['OS=="android"', { |
| 195 'sources': [ | 183 'sources': [ |
| 196 'android/events_jni_registrar.cc', | 184 'android/events_jni_registrar.cc', |
| 197 'android/events_jni_registrar.h', | 185 'android/events_jni_registrar.h', |
| 198 'android/motion_event_android.cc', | 186 'android/motion_event_android.cc', |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 'variables': { | 387 'variables': { |
| 400 'jni_gen_package': 'ui', | 388 'jni_gen_package': 'ui', |
| 401 'input_java_class': 'android/view/KeyEvent.class', | 389 'input_java_class': 'android/view/KeyEvent.class', |
| 402 }, | 390 }, |
| 403 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 391 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
| 404 }, | 392 }, |
| 405 ], | 393 ], |
| 406 }], | 394 }], |
| 407 ], | 395 ], |
| 408 } | 396 } |
| OLD | NEW |