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

Side by Side Diff: build/linux/sysroot_scripts/sysroot-creator-wheezy.sh

Issue 1803883002: Reland: Media Galleries Partial Deprecation: Remove image metadata & libexif. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove a remnant on MacOSX official build Created 4 years, 9 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
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 SCRIPT_DIR=$(cd $(dirname $0) && pwd) 6 SCRIPT_DIR=$(cd $(dirname $0) && pwd)
7 7
8 DISTRO=debian 8 DISTRO=debian
9 DIST=wheezy 9 DIST=wheezy
10 APT_REPO=http://http.us.debian.org/debian 10 APT_REPO=http://http.us.debian.org/debian
(...skipping 30 matching lines...) Expand all
41 libcups2-dev 41 libcups2-dev
42 libdbus-1-3 42 libdbus-1-3
43 libdbus-1-dev 43 libdbus-1-dev
44 libdbus-glib-1-2 44 libdbus-glib-1-2
45 libdrm2 45 libdrm2
46 libdrm-dev 46 libdrm-dev
47 libdrm-nouveau1a 47 libdrm-nouveau1a
48 libdrm-radeon1 48 libdrm-radeon1
49 libelf1 49 libelf1
50 libelf-dev 50 libelf-dev
51 libexif12
52 libexif-dev
53 libexpat1 51 libexpat1
54 libexpat1-dev 52 libexpat1-dev
55 libffi5 53 libffi5
56 libffi-dev 54 libffi-dev
57 libfontconfig1 55 libfontconfig1
58 libfontconfig1-dev 56 libfontconfig1-dev
59 libfreetype6 57 libfreetype6
60 libfreetype6-dev 58 libfreetype6-dev
61 libgcc1 59 libgcc1
62 libgconf-2-4 60 libgconf-2-4
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 x11proto-xinerama-dev 182 x11proto-xinerama-dev
185 zlib1g 183 zlib1g
186 zlib1g-dev 184 zlib1g-dev
187 " 185 "
188 186
189 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1" 187 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1"
190 DEBIAN_PACKAGES_ARM="libdrm-omap1" 188 DEBIAN_PACKAGES_ARM="libdrm-omap1"
191 DEBIAN_PACKAGES_AMD64="" 189 DEBIAN_PACKAGES_AMD64=""
192 190
193 . ${SCRIPT_DIR}/sysroot-creator.sh 191 . ${SCRIPT_DIR}/sysroot-creator.sh
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698