diff options
author | mcgrathr@chromium.org <mcgrathr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-17 23:59:01 +0000 |
---|---|---|
committer | mcgrathr@chromium.org <mcgrathr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-17 23:59:01 +0000 |
commit | fbeddf27bbc39283450f0f23db22e34af742d89a (patch) | |
tree | 9109886d49a0cb1baf96dc1e5ba417c7c5d6d0fa | |
parent | 1ce6fcbe23841127d24e1d12d7fa06584999c5bd (diff) | |
download | chromium_src-fbeddf27bbc39283450f0f23db22e34af742d89a.zip chromium_src-fbeddf27bbc39283450f0f23db22e34af742d89a.tar.gz chromium_src-fbeddf27bbc39283450f0f23db22e34af742d89a.tar.bz2 |
Default to --nacl --arm in install-build-deps.sh
These modes are needed on some bots, so make them the default
to keep the bot-making procedure straightforward.
R=bradnelson@google.com, iannucci@chromium.org, sbc@chromium.org
Review URL: https://codereview.chromium.org/142043004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245664 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | build/install-build-deps.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh index 9269dd7..4a7bcb7 100755 --- a/build/install-build-deps.sh +++ b/build/install-build-deps.sh @@ -33,6 +33,13 @@ package_exists() { apt-cache pkgnames | grep -x "$1" > /dev/null 2>&1 } +# These default to on because (some) bots need them and it keeps things +# simple for the bot setup if all bots just run the script in its default +# mode. Developers who don't want stuff they don't need installed on their +# own workstations can pass --no-arm --no-nacl when running the script. +do_inst_arm=1 +do_inst_nacl=1 + while test "$1" != "" do case "$1" in |