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

Side by Side Diff: chrome/tools/mac_helpers/lipo_thin_x86_64.sh

Issue 2793433002: Delete several unused GYP scripts from build/mac and chrome/tools/build/mac. (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « chrome/tools/build/mac/make_locale_dirs.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # Copyright 2015 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 # This uses lipo to thin out the specified file.
8
9 set -e
10
11 if [ $# -ne 1 ] ; then
12 echo "usage: ${0} FILEPATH" >& 2
13 exit 1
14 fi
15
16 FILEPATH="${1}"
17
18 lipo -thin x86_64 "${FILEPATH}" -o "${FILEPATH}"
OLDNEW
« no previous file with comments | « chrome/tools/build/mac/make_locale_dirs.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698