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

Side by Side Diff: ui/events/BUILD.gn

Issue 409493002: Cleanup test_support target names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months 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 | « ui/base/BUILD.gn ('k') | ui/gfx/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 static_library("dom4_keycode_converter") { 7 static_library("dom4_keycode_converter") {
8 sources = [ 8 sources = [
9 "keycodes/dom4/keycode_converter.cc", 9 "keycodes/dom4/keycode_converter.cc",
10 "keycodes/dom4/keycode_converter.h", 10 "keycodes/dom4/keycode_converter.h",
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 218
219 if (is_android) { 219 if (is_android) {
220 sources += [ "gesture_detection/gesture_config_helper_android.cc" ] 220 sources += [ "gesture_detection/gesture_config_helper_android.cc" ]
221 } else if (use_aura) { 221 } else if (use_aura) {
222 sources += [ "gesture_detection/gesture_config_helper_aura.cc" ] 222 sources += [ "gesture_detection/gesture_config_helper_aura.cc" ]
223 } else { 223 } else {
224 sources += [ "gesture_detection/gesture_config_helper.cc" ] 224 sources += [ "gesture_detection/gesture_config_helper.cc" ]
225 } 225 }
226 } 226 }
227 227
228 source_set("events_test_support") { 228 source_set("test_support") {
229 sources = [ 229 sources = [
230 "test/cocoa_test_event_utils.h", 230 "test/cocoa_test_event_utils.h",
231 "test/cocoa_test_event_utils.mm", 231 "test/cocoa_test_event_utils.mm",
232 "test/events_test_utils.cc", 232 "test/events_test_utils.cc",
233 "test/events_test_utils.h", 233 "test/events_test_utils.h",
234 "test/events_test_utils_x11.cc", 234 "test/events_test_utils_x11.cc",
235 "test/events_test_utils_x11.h", 235 "test/events_test_utils_x11.h",
236 "test/mock_motion_event.cc", 236 "test/mock_motion_event.cc",
237 "test/mock_motion_event.h", 237 "test/mock_motion_event.h",
238 "test/platform_event_waiter.cc", 238 "test/platform_event_waiter.cc",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 if (use_ozone) { 295 if (use_ozone) {
296 sources += [ 296 sources += [
297 "ozone/evdev/key_event_converter_evdev_unittest.cc", 297 "ozone/evdev/key_event_converter_evdev_unittest.cc",
298 "ozone/evdev/touch_event_converter_evdev_unittest.cc", 298 "ozone/evdev/touch_event_converter_evdev_unittest.cc",
299 ] 299 ]
300 } 300 }
301 301
302 deps = [ 302 deps = [
303 ":events", 303 ":events",
304 ":events_base", 304 ":events_base",
305 ":events_test_support",
306 ":gesture_detection", 305 ":gesture_detection",
306 ":test_support",
307 "//base", 307 "//base",
308 "//base/test:run_all_unittests", 308 "//base/test:run_all_unittests",
309 "//skia", 309 "//skia",
310 "//testing/gtest", 310 "//testing/gtest",
311 "//ui/gfx:gfx_test_support", 311 "//ui/gfx:test_support",
312 ] 312 ]
313 } 313 }
OLDNEW
« no previous file with comments | « ui/base/BUILD.gn ('k') | ui/gfx/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698