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

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) 2014 The Chromium Authors. All rights reserved.
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 | \
11 sed "s;\s*'<(_sanitizer_type)-\(.*\)',;\1;" | sort | uniq | \
12 xargs sudo apt-get build-dep -y
13
14 # Extra build deps for pulseaudio, which apt-get build-dep may fail to install
15 # for reasons which are not entirely clear.
16 sudo apt-get install libltdl3-dev libjson0-dev \
17 libsndfile1-dev libspeexdsp-dev \
18 chrpath -y # Chrpath is required by fix_rpaths.sh.
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