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

Unified Diff: third_party/instrumented_libraries/scripts/install-build-deps.sh

Issue 2732353002: Instrumented libraries: Remove Precise support (Closed)
Patch Set: Rebase Created 3 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 | « third_party/instrumented_libraries/scripts/download_binaries.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/instrumented_libraries/scripts/install-build-deps.sh
diff --git a/third_party/instrumented_libraries/scripts/install-build-deps.sh b/third_party/instrumented_libraries/scripts/install-build-deps.sh
index 5160ccf26ac7e01534acb2d1ae0df588c552cb85..d63ab98d0e3b92c4425a5efe20464ec757a2e2ed 100755
--- a/third_party/instrumented_libraries/scripts/install-build-deps.sh
+++ b/third_party/instrumented_libraries/scripts/install-build-deps.sh
@@ -68,7 +68,6 @@ udev \
zlib1g \
brltty"
-precise_specific_packages="libtasn1-3"
trusty_specific_packages="\
libtasn1-6 \
harfbuzz
@@ -76,9 +75,7 @@ libsecret"
ubuntu_release=$(lsb_release -cs)
-if test "$ubuntu_release" = "precise" ; then
- packages="$common_packages $precise_specific_packages"
-else
+if test "$ubuntu_release" = "trusty" ; then
packages="$common_packages $trusty_specific_packages"
fi
« no previous file with comments | « third_party/instrumented_libraries/scripts/download_binaries.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698