| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 'x/events_x.cc', | 83 'x/events_x.cc', |
| 84 'x/events_x_utils.cc', | 84 'x/events_x_utils.cc', |
| 85 'x/events_x_utils.h', | 85 'x/events_x_utils.h', |
| 86 'x/touch_factory_x11.cc', | 86 'x/touch_factory_x11.cc', |
| 87 'x/touch_factory_x11.h', | 87 'x/touch_factory_x11.h', |
| 88 ], | 88 ], |
| 89 'conditions': [ | 89 'conditions': [ |
| 90 ['use_aura==0 and toolkit_views==0', { | 90 ['use_aura==0 and toolkit_views==0', { |
| 91 'sources/': [ | 91 'sources/': [ |
| 92 ['exclude', '^gestures/*'], | 92 ['exclude', '^gestures/*'], |
| 93 ], | 93 ] |
| 94 }], |
| 95 ['toolkit_views==0', { |
| 94 'sources!': [ | 96 'sources!': [ |
| 95 'event.cc', | 97 'event.cc', |
| 96 'event.h', | 98 'event.h', |
| 97 'event_dispatcher.cc', | 99 'event_dispatcher.cc', |
| 98 'event_dispatcher.h', | 100 'event_dispatcher.h', |
| 99 'event_handler.cc', | 101 'event_handler.cc', |
| 100 'event_handler.h', | 102 'event_handler.h', |
| 101 'event_target.cc', | 103 'event_target.cc', |
| 102 'event_target.h', | 104 'event_target.h', |
| 103 ], | 105 ], |
| 104 }], | 106 }], |
| 105 ['OS=="android"', { | 107 ['OS=="android"', { |
| 106 'sources!': [ | 108 'sources!': [ |
| 107 'event_utils.cc', | 109 'event_utils.cc', |
| 108 'keycodes/keyboard_code_conversion.cc', | 110 'keycodes/keyboard_code_conversion.cc', |
| 109 ], | 111 ], |
| 110 }], | 112 }], |
| 111 ['use_x11==1', { | 113 ['use_x11==1', { |
| 112 'dependencies': [ | 114 'dependencies': [ |
| 113 '<(DEPTH)/build/linux/system.gyp:x11', | 115 '<(DEPTH)/build/linux/system.gyp:x11', |
| 114 ], | 116 ], |
| 115 }], | 117 }], |
| 116 ], | 118 ], |
| 117 } | 119 } |
| 118 ], | 120 ], |
| 119 } | 121 } |
| OLD | NEW |