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

Side by Side Diff: ui/ui_unittests.gypi

Issue 10543057: Initial RenderTextMac implementation using CoreText. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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
« ui/ui.gyp ('K') | « ui/ui.gyp ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'ui_test_support', 8 'target_name': 'ui_test_support',
9 'type': 'static_library', 9 'type': 'static_library',
10 'includes': [ 10 'includes': [
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 ], 187 ],
188 }], 188 }],
189 ['toolkit_uses_gtk == 1', { 189 ['toolkit_uses_gtk == 1', {
190 'sources': [ 190 'sources': [
191 'base/dragdrop/gtk_dnd_util_unittest.cc', 191 'base/dragdrop/gtk_dnd_util_unittest.cc',
192 ], 192 ],
193 'dependencies': [ 193 'dependencies': [
194 '../build/linux/system.gyp:gtk', 194 '../build/linux/system.gyp:gtk',
195 ], 195 ],
196 }], 196 }],
197 ['toolkit_views==1 and OS!="mac"', { 197 ['toolkit_views==1 or OS=="mac"', {
msw 2012/06/18 21:18:59 similarly, does it make more sense to generally in
Alexei Svitkine (slow) 2012/06/22 15:55:47 Done.
198 'sources': [ 198 'sources': [
199 'gfx/render_text_unittest.cc', 199 'gfx/render_text_unittest.cc',
200 ], 200 ],
201 }], 201 }],
202 ['OS!="win" or use_aura==0', { 202 ['OS!="win" or use_aura==0', {
203 'sources!': [ 203 'sources!': [
204 'base/view_prop_unittest.cc', 204 'base/view_prop_unittest.cc',
205 ], 205 ],
206 }], 206 }],
207 ['use_aura==1', { 207 ['use_aura==1', {
(...skipping 28 matching lines...) Expand all
236 'test_suite_name': 'ui_unittests', 236 'test_suite_name': 'ui_unittests',
237 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte sts<(SHARED_LIB_SUFFIX)', 237 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte sts<(SHARED_LIB_SUFFIX)',
238 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], 238 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',],
239 }, 239 },
240 'includes': [ '../build/apk_test.gypi' ], 240 'includes': [ '../build/apk_test.gypi' ],
241 }, 241 },
242 ], 242 ],
243 }], 243 }],
244 ], 244 ],
245 } 245 }
OLDNEW
« ui/ui.gyp ('K') | « ui/ui.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698