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

Side by Side Diff: ui/ui_unittests.gyp

Issue 291753002: Reland "Move a good set of gfx unit tests into gfx_unittests target." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: change to use UI_TEST_PAK Created 6 years, 7 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/gfx/test/run_all_unittests.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 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 22 matching lines...) Expand all
33 'base/layout_unittest.cc', 33 'base/layout_unittest.cc',
34 'base/l10n/l10n_util_mac_unittest.mm', 34 'base/l10n/l10n_util_mac_unittest.mm',
35 'base/l10n/l10n_util_unittest.cc', 35 'base/l10n/l10n_util_unittest.cc',
36 'base/l10n/l10n_util_win_unittest.cc', 36 'base/l10n/l10n_util_win_unittest.cc',
37 'base/l10n/time_format_unittest.cc', 37 'base/l10n/time_format_unittest.cc',
38 'base/models/tree_node_iterator_unittest.cc', 38 'base/models/tree_node_iterator_unittest.cc',
39 'base/resource/data_pack_literal.cc', 39 'base/resource/data_pack_literal.cc',
40 'base/resource/data_pack_unittest.cc', 40 'base/resource/data_pack_unittest.cc',
41 'base/resource/resource_bundle_unittest.cc', 41 'base/resource/resource_bundle_unittest.cc',
42 'base/test/run_all_unittests.cc', 42 'base/test/run_all_unittests.cc',
43 'gfx/font_unittest.cc',
44 'gfx/image/image_skia_unittest.cc',
45 'gfx/screen_unittest.cc', 43 'gfx/screen_unittest.cc',
46 'gfx/text_elider_unittest.cc',
47 'gfx/text_utils_unittest.cc',
48 ], 44 ],
49 'all_sources': [ 45 'all_sources': [
50 '<@(_common_sources)', 46 '<@(_common_sources)',
51 'base/accelerators/accelerator_manager_unittest.cc', 47 'base/accelerators/accelerator_manager_unittest.cc',
52 'base/accelerators/menu_label_accelerator_util_linux_unittest.cc', 48 'base/accelerators/menu_label_accelerator_util_linux_unittest.cc',
53 'base/clipboard/clipboard_unittest.cc', 49 'base/clipboard/clipboard_unittest.cc',
54 'base/clipboard/custom_data_helper_unittest.cc', 50 'base/clipboard/custom_data_helper_unittest.cc',
55 'base/cocoa/base_view_unittest.mm', 51 'base/cocoa/base_view_unittest.mm',
56 'base/cocoa/cocoa_base_utils_unittest.mm', 52 'base/cocoa/cocoa_base_utils_unittest.mm',
57 'base/cocoa/controls/blue_label_button_unittest.mm', 53 'base/cocoa/controls/blue_label_button_unittest.mm',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 131 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
136 'msvs_disabled_warnings': [ 4267, ], 132 'msvs_disabled_warnings': [ 4267, ],
137 }], 133 }],
138 ['OS == "android"', { 134 ['OS == "android"', {
139 'dependencies': [ 135 'dependencies': [
140 '../testing/android/native_test.gyp:native_test_native_code', 136 '../testing/android/native_test.gyp:native_test_native_code',
141 ], 137 ],
142 }], 138 }],
143 ['use_pango == 1', { 139 ['use_pango == 1', {
144 'dependencies': [ 140 'dependencies': [
145 '../build/linux/system.gyp:fontconfig',
146 '../build/linux/system.gyp:pangocairo', 141 '../build/linux/system.gyp:pangocairo',
147 ], 142 ],
148 'sources': [
149 'gfx/platform_font_pango_unittest.cc',
150 ],
151 'conditions': [ 143 'conditions': [
152 ['use_allocator!="none"', { 144 ['use_allocator!="none"', {
153 'dependencies': [ 145 'dependencies': [
154 '../base/allocator/allocator.gyp:allocator', 146 '../base/allocator/allocator.gyp:allocator',
155 ], 147 ],
156 }], 148 }],
157 ], 149 ],
158 }], 150 }],
159 ['use_x11==1', { 151 ['use_x11==1', {
160 'dependencies': [ 152 'dependencies': [
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 'gfx/screen_unittest.cc', 193 'gfx/screen_unittest.cc',
202 ], 194 ],
203 }], 195 }],
204 ['use_ozone==1', { 196 ['use_ozone==1', {
205 'dependencies': [ 197 'dependencies': [
206 'gfx/ozone/gfx_ozone.gyp:gfx_ozone', 198 'gfx/ozone/gfx_ozone.gyp:gfx_ozone',
207 ], 199 ],
208 }], 200 }],
209 ['use_ozone==1 and use_pango==0', { 201 ['use_ozone==1 and use_pango==0', {
210 'sources!': [ 202 'sources!': [
211 'gfx/text_elider_unittest.cc', 203 'gfx/canvas_unittest.cc',
212 'gfx/font_unittest.cc',
213 'gfx/font_list_unittest.cc', 204 'gfx/font_list_unittest.cc',
214 'gfx/render_text_unittest.cc', 205 'gfx/render_text_unittest.cc',
215 'gfx/canvas_unittest.cc',
216 ], 206 ],
217 }], 207 }],
218 ['chromeos==1', { 208 ['chromeos==1', {
219 'dependencies': [ 209 'dependencies': [
220 '../chromeos/chromeos.gyp:chromeos', 210 '../chromeos/chromeos.gyp:chromeos',
221 'aura/aura.gyp:aura_test_support', 211 'aura/aura.gyp:aura_test_support',
222 'chromeos/ui_chromeos.gyp:ui_chromeos', 212 'chromeos/ui_chromeos.gyp:ui_chromeos',
223 ], 213 ],
224 'sources': [ 214 'sources': [
225 'chromeos/touch_exploration_controller_unittest.cc' 215 'chromeos/touch_exploration_controller_unittest.cc'
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 ], 254 ],
265 'variables': { 255 'variables': {
266 'test_suite_name': 'ui_unittests', 256 'test_suite_name': 'ui_unittests',
267 }, 257 },
268 'includes': [ '../build/apk_test.gypi' ], 258 'includes': [ '../build/apk_test.gypi' ],
269 }, 259 },
270 ], 260 ],
271 }], 261 }],
272 ], 262 ],
273 } 263 }
OLDNEW
« no previous file with comments | « ui/gfx/test/run_all_unittests.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698