diff options
author | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-10 16:28:51 +0000 |
---|---|---|
committer | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-10 16:28:51 +0000 |
commit | 8ab0d9cc48c5182bf1f0bc8a39f1185440ab7a4f (patch) | |
tree | 964c141486f0b0caef17ff31fd299bf1b1f81042 /chrome | |
parent | 32bb88a8a31f953bff2909de8c313d3af0e59a44 (diff) | |
download | chromium_src-8ab0d9cc48c5182bf1f0bc8a39f1185440ab7a4f.zip chromium_src-8ab0d9cc48c5182bf1f0bc8a39f1185440ab7a4f.tar.gz chromium_src-8ab0d9cc48c5182bf1f0bc8a39f1185440ab7a4f.tar.bz2 |
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
Diffstat (limited to 'chrome')
-rwxr-xr-x | chrome/app/nuke_mac_resources_link | 19 | ||||
-rwxr-xr-x | chrome/app/tweak_mac_lproj_folders | 10 | ||||
-rw-r--r-- | chrome/chrome.gyp | 7 |
3 files changed, 0 insertions, 36 deletions
diff --git a/chrome/app/nuke_mac_resources_link b/chrome/app/nuke_mac_resources_link deleted file mode 100755 index 98c5c75..0000000 --- a/chrome/app/nuke_mac_resources_link +++ /dev/null @@ -1,19 +0,0 @@ -#!/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 diff --git a/chrome/app/tweak_mac_lproj_folders b/chrome/app/tweak_mac_lproj_folders index 9659e67..46ef42f 100755 --- a/chrome/app/tweak_mac_lproj_folders +++ b/chrome/app/tweak_mac_lproj_folders @@ -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 diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 0bb0e8c..240c40a 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -4884,13 +4884,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', 'variables': { |