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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 ], | 145 ], |
146 }, | 146 }, |
147 { | 147 { |
148 'target_name': 'events_unittests', | 148 'target_name': 'events_unittests', |
149 'type': '<(gtest_target_type)', | 149 'type': '<(gtest_target_type)', |
150 'dependencies': [ | 150 'dependencies': [ |
151 '<(DEPTH)/base/base.gyp:base', | 151 '<(DEPTH)/base/base.gyp:base', |
152 '<(DEPTH)/base/base.gyp:test_support_base', | 152 '<(DEPTH)/base/base.gyp:test_support_base', |
153 '<(DEPTH)/testing/gtest.gyp:gtest', | 153 '<(DEPTH)/testing/gtest.gyp:gtest', |
154 '../gfx/gfx.gyp:gfx', | 154 '../gfx/gfx.gyp:gfx', |
| 155 'dom4_keycode_converter', |
155 'events_base', | 156 'events_base', |
156 'events', | 157 'events', |
157 ], | 158 ], |
158 'sources': [ | 159 'sources': [ |
159 'event_dispatcher_unittest.cc', | 160 'event_dispatcher_unittest.cc', |
160 'event_unittest.cc', | 161 'event_unittest.cc', |
| 162 'gestures/velocity_calculator_unittest.cc', |
| 163 'keycodes/dom4/keycode_converter_unittest.cc', |
161 'latency_info_unittest.cc', | 164 'latency_info_unittest.cc', |
162 'test/events_unittests.cc', | 165 'test/events_unittests.cc', |
163 'test/test_suite.cc', | 166 'test/test_suite.cc', |
164 'test/test_suite.h', | 167 'test/test_suite.h', |
165 'ozone/evdev/key_event_converter_unittest.cc', | 168 'ozone/evdev/key_event_converter_unittest.cc', |
166 'ozone/evdev/touch_event_converter_unittest.cc', | 169 'ozone/evdev/touch_event_converter_unittest.cc', |
| 170 'x/events_x_unittest.cc', |
167 ], | 171 ], |
168 }, | 172 }, |
169 ], | 173 ], |
170 } | 174 } |
OLD | NEW |