OLD | NEW |
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 |
11 then | 11 then |
12 sudo goobuntu-config set include_deb_src true | 12 sudo goobuntu-config set include_deb_src true |
13 fi | 13 fi |
14 | 14 |
15 # TODO(earthdok): find a way to pull the list from the build config. | 15 # TODO(eugenis): find a way to pull the list from the build config. |
16 common_packages="\ | 16 common_packages="\ |
17 atk1.0 \ | 17 atk1.0 \ |
18 dee \ | 18 dee \ |
19 freetype \ | 19 freetype \ |
20 libappindicator1 \ | 20 libappindicator1 \ |
21 libasound2 \ | 21 libasound2 \ |
22 libcairo2 \ | 22 libcairo2 \ |
23 libcap2 \ | 23 libcap2 \ |
24 libcups2 \ | 24 libcups2 \ |
25 libdbus-1-3 \ | 25 libdbus-1-3 \ |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
OLD | NEW |