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

Side by Side Diff: chrome/installer/linux/sysroot_scripts/sysroot-creator-trusty.sh

Issue 674703002: Linux: Dynamically load libudev. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scoped_udev
Patch Set: rebase to head, which includes third_party/libudev already Created 6 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
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=$(dirname $0) 6 SCRIPT_DIR=$(dirname $0)
7 7
8 DIST=trusty 8 DIST=trusty
9 9
10 # This is where we get all the debian packages from. 10 # This is where we get all the debian packages from.
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 libpulse-dev \ 115 libpulse-dev \
116 libpulse-mainloop-glib0 \ 116 libpulse-mainloop-glib0 \
117 libselinux1 \ 117 libselinux1 \
118 libspeechd2 \ 118 libspeechd2 \
119 libspeechd-dev \ 119 libspeechd-dev \
120 libssl1.0.0 \ 120 libssl1.0.0 \
121 libssl-dev \ 121 libssl-dev \
122 libstdc++6 \ 122 libstdc++6 \
123 libstdc++-4.8-dev \ 123 libstdc++-4.8-dev \
124 libtasn1-6 \ 124 libtasn1-6 \
125 libudev1 \
126 libudev-dev \
127 libx11-6 \ 125 libx11-6 \
128 libx11-dev \ 126 libx11-dev \
129 libx11-xcb1 \ 127 libx11-xcb1 \
130 libxau6 \ 128 libxau6 \
131 libxau-dev \ 129 libxau-dev \
132 libxcb1 \ 130 libxcb1 \
133 libxcb1-dev \ 131 libxcb1-dev \
134 libxcb-glx0 \ 132 libxcb-glx0 \
135 libxcb-render0 \ 133 libxcb-render0 \
136 libxcb-render0-dev \ 134 libxcb-render0-dev \
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 x11proto-record-dev \ 173 x11proto-record-dev \
176 x11proto-render-dev \ 174 x11proto-render-dev \
177 x11proto-scrnsaver-dev \ 175 x11proto-scrnsaver-dev \
178 x11proto-xext-dev \ 176 x11proto-xext-dev \
179 zlib1g \ 177 zlib1g \
180 zlib1g-dev" 178 zlib1g-dev"
181 179
182 DEBIAN_PACKAGES_X86="libquadmath0" 180 DEBIAN_PACKAGES_X86="libquadmath0"
183 181
184 . ${SCRIPT_DIR}/sysroot-creator.sh 182 . ${SCRIPT_DIR}/sysroot-creator.sh
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698