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

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

Issue 315563005: Instrumented libraries: add a script to install build deps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
(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
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