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

Side by Side Diff: chrome/installer/linux/common/installer.include

Issue 902583003: Update installer files now that PDF plugin is gone. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « chrome/chrome_installer.gypi ('k') | chrome/installer/mini_installer/chrome.release » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Recursively replace @@include@@ template variables with the referenced file, 1 # Recursively replace @@include@@ template variables with the referenced file,
2 # and write the resulting text to stdout. 2 # and write the resulting text to stdout.
3 process_template_includes() { 3 process_template_includes() {
4 INCSTACK+="$1->" 4 INCSTACK+="$1->"
5 # Includes are relative to the file that does the include. 5 # Includes are relative to the file that does the include.
6 INCDIR=$(dirname $1) 6 INCDIR=$(dirname $1)
7 # Clear IFS so 'read' doesn't trim whitespace 7 # Clear IFS so 'read' doesn't trim whitespace
8 local OLDIFS="$IFS" 8 local OLDIFS="$IFS"
9 IFS='' 9 IFS=''
10 while read -r LINE 10 while read -r LINE
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 165
166 # Pepper Flash. 166 # Pepper Flash.
167 PEPPERFLASH_SRCDIR="${BUILDDIR}/PepperFlash" 167 PEPPERFLASH_SRCDIR="${BUILDDIR}/PepperFlash"
168 PEPPERFLASH_DESTDIR="${STAGEDIR}/${INSTALLDIR}/PepperFlash" 168 PEPPERFLASH_DESTDIR="${STAGEDIR}/${INSTALLDIR}/PepperFlash"
169 install -m 755 -d "${PEPPERFLASH_DESTDIR}" 169 install -m 755 -d "${PEPPERFLASH_DESTDIR}"
170 install -m 644 -s "${PEPPERFLASH_SRCDIR}/libpepflashplayer.so" \ 170 install -m 644 -s "${PEPPERFLASH_SRCDIR}/libpepflashplayer.so" \
171 "${PEPPERFLASH_DESTDIR}/" 171 "${PEPPERFLASH_DESTDIR}/"
172 install -m 644 "${PEPPERFLASH_SRCDIR}/manifest.json" \ 172 install -m 644 "${PEPPERFLASH_SRCDIR}/manifest.json" \
173 "${PEPPERFLASH_DESTDIR}/" 173 "${PEPPERFLASH_DESTDIR}/"
174 174
175 # pdf plugin
176 if [ -f "${BUILDDIR}/libpdf.so" ]; then
177 install -m 644 -s "${BUILDDIR}/libpdf.so" "${STAGEDIR}/${INSTALLDIR}/"
178 fi
179
180 # peerconnection shared library 175 # peerconnection shared library
181 if [ -f "${BUILDDIR}/lib/libpeerconnection.so" ]; then 176 if [ -f "${BUILDDIR}/lib/libpeerconnection.so" ]; then
182 install -m 755 -d "${STAGEDIR}/${INSTALLDIR}/lib/" 177 install -m 755 -d "${STAGEDIR}/${INSTALLDIR}/lib/"
183 178
184 install -m 644 -s "${BUILDDIR}/lib/libpeerconnection.so" "${STAGEDIR}/${INST ALLDIR}/lib/" 179 install -m 644 -s "${BUILDDIR}/lib/libpeerconnection.so" "${STAGEDIR}/${INST ALLDIR}/lib/"
185 fi 180 fi
186 181
187 # libc++ 182 # libc++
188 if [ -f "${BUILDDIR}/lib/libc++.so" ]; then 183 if [ -f "${BUILDDIR}/lib/libc++.so" ]; then
189 install -m 755 -d "${STAGEDIR}/${INSTALLDIR}/lib/" 184 install -m 755 -d "${STAGEDIR}/${INSTALLDIR}/lib/"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 "${STAGEDIR}/usr/share/gnome-control-center/default-apps/${PACKAGE}.xml" 246 "${STAGEDIR}/usr/share/gnome-control-center/default-apps/${PACKAGE}.xml"
252 chmod 644 "${STAGEDIR}/usr/share/gnome-control-center/default-apps/${PACKAGE}. xml" 247 chmod 644 "${STAGEDIR}/usr/share/gnome-control-center/default-apps/${PACKAGE}. xml"
253 process_template "${BUILDDIR}/installer/common/default-app-block.template" \ 248 process_template "${BUILDDIR}/installer/common/default-app-block.template" \
254 "${STAGEDIR}${INSTALLDIR}/default-app-block" 249 "${STAGEDIR}${INSTALLDIR}/default-app-block"
255 chmod 644 "${STAGEDIR}${INSTALLDIR}/default-app-block" 250 chmod 644 "${STAGEDIR}${INSTALLDIR}/default-app-block"
256 251
257 # documentation 252 # documentation
258 install -m 755 "${BUILDDIR}/${PROGNAME}.1" \ 253 install -m 755 "${BUILDDIR}/${PROGNAME}.1" \
259 "${STAGEDIR}/usr/share/man/man1/${PACKAGE}.1" 254 "${STAGEDIR}/usr/share/man/man1/${PACKAGE}.1"
260 } 255 }
OLDNEW
« no previous file with comments | « chrome/chrome_installer.gypi ('k') | chrome/installer/mini_installer/chrome.release » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698