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

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

Issue 1411943004: Remove mscorefonts from install-build-deps.sh, we do not need it (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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 | 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
1 #!/bin/bash -e 1 #!/bin/bash -e
2 2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 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 everything needed to build chromium (well, ideally, anyway) 7 # Script to install everything needed to build chromium (well, ideally, anyway)
8 # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions 8 # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions
9 # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit 9 # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit
10 10
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 if $(dpkg-query -Wf'${Status}' libgl1-mesa-glx${variant} 2>/dev/null | \ 182 if $(dpkg-query -Wf'${Status}' libgl1-mesa-glx${variant} 2>/dev/null | \
183 grep -q " ok installed"); then 183 grep -q " ok installed"); then
184 mesa_variant="${variant}" 184 mesa_variant="${variant}"
185 fi 185 fi
186 done 186 done
187 dev_list="${dev_list} libgbm-dev${mesa_variant} 187 dev_list="${dev_list} libgbm-dev${mesa_variant}
188 libgles2-mesa-dev${mesa_variant} libgl1-mesa-dev${mesa_variant} 188 libgles2-mesa-dev${mesa_variant} libgl1-mesa-dev${mesa_variant}
189 mesa-common-dev${mesa_variant}" 189 mesa-common-dev${mesa_variant}"
190 nacl_list="${nacl_list} libgl1-mesa-glx${mesa_variant}:i386" 190 nacl_list="${nacl_list} libgl1-mesa-glx${mesa_variant}:i386"
191 191
192 # Some package names have changed over time
193 if package_exists ttf-mscorefonts-installer; then
194 dev_list="${dev_list} ttf-mscorefonts-installer"
195 else
196 dev_list="${dev_list} msttcorefonts"
197 fi
198 if package_exists libnspr4-dbg; then 192 if package_exists libnspr4-dbg; then
199 dbg_list="${dbg_list} libnspr4-dbg libnss3-dbg" 193 dbg_list="${dbg_list} libnspr4-dbg libnss3-dbg"
200 lib_list="${lib_list} libnspr4 libnss3" 194 lib_list="${lib_list} libnspr4 libnss3"
201 else 195 else
202 dbg_list="${dbg_list} libnspr4-0d-dbg libnss3-1d-dbg" 196 dbg_list="${dbg_list} libnspr4-0d-dbg libnss3-1d-dbg"
203 lib_list="${lib_list} libnspr4-0d libnss3-1d" 197 lib_list="${lib_list} libnspr4-0d libnss3-1d"
204 fi 198 fi
205 if package_exists libjpeg-dev; then 199 if package_exists libjpeg-dev; then
206 dev_list="${dev_list} libjpeg-dev" 200 dev_list="${dev_list} libjpeg-dev"
207 else 201 else
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 # only contains libcrypto.so.1.0.0 and not the symlink needed for 447 # only contains libcrypto.so.1.0.0 and not the symlink needed for
454 # linking (libcrypto.so). 448 # linking (libcrypto.so).
455 create_library_symlink /lib/i386-linux-gnu/libcrypto.so.1.0.0 \ 449 create_library_symlink /lib/i386-linux-gnu/libcrypto.so.1.0.0 \
456 /usr/lib/i386-linux-gnu/libcrypto.so 450 /usr/lib/i386-linux-gnu/libcrypto.so
457 451
458 create_library_symlink /lib/i386-linux-gnu/libssl.so.1.0.0 \ 452 create_library_symlink /lib/i386-linux-gnu/libssl.so.1.0.0 \
459 /usr/lib/i386-linux-gnu/libssl.so 453 /usr/lib/i386-linux-gnu/libssl.so
460 else 454 else
461 echo "Skipping symbolic links for NaCl." 455 echo "Skipping symbolic links for NaCl."
462 fi 456 fi
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