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

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

Issue 905703003: Instrumented libraries: drop liboverlay-scrollbar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: build deps Created 5 years, 10 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
« no previous file with comments | « no previous file | third_party/instrumented_libraries/instrumented_libraries.gyp » ('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/bash -e 1 #!/bin/bash -e
2 2
3 # Copyright 2014 The Chromium Authors. All rights reserved. 3 # Copyright 2014 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 build dependencies of packages which we instrument. 7 # Script to install build dependencies of packages which we instrument.
8 8
9 # Enable source repositories in Goobuntu. 9 # Enable source repositories in Goobuntu.
10 if hash goobuntu-config 2> /dev/null 10 if hash goobuntu-config 2> /dev/null
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 libxdmcp6 \ 52 libxdmcp6 \
53 libxext6 \ 53 libxext6 \
54 libxfixes3 \ 54 libxfixes3 \
55 libxi6 \ 55 libxi6 \
56 libxinerama1 \ 56 libxinerama1 \
57 libxrandr2 \ 57 libxrandr2 \
58 libxrender1 \ 58 libxrender1 \
59 libxss1 \ 59 libxss1 \
60 libxtst6 \ 60 libxtst6 \
61 nss \ 61 nss \
62 overlay-scrollbar \
63 pango1.0 \ 62 pango1.0 \
64 pulseaudio \ 63 pulseaudio \
65 udev \ 64 udev \
66 zlib1g \ 65 zlib1g \
67 brltty" 66 brltty"
68 67
69 precise_specific_packages="libtasn1-3" 68 precise_specific_packages="libtasn1-3"
70 trusty_specific_packages="\ 69 trusty_specific_packages="\
71 libtasn1-6 \ 70 libtasn1-6 \
72 harfbuzz" 71 harfbuzz
72 libsecret"
Alexander Potapenko 2015/02/10 08:58:15 This line seems unrelated to the change.
earthdok 2015/02/10 11:53:38 It is.
73 73
74 ubuntu_release=$(lsb_release -cs) 74 ubuntu_release=$(lsb_release -cs)
75 75
76 if test "$ubuntu_release" = "precise" ; then 76 if test "$ubuntu_release" = "precise" ; then
77 packages="$common_packages $precise_specific_packages" 77 packages="$common_packages $precise_specific_packages"
78 else 78 else
79 packages="$common_packages $trusty_specific_packages" 79 packages="$common_packages $trusty_specific_packages"
80 fi 80 fi
81 81
82 sudo apt-get build-dep -y $packages 82 sudo apt-get build-dep -y $packages
83 83
84 # Extra build deps for pulseaudio, which apt-get build-dep may fail to install 84 # Extra build deps for pulseaudio, which apt-get build-dep may fail to install
85 # for reasons which are not entirely clear. 85 # for reasons which are not entirely clear.
86 sudo apt-get install libltdl3-dev libjson0-dev \ 86 sudo apt-get install libltdl3-dev libjson0-dev \
87 libsndfile1-dev libspeexdsp-dev \ 87 libsndfile1-dev libspeexdsp-dev \
88 chrpath -y # Chrpath is required by fix_rpaths.sh. 88 chrpath -y # Chrpath is required by fix_rpaths.sh.
89 89
90 if test "$ubuntu_release" = "trusty" ; then 90 if test "$ubuntu_release" = "trusty" ; then
91 # On Trusty, build deps for some of the instrumented packages above conflict 91 # On Trusty, build deps for some of the instrumented packages above conflict
92 # with Chromium's build deps. In particular: 92 # with Chromium's build deps. In particular:
93 # zlib1g and libffi remove gcc-4.8 in favor of gcc-multilib, 93 # zlib1g and libffi remove gcc-4.8 in favor of gcc-multilib,
94 # libglib2.0-0 removes libelf in favor of libelfg0. 94 # libglib2.0-0 removes libelf in favor of libelfg0.
95 # We let Chromium's build deps take priority. So, run Chromium's 95 # We let Chromium's build deps take priority. So, run Chromium's
96 # install-build-deps.sh to reinstall those that have been removed. 96 # install-build-deps.sh to reinstall those that have been removed.
97 $(dirname ${BASH_SOURCE[0]})/../../build/install-build-deps.sh --no-prompt 97 $(dirname ${BASH_SOURCE[0]})/../../build/install-build-deps.sh --no-prompt
98 fi 98 fi
OLDNEW
« no previous file with comments | « no previous file | third_party/instrumented_libraries/instrumented_libraries.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698