| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 '../gfx/gfx.gyp:gfx', | 76 '../gfx/gfx.gyp:gfx', |
| 77 '../gfx/gfx.gyp:gfx_geometry', | 77 '../gfx/gfx.gyp:gfx_geometry', |
| 78 'events_base', | 78 'events_base', |
| 79 ], | 79 ], |
| 80 'defines': [ | 80 'defines': [ |
| 81 'EVENTS_IMPLEMENTATION', | 81 'EVENTS_IMPLEMENTATION', |
| 82 ], | 82 ], |
| 83 'sources': [ | 83 'sources': [ |
| 84 'cocoa/cocoa_event_utils.h', | 84 'cocoa/cocoa_event_utils.h', |
| 85 'cocoa/cocoa_event_utils.mm', | 85 'cocoa/cocoa_event_utils.mm', |
| 86 'cocoa/events_mac.mm', |
| 86 'event.cc', | 87 'event.cc', |
| 87 'event.h', | 88 'event.h', |
| 88 'event_dispatcher.cc', | 89 'event_dispatcher.cc', |
| 89 'event_dispatcher.h', | 90 'event_dispatcher.h', |
| 90 'event_handler.cc', | 91 'event_handler.cc', |
| 91 'event_handler.h', | 92 'event_handler.h', |
| 92 'event_processor.cc', | 93 'event_processor.cc', |
| 93 'event_processor.h', | 94 'event_processor.h', |
| 94 'event_rewriter.h', | 95 'event_rewriter.h', |
| 95 'event_source.cc', | 96 'event_source.cc', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 'win/events_win.cc', | 148 'win/events_win.cc', |
| 148 'x/events_x.cc', | 149 'x/events_x.cc', |
| 149 'linux/text_edit_command_auralinux.cc', | 150 'linux/text_edit_command_auralinux.cc', |
| 150 'linux/text_edit_command_auralinux.h', | 151 'linux/text_edit_command_auralinux.h', |
| 151 'linux/text_edit_key_bindings_delegate_auralinux.cc', | 152 'linux/text_edit_key_bindings_delegate_auralinux.cc', |
| 152 'linux/text_edit_key_bindings_delegate_auralinux.h', | 153 'linux/text_edit_key_bindings_delegate_auralinux.h', |
| 153 ], | 154 ], |
| 154 'conditions': [ | 155 'conditions': [ |
| 155 # We explicitly enumerate the platforms we _do_ provide native cracking | 156 # We explicitly enumerate the platforms we _do_ provide native cracking |
| 156 # for here. | 157 # for here. |
| 157 ['OS=="win" or use_x11==1 or use_ozone==1', { | 158 ['OS=="win" or OS=="mac" or use_x11==1 or use_ozone==1', { |
| 158 'sources!': [ | 159 'sources!': [ |
| 159 'events_stub.cc', | 160 'events_stub.cc', |
| 160 ], | 161 ], |
| 161 }], | 162 }], |
| 162 ['chromeos==1', { | 163 ['chromeos==1', { |
| 163 'sources!': [ | 164 'sources!': [ |
| 164 'linux/text_edit_command_auralinux.cc', | 165 'linux/text_edit_command_auralinux.cc', |
| 165 'linux/text_edit_command_auralinux.h', | 166 'linux/text_edit_command_auralinux.h', |
| 166 'linux/text_edit_key_bindings_delegate_auralinux.cc', | 167 'linux/text_edit_key_bindings_delegate_auralinux.cc', |
| 167 'linux/text_edit_key_bindings_delegate_auralinux.h', | 168 'linux/text_edit_key_bindings_delegate_auralinux.h', |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 'variables': { | 359 'variables': { |
| 359 'test_suite_name': 'events_unittests', | 360 'test_suite_name': 'events_unittests', |
| 360 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un
ittests<(SHARED_LIB_SUFFIX)', | 361 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un
ittests<(SHARED_LIB_SUFFIX)', |
| 361 }, | 362 }, |
| 362 'includes': [ '../../build/apk_test.gypi' ], | 363 'includes': [ '../../build/apk_test.gypi' ], |
| 363 }, | 364 }, |
| 364 ], | 365 ], |
| 365 }], | 366 }], |
| 366 ], | 367 ], |
| 367 } | 368 } |
| OLD | NEW |