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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 }], | 123 }], |
124 ['use_x11==1', { | 124 ['use_x11==1', { |
125 'dependencies': [ | 125 'dependencies': [ |
126 '<(DEPTH)/build/linux/system.gyp:x11', | 126 '<(DEPTH)/build/linux/system.gyp:x11', |
127 ], | 127 ], |
128 }], | 128 }], |
129 ['use_ozone_evdev==1', { | 129 ['use_ozone_evdev==1', { |
130 'defines': ['USE_OZONE_EVDEV=1'], | 130 'defines': ['USE_OZONE_EVDEV=1'], |
131 }], | 131 }], |
132 ], | 132 ], |
133 } | 133 }, |
| 134 { |
| 135 'target_name': 'events_unittests', |
| 136 'type': '<(gtest_target_type)', |
| 137 'dependencies': [ |
| 138 '<(DEPTH)/base/base.gyp:base', |
| 139 '<(DEPTH)/base/base.gyp:test_support_base', |
| 140 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 141 '../gfx/gfx.gyp:gfx', |
| 142 'events_base', |
| 143 'events', |
| 144 ], |
| 145 'sources': [ |
| 146 'event_dispatcher_unittest.cc', |
| 147 'event_unittest.cc', |
| 148 'latency_info_unittest.cc', |
| 149 'test/events_unittests.cc', |
| 150 'test/test_suite.cc', |
| 151 'test/test_suite.h', |
| 152 'ozone/evdev/key_event_converter_unittest.cc', |
| 153 'ozone/evdev/touch_event_converter_unittest.cc', |
| 154 ], |
| 155 }, |
134 ], | 156 ], |
135 } | 157 } |
OLD | NEW |