Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(778)

Side by Side Diff: ui/events/events.gyp

Issue 66663004: events: Add a new events_unittests target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: typo Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/all.gyp ('k') | ui/events/test/events_unittests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | ui/events/test/events_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698