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

Unified Diff: build/android/prepare_library_for_apk

Issue 12330112: Move shared lib stripping to python (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + changes Created 7 years, 9 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 | build/android/pylib/build_utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/prepare_library_for_apk
diff --git a/build/android/prepare_library_for_apk b/build/android/prepare_library_for_apk
deleted file mode 100755
index ac0297716dac4cebc75c687e1ce022c50cfdcc07..0000000000000000000000000000000000000000
--- a/build/android/prepare_library_for_apk
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-# Copyright (c) 2012 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.
-
-# Creates a stripped copy of a library for inclusion in an apk.
-
-if [[ $# -ne 3 ]]
-then
- echo "Usage: prepare_library_for_apk android_strip path/to/library stripped/library/output/path"
- exit 1
-fi
-
-ANDROID_STRIP=$1
-LIBRARY=$2
-STRIPPED=$3
-
-set -e
-$ANDROID_STRIP --strip-unneeded $LIBRARY -o $STRIPPED
« no previous file with comments | « no previous file | build/android/pylib/build_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698