summaryrefslogtreecommitdiffstats
path: root/url
diff options
context:
space:
mode:
authorgavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-20 12:52:12 +0000
committergavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-20 12:52:12 +0000
commitb06b39cbd5ecb07880cb1bcbe2d82cbb1c155d48 (patch)
tree63e2ed9a905480e8216c3fee93dbef37fba66447 /url
parentc8ff7c9eae9ded873df5dcb230f35e78aecd4e36 (diff)
downloadchromium_src-b06b39cbd5ecb07880cb1bcbe2d82cbb1c155d48.zip
chromium_src-b06b39cbd5ecb07880cb1bcbe2d82cbb1c155d48.tar.gz
chromium_src-b06b39cbd5ecb07880cb1bcbe2d82cbb1c155d48.tar.bz2
Revert 195389 "url: Copy 'googleurl_unittests' target from 'url_..."
> url: Copy 'googleurl_unittests' target from 'url_unittests'. Attempt 2. > > To not break the buildbot, this creates a fake target that copies url_unittests > to googleurl_unittests as temporary scaffolding. > > BUG=229660 > R=brettw@chromium.org > > Review URL: https://chromiumcodereview.appspot.com/14199009 TBR=tfarina@chromium.org Review URL: https://codereview.chromium.org/14028022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195392 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'url')
-rw-r--r--url/url.gyp62
1 files changed, 0 insertions, 62 deletions
diff --git a/url/url.gyp b/url/url.gyp
index aff709e..4f86e5d 100644
--- a/url/url.gyp
+++ b/url/url.gyp
@@ -95,67 +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)',
- ],
- },
- ],
- }
- ],
- ['OS == "ios"',
- {
- 'actions': [
- {
- 'message': 'TEMPORARY: Copying url_unittests to googleurl_unittests',
- 'action_name': 'copy_url_unittests',
- 'variables': {
- 'source_file': '<(PRODUCT_DIR)/url_unittests.app/url_unittests',
- 'dest_file': '<(PRODUCT_DIR)/googleurl_unittests.app/googleurl_unittests',
- },
- 'inputs': [
- '../build/cp.py',
- '<(source_file)',
- ],
- 'outputs': [
- '<(dest_file)',
- ],
- 'action': [
- 'python', '../build/cp.py', '<(source_file)', '<(dest_file)',
- ],
- },
- ],
- }
- ]
- ],
- },
],
}