summaryrefslogtreecommitdiffstats
path: root/url
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-19 23:06:33 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-19 23:06:33 +0000
commit912c4c29abd71563739f75036b7c2632c4109d15 (patch)
tree5eaf62e06895bee652d0f3c313384af083d43f1d /url
parent5c9e6b20041794edde824a3af382db78d456e2e9 (diff)
downloadchromium_src-912c4c29abd71563739f75036b7c2632c4109d15.zip
chromium_src-912c4c29abd71563739f75036b7c2632c4109d15.tar.gz
chromium_src-912c4c29abd71563739f75036b7c2632c4109d15.tar.bz2
Remove googleurl_unittests hack.
We don't need to copy url_unittests to googleurl_unittests anymore, because the bots were already updated to run url_unittests instead of googleurl_unittests This hack is not necessary and can be removed now. BUG=229660 TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/19467002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212683 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'url')
-rw-r--r--url/url.gyp59
1 files changed, 0 insertions, 59 deletions
diff --git a/url/url.gyp b/url/url.gyp
index 5066899..a9a1a19d 100644
--- a/url/url.gyp
+++ b/url/url.gyp
@@ -95,64 +95,5 @@
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [4267, ],
},
- {
- # url_unittests was formerly named googleurl_unittests. While the build
- # bots are being switched to use the new name we need to support both
- # executables.
- # TODO(tfarina): Remove this target when build bots are building and
- # running url_unittests. crbug.com/229660
- 'target_name': 'googleurl_unittests',
- 'type': 'none',
- 'dependencies': [
- 'url_unittests',
- ],
- 'conditions': [
- ['OS != "ios"',
- {
- 'actions': [
- {
- 'message': 'TEMPORARY: Copying url_unittests to googleurl_unittests',
- 'action_name': 'copy_url_unittests',
- 'variables': {
- 'source_file': '<(PRODUCT_DIR)/url_unittests<(EXECUTABLE_SUFFIX)',
- 'dest_file': '<(PRODUCT_DIR)/googleurl_unittests<(EXECUTABLE_SUFFIX)',
- },
- 'inputs': [
- '../build/cp.py',
- '<(source_file)',
- ],
- 'outputs': [
- '<(dest_file)',
- ],
- 'action': [
- 'python', '../build/cp.py', '<(source_file)', '<(dest_file)',
- ],
- },
- ],
- }, { # else OS == "ios"
- 'actions': [
- {
- 'message': 'TEMPORARY: Copying url_unittests to googleurl_unittests',
- 'action_name': 'copy_url_unittests',
- 'variables': {
- 'source_file': '<(PRODUCT_DIR)/url_unittests.app/',
- 'dest_file': '<(PRODUCT_DIR)/googleurl_unittests.app',
- },
- 'inputs': [
- '../build/cp.py',
- '<(source_file)',
- ],
- 'outputs': [
- '<(dest_file)',
- ],
- 'action': [
- 'cp', '-R', '<(source_file)', '<(dest_file)',
- ],
- },
- ],
- }
- ]
- ],
- },
],
}