OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash -e | |
2 | |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
Alexander Potapenko
2014/06/04 12:32:22
s/2012/2014
| |
4 # Use of this source code is governed by a BSD-style license that can be | |
5 # found in the LICENSE file. | |
6 | |
7 # Script to install build dependencies of packages which we instrument. | |
8 | |
9 grep \'\<\(\_sanitizer_type \ | |
10 $(dirname ${BASH_SOURCE[0]})/instrumented_libraries.gyp | \ | |
Alexander Potapenko
2014/06/04 12:32:22
A comment from Kostya: a single 'apt-get build-dep
| |
11 sed "s;\s*'<(_sanitizer_type)-\(.*\)',;\1;" | sort | uniq | \ | |
12 xargs -L1 sudo apt-get build-dep -y | |
13 | |
14 # Pulseaudio | |
Alexander Potapenko
2014/06/04 12:32:22
Please elaborate why you need this.
| |
15 sudo apt-get install libltdl3-dev -y | |
16 sudo apt-get install libjson0-dev -y | |
17 sudo apt-get install libsndfile1-dev -y | |
18 sudo apt-get install libspeexdsp-dev -y | |
19 | |
20 # Chrpath | |
Alexander Potapenko
2014/06/04 12:32:22
Please elaborate why you need this.
| |
21 sudo apt-get install chrpath -y | |
OLD | NEW |