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

Side by Side Diff: ui/touch_selection/ui_touch_selection.gyp

Issue 701823002: Separate out Touch Selection Orientation enum (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « ui/touch_selection/touch_selection_controller.cc ('k') | no next file » | 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'ui_touch_selection', 11 'target_name': 'ui_touch_selection',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../../base/base.gyp:base', 14 '../../base/base.gyp:base',
15 '../base/ui_base.gyp:ui_base', 15 '../base/ui_base.gyp:ui_base',
16 '../events/events.gyp:events', 16 '../events/events.gyp:events',
17 '../events/events.gyp:gesture_detection', 17 '../events/events.gyp:gesture_detection',
18 '../gfx/gfx.gyp:gfx_geometry', 18 '../gfx/gfx.gyp:gfx_geometry',
19 ], 19 ],
20 'defines': [ 20 'defines': [
21 'UI_TOUCH_SELECTION_IMPLEMENTATION', 21 'UI_TOUCH_SELECTION_IMPLEMENTATION',
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 'selection_event_type.h', 24 'selection_event_type.h',
25 'touch_handle.cc', 25 'touch_handle.cc',
26 'touch_handle.h', 26 'touch_handle.h',
27 'touch_handle_orientation.h',
27 'touch_selection_controller.cc', 28 'touch_selection_controller.cc',
28 'touch_selection_controller.h', 29 'touch_selection_controller.h',
29 'ui_touch_selection_export.h', 30 'ui_touch_selection_export.h',
30 ], 31 ],
31 'include_dirs': [ 32 'include_dirs': [
32 '../..', 33 '../..',
33 ], 34 ],
34 }, 35 },
35 { 36 {
36 'target_name': 'ui_touch_selection_unittests', 37 'target_name': 'ui_touch_selection_unittests',
(...skipping 30 matching lines...) Expand all
67 'targets': [ 68 'targets': [
68 { 69 {
69 'target_name': 'selection_event_type_java', 70 'target_name': 'selection_event_type_java',
70 'type': 'none', 71 'type': 'none',
71 'variables': { 72 'variables': {
72 'source_file': 'selection_event_type.h', 73 'source_file': 'selection_event_type.h',
73 }, 74 },
74 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 75 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
75 }, 76 },
76 { 77 {
78 'target_name': 'touch_handle_orientation_java',
79 'type': 'none',
80 'variables': {
81 'source_file': 'touch_handle_orientation.h',
82 },
83 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
84 },
85 {
77 'target_name': 'ui_touch_selection_unittests_apk', 86 'target_name': 'ui_touch_selection_unittests_apk',
78 'type': 'none', 87 'type': 'none',
79 'dependencies': [ 88 'dependencies': [
80 'ui_touch_selection_unittests', 89 'ui_touch_selection_unittests',
81 ], 90 ],
82 'variables': { 91 'variables': {
83 'test_suite_name': 'ui_touch_selection_unittests', 92 'test_suite_name': 'ui_touch_selection_unittests',
84 }, 93 },
85 'includes': [ '../../build/apk_test.gypi' ], 94 'includes': [ '../../build/apk_test.gypi' ],
86 }, 95 },
(...skipping 18 matching lines...) Expand all
105 'dependencies': [ 114 'dependencies': [
106 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 115 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
107 ], 116 ],
108 }], 117 }],
109 ], 118 ],
110 }, 119 },
111 ], 120 ],
112 }], 121 }],
113 ], 122 ],
114 } 123 }
OLDNEW
« no previous file with comments | « ui/touch_selection/touch_selection_controller.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698