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

Unified Diff: tools/install_dependencies.sh

Issue 294683003: Since we're only using it on Linux now, just require poppler as a system dependency. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: set -e Created 6 years, 7 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/poppler/config/windows/poppler-config.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/install_dependencies.sh
diff --git a/tools/install_dependencies.sh b/tools/install_dependencies.sh
index 8d75c98918d4c73111bfb95278cfe2801eb6c3a4..5769602115a333d92a4d554c70d8a118c4e4ac27 100755
--- a/tools/install_dependencies.sh
+++ b/tools/install_dependencies.sh
@@ -8,11 +8,14 @@
# dependencies using your system's package manager. If your system is
# not supported, add logic here to support it.
+set -e
+
if command -v lsb_release > /dev/null ; then
case $(lsb_release -i -s) in
Ubuntu)
sudo apt-get install \
build-essential \
+ libpoppler-cpp-dev \
libfreetype6-dev \
libfontconfig-dev \
libpng12-dev \
« no previous file with comments | « third_party/poppler/config/windows/poppler-config.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698