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

Side by Side Diff: ui/base/ui_base_tests.gypi

Issue 759433002: Reland: Move TouchSelectionController from content to ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed reviewers' comments Created 6 years 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
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 'type': '<(gtest_target_type)', 6 'type': '<(gtest_target_type)',
7 'dependencies': [ 7 'dependencies': [
8 '../../base/base.gyp:base', 8 '../../base/base.gyp:base',
9 '../../base/base.gyp:test_support_base', 9 '../../base/base.gyp:test_support_base',
10 '../../net/net.gyp:net', 10 '../../net/net.gyp:net',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'ime/input_method_chromeos_unittest.cc', 64 'ime/input_method_chromeos_unittest.cc',
65 'ime/remote_input_method_win_unittest.cc', 65 'ime/remote_input_method_win_unittest.cc',
66 'ime/win/imm32_manager_unittest.cc', 66 'ime/win/imm32_manager_unittest.cc',
67 'ime/win/tsf_input_scope_unittest.cc', 67 'ime/win/tsf_input_scope_unittest.cc',
68 'models/list_model_unittest.cc', 68 'models/list_model_unittest.cc',
69 'models/list_selection_model_unittest.cc', 69 'models/list_selection_model_unittest.cc',
70 'models/tree_node_model_unittest.cc', 70 'models/tree_node_model_unittest.cc',
71 'test/test_clipboard_unittest.cc', 71 'test/test_clipboard_unittest.cc',
72 'test/data/resource.h', 72 'test/data/resource.h',
73 'text/bytes_formatting_unittest.cc', 73 'text/bytes_formatting_unittest.cc',
74 'touch/touch_editing_controller_unittest.cc', 74 'touch/selection_bound_unittest.cc',
75 'view_prop_unittest.cc', 75 'view_prop_unittest.cc',
76 'webui/web_ui_util_unittest.cc', 76 'webui/web_ui_util_unittest.cc',
77 'x/selection_requestor_unittest.cc', 77 'x/selection_requestor_unittest.cc',
78 ], 78 ],
79 'include_dirs': [ 79 'include_dirs': [
80 '../..', 80 '../..',
81 ], 81 ],
82 'conditions': [ 82 'conditions': [
83 ['OS!="ios"', { 83 ['OS!="ios"', {
84 'sources' : [ '<@(_all_sources)' ], 84 'sources' : [ '<@(_all_sources)' ],
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 ], 128 ],
129 }, 129 },
130 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 130 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
131 'msvs_disabled_warnings': [ 4267, ], 131 'msvs_disabled_warnings': [ 4267, ],
132 }], 132 }],
133 ['OS == "android"', { 133 ['OS == "android"', {
134 'dependencies': [ 134 'dependencies': [
135 '../../testing/android/native_test.gyp:native_test_native_code', 135 '../../testing/android/native_test.gyp:native_test_native_code',
136 ], 136 ],
137 'sources!': [ 137 'sources!': [
138 'touch/touch_editing_controller_unittest.cc', 138 'touch/selection_bound_unittest.cc',
139 ], 139 ],
140 }], 140 }],
141 ['use_pango == 1', { 141 ['use_pango == 1', {
142 'dependencies': [ 142 'dependencies': [
143 '../../build/linux/system.gyp:pangocairo', 143 '../../build/linux/system.gyp:pangocairo',
144 ], 144 ],
145 'conditions': [ 145 'conditions': [
146 ['use_allocator!="none"', { 146 ['use_allocator!="none"', {
147 'dependencies': [ 147 'dependencies': [
148 '../../base/allocator/allocator.gyp:allocator', 148 '../../base/allocator/allocator.gyp:allocator',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 'target_conditions': [ 212 'target_conditions': [
213 ['OS == "ios"', { 213 ['OS == "ios"', {
214 'sources/': [ 214 'sources/': [
215 # Pull in specific Mac files for iOS (which have been filtered out 215 # Pull in specific Mac files for iOS (which have been filtered out
216 # by file name rules). 216 # by file name rules).
217 ['include', '^l10n/l10n_util_mac_unittest\\.mm$'], 217 ['include', '^l10n/l10n_util_mac_unittest\\.mm$'],
218 ], 218 ],
219 }], 219 }],
220 ], 220 ],
221 } 221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698