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

Unified Diff: build/install-build-deps.sh

Issue 23569010: Add libbrlapi to install-build-deps.sh. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 7 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/install-build-deps.sh
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh
index c858fa018eebb25b79f01bd9eb281a9b0219843a..a0a019d90d739db73ce6d04caec5978f0459f3e4 100755
--- a/build/install-build-deps.sh
+++ b/build/install-build-deps.sh
@@ -75,12 +75,12 @@ if [ "x$(id -u)" != x0 ]; then
fi
# Packages needed for chromeos only
-chromeos_dev_list="libbluetooth-dev"
+chromeos_dev_list="libbluetooth-dev libbrlapi-dev"
# Packages need for development
dev_list="apache2.2-bin bison curl elfutils fakeroot flex g++ gperf
- language-pack-fr libapache2-mod-php5 libasound2-dev libbz2-dev
- libcairo2-dev libcups2-dev libcurl4-gnutls-dev libelf-dev
+ language-pack-fr libapache2-mod-php5 libasound2-dev libbrlapi-dev
+ libbz2-dev libcairo2-dev libcups2-dev libcurl4-gnutls-dev libelf-dev
libgconf2-dev libgl1-mesa-dev libglib2.0-dev libglu1-mesa-dev
libgnome-keyring-dev libgtk2.0-dev libkrb5-dev libnspr4-dev
libnss3-dev libpam0g-dev libpci-dev libpulse-dev libsctp-dev
@@ -151,6 +151,11 @@ if package_exists libudev1; then
else
dev_list="${dev_list} libudev0"
fi
+if package_exists libbrlapi0.6; then
+ dev_list="${dev_list} libbrlapi0.6"
+else
+ dev_list="${dev_list} libbrlapi0.5"
+fi
# Some packages are only needed, if the distribution actually supports
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698