Commit 8ab0d9cc authored by thomasvl@chromium.org's avatar thomasvl@chromium.org

Remove some support for the transition in fixing up the mac language bundles. ...

Remove some support for the transition in fixing up the mac language bundles.  One part has been there for 2+ weeks, the other 1+ week, at this point anyone that hasn't build/build can do a clobber.

TEST=none
BUG=none
Review URL: http://codereview.chromium.org/192066

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25858 0039d316-1c4b-4281-b951-d872f2087c98
parent 32bb88a8
#!/bin/sh
# Copyright (c) 2009 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.
# TODO: Remove this script and the action that invokes it after 09/01/09
# The helper's Resources directory used to be a link, but now that we need
# real resources, we have this script deletes the link as a stop gap for the
# build bots and developers' builds.
set -e
RESOURCES_PATH="${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Contents/Resources"
if [ -L "${RESOURCES_PATH}" ] ; then
rm -f "${RESOURCES_PATH}"
fi
......@@ -13,16 +13,6 @@ set -e
# Working in the resources directory
cd "${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Contents/Resources"
# Remove the stale zh.lproj
# TODO: This can go away about 09/01/09, when they won't exist on the bots or
# developers' local builds.
rm -rf "zh.lproj" "en.lproj"
# Remove the invalid dirs with - instead of _ (http://crbug.com/20441)
# TODO: This can go away about 09/09/09, when they won't exist on the bots or
# developers' local builds.
rm -rf "en-GB.lproj" "en-US.lproj" "es-419.lproj" "pt-BR.lproj" "pt-PT.lproj" \
"zh-CN.lproj" "zh-TW.lproj"
# Provide an link for en.lproj that points to en_US.lproj.
# The standard OS language list includes English (en) and not a specific
......
......@@ -4883,13 +4883,6 @@
},
],
'actions': [
{
# TODO: remove this action and the script it runs after 09/01/09
'action_name': 'Remove old resources symlink',
'inputs': [],
'outputs': [],
'action': [ 'app/nuke_mac_resources_link' ],
},
{
# Generate the InfoPlist.strings file
'action_name': 'Generating InfoPlist.strings files',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment