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

Side by Side Diff: tools/install_dependencies.sh

Issue 261913006: Spelling fix, comments explaining script. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « tools/install_dependencides.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
1 #!/bin/sh 1 #!/bin/sh
2 # Copyright 2014 Google Inc. 2 # Copyright 2014 Google Inc.
3 # 3 #
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # install_dependencies.sh will install system-specific Skia
8 # dependencies using your system's package manager. If your system is
9 # not supported, add logic here to support it.
10
7 if command -v lsb_release > /dev/null ; then 11 if command -v lsb_release > /dev/null ; then
8 case $(lsb_release -i -s) in 12 case $(lsb_release -i -s) in
9 Ubuntu) 13 Ubuntu)
10 sudo apt-get install \ 14 sudo apt-get install \
11 build-essential \ 15 build-essential \
12 libfreetype6-dev \ 16 libfreetype6-dev \
13 libfontconfig-dev \ 17 libfontconfig-dev \
14 libpng12-dev \ 18 libpng12-dev \
15 libgif-dev \ 19 libgif-dev \
16 libqt4-dev \ 20 libqt4-dev \
17 clang 21 clang
18 if [ $(lsb_release -r -s) = '14.04' ] ; then 22 if [ $(lsb_release -r -s) = '14.04' ] ; then
19 sudo apt-get install \ 23 sudo apt-get install \
20 ninja-build 24 ninja-build
21 fi 25 fi
22 exit 26 exit
23 ;; 27 ;;
24 esac 28 esac
25 fi 29 fi
26 30
27 echo 'unknown system' 31 echo 'unknown system'
28 exit 1 32 exit 1
29 33
OLDNEW
« no previous file with comments | « tools/install_dependencides.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698