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

Side by Side Diff: tools/install_dependencides.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 | « no previous file | tools/install_dependencies.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2 # Copyright 2014 Google Inc.
3 #
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 if command -v lsb_release > /dev/null ; then
8 case $(lsb_release -i -s) in
9 Ubuntu)
10 sudo apt-get install \
11 build-essential \
12 libfreetype6-dev \
13 libfontconfig-dev \
14 libpng12-dev \
15 libgif-dev \
16 libqt4-dev \
17 clang
18 if [ $(lsb_release -r -s) = '14.04' ] ; then
19 sudo apt-get install \
20 ninja-build
21 fi
22 exit
23 ;;
24 esac
25 fi
26
27 echo 'unknown system'
28 exit 1
29
OLDNEW
« no previous file with comments | « no previous file | tools/install_dependencies.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698