summaryrefslogtreecommitdiffstats
path: root/chrome/app
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-27 14:12:36 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-27 14:12:36 +0000
commit104dcef772f6a701b46c4c70d9f2e4d7aa396036 (patch)
tree2802bf7947bcd48a4b2ac1622f6cdbf64bf8a73e /chrome/app
parenta8837dc489ca74aff8c9b7ef728ad8c63d34db06 (diff)
downloadchromium_src-104dcef772f6a701b46c4c70d9f2e4d7aa396036.zip
chromium_src-104dcef772f6a701b46c4c70d9f2e4d7aa396036.tar.gz
chromium_src-104dcef772f6a701b46c4c70d9f2e4d7aa396036.tar.bz2
The TODO timer has expired. Clean up old build TODOs and celebrate two weeks
of versioned directory awesomeness. Review URL: http://codereview.chromium.org/334040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30188 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rwxr-xr-xchrome/app/clean_mac_resources32
1 files changed, 0 insertions, 32 deletions
diff --git a/chrome/app/clean_mac_resources b/chrome/app/clean_mac_resources
deleted file mode 100755
index 36aefca..0000000
--- a/chrome/app/clean_mac_resources
+++ /dev/null
@@ -1,32 +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.
-
-set -e
-
-# Resources used to live in the .app bundle's Resources directory, but now,
-# almost all of them have moved into the .framework. To avoid having the old
-# resources get in the way of non-clobber builds, this script removes them.
-
-# TODO(mark): Remove this some time after October 20, 2009, allowing two weeks
-# for the transition.
-
-RESOURCES_DIR="${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Resources"
-
-# app.icns and document.icns are referenced by the app's Info.plist and must
-# remain in the .app bundle. chrome_debug.log is created by debug builds,
-# there's no reason to remove it if present.
-find "${RESOURCES_DIR}" -type f -depth 1 \
- \! -name app.icns \! -name document.icns \! -name chrome_debug.log \
- -exec rm -f {} \;
-
-# Get rid of the locale.pak files in each .lproj directory. The .lprojs
-# themselves must stay, because they still hold InfoPlist.strings files with
-# localized strings for things like the Finder's Get Info window.
-find "${RESOURCES_DIR}" -type f -depth 2 -name locale.pak -exec rm -f {} \;
-
-# Get rid of the Breakpad helpers (Breakpad-enabled builds only).
-rm -rf "${RESOURCES_DIR}/crash_report_sender.app" \
- "${RESOURCES_DIR}/crash_inspector"