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

Side by Side Diff: start_devserver

Issue 2907005: Use PKG_INSTALL_MASK to prevent debug symbols from getting into the binpkg. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils.git
Patch Set: Remove duplicate mask and add a comment. Created 10 years, 5 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 | Annotate | Revision Log
« 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 1 #!/bin/bash
2 2
3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 3 # Copyright (c) 2010 The Chromium OS 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 # Start the Dev Server after making sure we are running under a chroot. 7 # Start the Dev Server after making sure we are running under a chroot.
8 8
9 . "$(dirname "$0")/common.sh" 9 . "$(dirname "$0")/common.sh"
10 10
(...skipping 15 matching lines...) Expand all
26 26
27 CLIENT_PREFIX= 27 CLIENT_PREFIX=
28 if [ "${FLAGS_update_engine}" -eq "${FLAGS_TRUE}" ] ; then 28 if [ "${FLAGS_update_engine}" -eq "${FLAGS_TRUE}" ] ; then
29 echo "!!! devserver will only handle request from update_engine" 29 echo "!!! devserver will only handle request from update_engine"
30 # --client_prefix flag is defined in devserver.py 30 # --client_prefix flag is defined in devserver.py
31 CLIENT_PREFIX="--client_prefix ChromeOSUpdateEngine" 31 CLIENT_PREFIX="--client_prefix ChromeOSUpdateEngine"
32 else 32 else
33 echo "!!! devserver will only handle request from memento_updater" 33 echo "!!! devserver will only handle request from memento_updater"
34 fi 34 fi
35 35
36 # Set PKG_INSTALL_MASK if it's not set already.
37 if [ -z "${PKG_INSTALL_MASK+x}" ]; then
38 export PKG_INSTALL_MASK="${DEFAULT_INSTALL_MASK}"
39 fi
40 echo PKG_INSTALL_MASK=$PKG_INSTALL_MASK
41
36 cd ${GCLIENT_ROOT}/src/platform/dev && python devserver.py ${CLIENT_PREFIX} $* 42 cd ${GCLIENT_ROOT}/src/platform/dev && python devserver.py ${CLIENT_PREFIX} $*
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