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

Side by Side Diff: build/install-build-deps.sh

Issue 10166005: Add libbluetooth-dev to the list of chromeos deps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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/bash -e 1 #!/bin/bash -e
2 2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
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 # Script to install everything needed to build chromium (well, ideally, anyway) 7 # Script to install everything needed to build chromium (well, ideally, anyway)
8 # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions 8 # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions
9 # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit 9 # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 exit 42 exit
43 fi 43 fi
44 44
45 if [ "x$(id -u)" != x0 ]; then 45 if [ "x$(id -u)" != x0 ]; then
46 echo "Running as non-root user." 46 echo "Running as non-root user."
47 echo "You might have to enter your password one or more times for 'sudo'." 47 echo "You might have to enter your password one or more times for 'sudo'."
48 echo 48 echo
49 fi 49 fi
50 50
51 # Packages needed for chromeos only 51 # Packages needed for chromeos only
52 chromeos_dev_list="libpulse-dev" 52 chromeos_dev_list="libbluetooth-dev libpulse-dev"
53 53
54 # Packages need for development 54 # Packages need for development
55 dev_list="apache2.2-bin bison curl elfutils fakeroot flex g++ gperf 55 dev_list="apache2.2-bin bison curl elfutils fakeroot flex g++ gperf
56 language-pack-fr libapache2-mod-php5 libasound2-dev libbz2-dev 56 language-pack-fr libapache2-mod-php5 libasound2-dev libbz2-dev
57 libcairo2-dev libcups2-dev libcurl4-gnutls-dev libdbus-glib-1-dev 57 libcairo2-dev libcups2-dev libcurl4-gnutls-dev libdbus-glib-1-dev
58 libelf-dev libgconf2-dev libgl1-mesa-dev libglib2.0-dev 58 libelf-dev libgconf2-dev libgl1-mesa-dev libglib2.0-dev
59 libglu1-mesa-dev libgnome-keyring-dev libgtk2.0-dev 59 libglu1-mesa-dev libgnome-keyring-dev libgtk2.0-dev
60 libkrb5-dev libnspr4-dev libnss3-dev libpam0g-dev libsctp-dev 60 libkrb5-dev libnspr4-dev libnss3-dev libpam0g-dev libsctp-dev
61 libsqlite3-dev libssl-dev libudev-dev libwww-perl libxslt1-dev 61 libsqlite3-dev libssl-dev libudev-dev libwww-perl libxslt1-dev
62 libxss-dev libxt-dev libxtst-dev mesa-common-dev patch 62 libxss-dev libxt-dev libxtst-dev mesa-common-dev patch
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 sed -e 's/[.]so[.][0-9].*/.so/' | 391 sed -e 's/[.]so[.][0-9].*/.so/' |
392 sort -u); do 392 sort -u); do
393 [ "x${i##*/}" = "xld-linux.so" ] && continue 393 [ "x${i##*/}" = "xld-linux.so" ] && continue
394 [ -r "$i" ] && continue 394 [ -r "$i" ] && continue
395 j="$(ls "$i."* | sed -e 's/.*[.]so[.]\([^.]*\)$/\1/;t;d' | 395 j="$(ls "$i."* | sed -e 's/.*[.]so[.]\([^.]*\)$/\1/;t;d' |
396 sort -n | tail -n 1)" 396 sort -n | tail -n 1)"
397 [ -r "$i.$j" ] || continue 397 [ -r "$i.$j" ] || continue
398 sudo ln -s "${i##*/}.$j" "$i" 398 sudo ln -s "${i##*/}.$j" "$i"
399 done 399 done
400 fi 400 fi
OLDNEW
« 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