Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1743)

Unified Diff: chrome/app/clean_mac_resources

Issue 334040: TODO (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/clean_mac_resources
===================================================================
--- chrome/app/clean_mac_resources (revision 30152)
+++ chrome/app/clean_mac_resources (working copy)
@@ -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"
« no previous file with comments | « no previous file | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698