Skip to content

Commit

Permalink
Renamed ios_unittests target to ios_web_unittests.
Browse files Browse the repository at this point in the history
ios_unittests name does not reflect the real purpose of the target.
Enable the tests on the try bots.

BUG=462150

Review URL: https://codereview.chromium.org/951383002

Cr-Commit-Position: refs/heads/master@{#318428}
  • Loading branch information
sdefresne authored and Commit bot committed Feb 27, 2015
1 parent 0a82d63 commit 20b0e2a
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 30 deletions.
5 changes: 5 additions & 0 deletions ios/build/bots/chromium.fyi/Chromium_iOS_Simulator_(dbg).json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
"device type": "iPhone Retina (4-inch)",
"os": "7.1"
},
{
"app": "ios_web_unittests",
"device type": "iPhone Retina (4-inch)",
"os": "7.1"
},
{
"app": "base_unittests",
"device type": "iPhone Retina (4-inch)",
Expand Down
5 changes: 5 additions & 0 deletions ios/build/bots/chromium.mac/iOS_Simulator_(dbg).json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
"device type": "iPhone Retina (4-inch)",
"os": "7.1"
},
{
"app": "ios_web_unittests",
"device type": "iPhone Retina (4-inch)",
"os": "7.1"
},
{
"app": "base_unittests",
"device type": "iPhone Retina (4-inch)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
"device type": "iPhone Retina (4-inch)",
"os": "7.1"
},
{
"app": "ios_web_unittests",
"device type": "iPhone Retina (4-inch)",
"os": "7.1"
},
{
"app": "base_unittests",
"device type": "iPhone Retina (4-inch)",
Expand Down
2 changes: 1 addition & 1 deletion ios/ios.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
'type': 'none',
'dependencies': [
'chrome/ios_chrome_tests.gyp:*',
'ios_tests_unit.gyp:*',
'provider/ios_provider_chrome.gyp:*',
'provider/ios_provider_web.gyp:*',
'web/ios_web.gyp:*',
'web/ios_web_unittests.gyp:*',
],
},
],
Expand Down
29 changes: 0 additions & 29 deletions ios/ios_tests_unit.gyp

This file was deleted.

29 changes: 29 additions & 0 deletions ios/web/ios_web_unittests.gyp
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'chromium_code': 1,
},
'targets': [
{
'target_name': 'ios_web_unittests',
'type': '<(gtest_target_type)',
'dependencies': [
'../../base/base.gyp:base',
'../../base/base.gyp:run_all_unittests',
'../../base/base.gyp:test_support_base',
'../../testing/gmock.gyp:gmock',
'../../testing/gtest.gyp:gtest',
'ios_web.gyp:ios_web',
'ios_web.gyp:test_support_ios_web',
],
'sources': [
'browser_state_unittest.cc',
'navigation/navigation_item_impl_unittest.mm',
'string_util_unittest.cc',
'url_scheme_util_unittest.mm',
],
},
],
}

0 comments on commit 20b0e2a

Please sign in to comment.