diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 22:02:19 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 22:02:19 +0000 |
commit | 9d1cb4e7f4217761ceaf9aeaed7c4b18c2d99db6 (patch) | |
tree | d76cee307ca0036a3f0c1de8ea8793918179804e /chrome/tools | |
parent | 24d432c88be43fb774df1971a6148648d1ea29a2 (diff) | |
download | chromium_src-9d1cb4e7f4217761ceaf9aeaed7c4b18c2d99db6.zip chromium_src-9d1cb4e7f4217761ceaf9aeaed7c4b18c2d99db6.tar.gz chromium_src-9d1cb4e7f4217761ceaf9aeaed7c4b18c2d99db6.tar.bz2 |
Clean up remove_ffmpeg_dylibs. The transition is over.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/403020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32412 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rwxr-xr-x | chrome/tools/build/mac/remove_ffmpeg_dylibs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/chrome/tools/build/mac/remove_ffmpeg_dylibs b/chrome/tools/build/mac/remove_ffmpeg_dylibs deleted file mode 100755 index fad15ae0..0000000 --- a/chrome/tools/build/mac/remove_ffmpeg_dylibs +++ /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. - -# Remove obsolete FFmpeg shared libraries. Previously, there were three -# prebuilt FFmpeg libraries checked in as binaries, and they were copied into -# the framework's Libraries directory. Since trunk 31050, they have been -# replaced by the single library libffmpegsumo.dylib (love the name), built -# from source during a normal build. -# -# TODO(mark): Remove after November 19, 2009, allowing two weeks for the -# transition. - -LIBRARIES_DIR="${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Libraries" -rm -f "${LIBRARIES_DIR}/libavcodec.52.dylib" \ - "${LIBRARIES_DIR}/libavformat.52.dylib" \ - "${LIBRARIES_DIR}/libavutil.50.dylib" |