| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 'events_stub.cc', | 174 'events_stub.cc', |
| 175 ], | 175 ], |
| 176 }], | 176 }], |
| 177 ['use_ozone==1', { | 177 ['use_ozone==1', { |
| 178 'dependencies': [ | 178 'dependencies': [ |
| 179 'ozone/events_ozone.gyp:events_ozone_layout', | 179 'ozone/events_ozone.gyp:events_ozone_layout', |
| 180 ], | 180 ], |
| 181 }], | 181 }], |
| 182 ['OS=="android"', { | 182 ['OS=="android"', { |
| 183 'sources': [ | 183 'sources': [ |
| 184 'android/events_jni_registrar.cc', | |
| 185 'android/events_jni_registrar.h', | |
| 186 'android/motion_event_android.cc', | 184 'android/motion_event_android.cc', |
| 187 'android/motion_event_android.h', | 185 'android/motion_event_android.h', |
| 188 'android/key_event_utils.cc', | 186 'android/key_event_utils.cc', |
| 189 'android/key_event_utils.h', | 187 'android/key_event_utils.h', |
| 190 ], | 188 ], |
| 191 'dependencies': [ | 189 'dependencies': [ |
| 192 'motionevent_jni_headers', | 190 'motionevent_jni_headers', |
| 193 'keyevent_jni_headers', | 191 'keyevent_jni_headers', |
| 194 ], | 192 ], |
| 195 }], | 193 }], |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 'variables': { | 385 'variables': { |
| 388 'jni_gen_package': 'ui', | 386 'jni_gen_package': 'ui', |
| 389 'input_java_class': 'android/view/KeyEvent.class', | 387 'input_java_class': 'android/view/KeyEvent.class', |
| 390 }, | 388 }, |
| 391 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 389 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
| 392 }, | 390 }, |
| 393 ], | 391 ], |
| 394 }], | 392 }], |
| 395 ], | 393 ], |
| 396 } | 394 } |
| OLD | NEW |