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

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

Issue 10413: Add platform_utils and stub test lists for Linux. (Closed)
Patch Set: Add method to support test rearranging. Created 12 years, 1 month 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 | webkit/tools/layout_tests/layout_package/platform_utils.py » ('j') | 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 # Script to install everything needed to build chromium (well, ideally, anyway) 2 # Script to install everything needed to build chromium (well, ideally, anyway)
3 # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions 3 # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions
4 # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit 4 # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit
5 set -ex 5 set -ex
6 6
7 # TODO(dkegel): add sha1sum verification 7 # TODO(dkegel): add sha1sum verification
8 download() { 8 download() {
9 dir=$1 9 dir=$1
10 file=$2 10 file=$2
(...skipping 11 matching lines...) Expand all
22 } 22 }
23 23
24 download_deb() { 24 download_deb() {
25 download $1 $2 25 download $1 $2
26 unpack_deb $2 26 unpack_deb $2
27 } 27 }
28 28
29 install_hardy() { 29 install_hardy() {
30 sudo apt-get install subversion pkg-config python perl g++ g++-multilib \ 30 sudo apt-get install subversion pkg-config python perl g++ g++-multilib \
31 bison flex gperf libnss3-dev libglib2.0-dev libgtk2.0-dev \ 31 bison flex gperf libnss3-dev libglib2.0-dev libgtk2.0-dev \
32 libnspr4-0d libnspr4-dev 32 libnspr4-0d libnspr4-dev wdiff
33 33
34 wget -c http://www.trevp.com/tlslite/tlslite-0.3.8.tar.gz 34 wget -c http://www.trevp.com/tlslite/tlslite-0.3.8.tar.gz
35 tar xvfz tlslite-0.3.8.tar.gz 35 tar xvfz tlslite-0.3.8.tar.gz
36 cd tlslite-0.3.8/ 36 cd tlslite-0.3.8/
37 python setup.py build 37 python setup.py build
38 sudo python setup.py install 38 sudo python setup.py install
39 cd .. 39 cd ..
40 rm -rf tlslite-0.3.8 40 rm -rf tlslite-0.3.8
41 } 41 }
42 42
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 then 98 then
99 install_hardy 99 install_hardy
100 elif grep -q "Ubuntu 8.04" /etc/issue && test `uname -m` = x86_64 100 elif grep -q "Ubuntu 8.04" /etc/issue && test `uname -m` = x86_64
101 then 101 then
102 install_hardy_64 102 install_hardy_64
103 else 103 else
104 echo "Unsupported system" 104 echo "Unsupported system"
105 exit 1 105 exit 1
106 fi 106 fi
107 107
OLDNEW
« no previous file with comments | « no previous file | webkit/tools/layout_tests/layout_package/platform_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698