0

Have the ui_test_support target be of type none on iOS.

After https://chromiumcodereview.appspot.com/16024014, the ui_test_support
target has no sources that are built on iOS. This causes targets that depend on
this target to fail linkage because the ui_test_support library can't be found.

R=thakis

Review URL: https://chromiumcodereview.appspot.com/16841013

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206147 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
blundell@chromium.org
2013-06-13 20:00:10 +00:00
parent 58ce4687bb
commit 9559f2c9c5

@ -6,7 +6,6 @@
'targets': [
{
'target_name': 'ui_test_support',
'type': 'static_library',
'dependencies': [
'../base/base.gyp:base',
'../skia/skia.gyp:skia',
@ -30,8 +29,15 @@
],
'conditions': [
['OS!="ios"', {
'type': 'static_library',
'includes': [ 'base/ime/ime_test_support.gypi' ],
}, { # OS=="ios"
# None of the sources in this target are built on iOS, resulting in
# link errors when building targets that depend on this target
# because the static library isn't found. If this target is changed
# to have sources that are built on iOS, the target should be changed
# to be of type static_library on all platforms.
'type': 'none',
# The cocoa files don't apply to iOS.
'sources/': [['exclude', 'cocoa']],
}],