summaryrefslogtreecommitdiffstats
path: root/build/install-build-deps.sh
Commit message (Collapse)AuthorAgeFilesLines
* Add elfutils to install-build-deps.sh package listmcgrathr@chromium.org2011-09-301-1/+2
| | | | | | | | | | | | | | | | | The elfutils package is available on every Linux variant, is not very large, and simply adds new utilities called eu-* without affecting anything else. Packaging changes I hope to land later will need to have eu-strip available on the buildbots that do official release builds. BUG= none TEST= none R=bradnelson@google.com Review URL: http://codereview.chromium.org/8083023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103589 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: Don't bother trying to install gold via apt-get. Just always build ↵thestig@chromium.org2011-09-281-8/+2
| | | | | | | | | | our own copy. BUG=79769 TEST=none Review URL: http://codereview.chromium.org/8073002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103155 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: add a missing check for /usr/local/bin/gold/ld.thestig@chromium.org2011-09-271-5/+8
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/8036008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102860 0039d316-1c4b-4281-b951-d872f2087c98
* Change default for install 32bit libs on 64bit Linux systems to NO.sievers@chromium.org2011-09-231-2/+2
| | | | | | Review URL: http://codereview.chromium.org/8004007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102582 0039d316-1c4b-4281-b951-d872f2087c98
* Add curl to build/install-build-deps.shthakis@chromium.org2011-09-231-1/+1
| | | | | | | | | | | | | | tools/clang/scripts/update.sh tries to use curl to download over https (wget has issues with this). To make sure curl is installed on new bots, add it to install-build-deps.sh, so that we can use the https download on bots. BUG=97288 TEST=none Review URL: http://codereview.chromium.org/7966029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102566 0039d316-1c4b-4281-b951-d872f2087c98
* Adding libssl-dev to the list of packages required for chrome development.bradnelson@google.com2011-09-211-5/+5
| | | | | | | | | | | | | Chrome uses an explicit third_party copy of this library, however, temporarily the nacl_integration_tests require the system version to be installed to build sel_ldr. BUG=http://code.google.com/p/nativeclient/issues/detail?id=2265 TEST=None R=nfullagar@google.com Review URL: http://codereview.chromium.org/7977035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102188 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: Stop installing the gold linker as /usr/bin/ld. Ask users to pass ↵thestig@chromium.org2011-09-121-23/+68
| | | | | | | | | | | | -B/usr/local/gold/bin instead. Also put ld.bfd next to ld so NaCl builds correctly. BUG=79769 TEST=none Review URL: http://codereview.chromium.org/7355033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100802 0039d316-1c4b-4281-b951-d872f2087c98
* Update binutils URL and sha1sum for gold sourcesthestig@chromium.org2011-09-061-1/+1
| | | | | | | | | | | | | The ftp.gnu.org archive got rebuilt and changed some files in place under the same name but with rebuilt contents. The best binutils source archive that is now available there is the 2.21.1a file, which has a verified .sig (GPG signature) file. BUG=none TEST=none Review URL: http://codereview.chromium.org/7841002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99781 0039d316-1c4b-4281-b951-d872f2087c98
* Use chain-loading for Linux nacl_helpermcgrathr@chromium.org2011-09-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This replaces the nacl_helper_bootstrap program, dynamically-linked against nacl_helper.so, with a standalone, statically-linked nacl_helper_bootstrap program that loads the dynamic linker, instructing it in turn to load the nacl_helper program (now a PIE rather than a DSO). This avoids two problems with the old scheme: 1. The nacl_helper_bootstrap program remained in the dynamic linker's list of loaded objects, as the main executable, even though the memory where its .dynamic section had been was overwritten with the NaCl untrusted address space. Code that traverses the list of all loaded objects could thus attempt to look at pointers into this part of memory, and be led astray. 2. nacl_helper_bootstrap's large (~1G) bss segment could cause the kernel to refuse to load the program because it didn't think there was enough free memory in the system for so large an allocation of anonymous memory. The bootstrap program is kept very small by avoiding all use of libc (except for memset and integer division routines needed on ARM). It has its own custom start-up code hand-written in assembly and its own custom system call stubs done with hand-written GCC inline asm statements. To avoid the second problem, the bootstrap program no longer has a large bss. Instead, it has a special ELF segment (i.e. PT_LOAD header) that specifies no memory access, and a large (~1G) mapping size from the file. This mapping is way off the end of the file, but the kernel doesn't mind that, and since it's all a file mapping, the kernel does not do its normal memory accounting for consuming a large amount of anonymous memory. Unfortunately, it's impossible to get the linker to produce exactly the right PT_LOAD header by itself. Using a custom linker script, we get the layout exactly how we want it and a PT_LOAD header that is almost right. We then use a build-time helper program to munge one field of the PT_LOAD to make it exactly what we need. BUG= http://code.google.com/p/chromium/issues/detail?id=94147 TEST= hand-tested chromium build R=bradchen@google.com Review URL: http://codereview.chromium.org/7776034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99089 0039d316-1c4b-4281-b951-d872f2087c98
* Add ruby to the list of build dependencies so that WebKit's pretty diff utilityabarth@chromium.org2011-08-311-1/+1
| | | | | | | works on the buildbots. Review URL: http://codereview.chromium.org/7809024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99031 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 98909 - Use chain-loading for Linux nacl_helperjar@chromium.org2011-08-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This replaces the nacl_helper_bootstrap program, dynamically-linked against nacl_helper.so, with a standalone, statically-linked nacl_helper_bootstrap program that loads the dynamic linker, instructing it in turn to load the nacl_helper program (now a PIE rather than a DSO). This avoids two problems with the old scheme: 1. The nacl_helper_bootstrap program remained in the dynamic linker's list of loaded objects, as the main executable, even though the memory where its .dynamic section had been was overwritten with the NaCl untrusted address space. Code that traverses the list of all loaded objects could thus attempt to look at pointers into this part of memory, and be led astray. 2. nacl_helper_bootstrap's large (~1G) bss segment could cause the kernel to refuse to load the program because it didn't think there was enough free memory in the system for so large an allocation of anonymous memory. The bootstrap program is kept very small by avoiding all use of libc (except for memset and integer division routines needed on ARM). It has its own custom start-up code hand-written in assembly and its own custom system call stubs done with hand-written GCC inline asm statements. To avoid the second problem, the bootstrap program no longer has a large bss. Instead, it has a special ELF segment (i.e. PT_LOAD header) that specifies no memory access, and a large (~1G) mapping size from the file. This mapping is way off the end of the file, but the kernel doesn't mind that, and since it's all a file mapping, the kernel does not do its normal memory accounting for consuming a large amount of anonymous memory. Unfortunately, it's impossible to get the linker to produce exactly the right PT_LOAD header by itself. Using a custom linker script, we get the layout exactly how we want it and a PT_LOAD header that is almost right. We then use a build-time helper program to munge one field of the PT_LOAD to make it exactly what we need. BUG= http://code.google.com/p/chromium/issues/detail?id=94147 TEST= hand-tested chromium build, invoked with --nacl-linux-helper R=bradchen@google.com,mseaborn@chromium.org Review URL: http://codereview.chromium.org/7795010 TBR=mcgrathr@chromium.org Review URL: http://codereview.chromium.org/7811013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98910 0039d316-1c4b-4281-b951-d872f2087c98
* Use chain-loading for Linux nacl_helpermcgrathr@chromium.org2011-08-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This replaces the nacl_helper_bootstrap program, dynamically-linked against nacl_helper.so, with a standalone, statically-linked nacl_helper_bootstrap program that loads the dynamic linker, instructing it in turn to load the nacl_helper program (now a PIE rather than a DSO). This avoids two problems with the old scheme: 1. The nacl_helper_bootstrap program remained in the dynamic linker's list of loaded objects, as the main executable, even though the memory where its .dynamic section had been was overwritten with the NaCl untrusted address space. Code that traverses the list of all loaded objects could thus attempt to look at pointers into this part of memory, and be led astray. 2. nacl_helper_bootstrap's large (~1G) bss segment could cause the kernel to refuse to load the program because it didn't think there was enough free memory in the system for so large an allocation of anonymous memory. The bootstrap program is kept very small by avoiding all use of libc (except for memset and integer division routines needed on ARM). It has its own custom start-up code hand-written in assembly and its own custom system call stubs done with hand-written GCC inline asm statements. To avoid the second problem, the bootstrap program no longer has a large bss. Instead, it has a special ELF segment (i.e. PT_LOAD header) that specifies no memory access, and a large (~1G) mapping size from the file. This mapping is way off the end of the file, but the kernel doesn't mind that, and since it's all a file mapping, the kernel does not do its normal memory accounting for consuming a large amount of anonymous memory. Unfortunately, it's impossible to get the linker to produce exactly the right PT_LOAD header by itself. Using a custom linker script, we get the layout exactly how we want it and a PT_LOAD header that is almost right. We then use a build-time helper program to munge one field of the PT_LOAD to make it exactly what we need. BUG= http://code.google.com/p/chromium/issues/detail?id=94147 TEST= hand-tested chromium build, invoked with --nacl-linux-helper R=bradchen@google.com,mseaborn@chromium.org Review URL: http://codereview.chromium.org/7795010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98909 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: allow linking directly with Kerberos instead of using dlopen.phajdan.jr@chromium.org2011-08-241-4/+4
| | | | | | | | | | | dlopen is still the default for Google Chrome. This option is intended for Linux distro packagers. BUG=92689 Review URL: http://codereview.chromium.org/7655046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98116 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 97925 - Linux: allow linking directly with Kerberos instead of using ↵dpolukhin@chromium.org2011-08-241-4/+4
| | | | | | | | | | | | | | | | dlopen. dlopen is still the default for Google Chrome. This option is intended for Linux distro packagers. BUG=92689 Review URL: http://codereview.chromium.org/7655046 TBR=phajdan.jr@chromium.org Review URL: http://codereview.chromium.org/7719024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98028 0039d316-1c4b-4281-b951-d872f2087c98
* Added flash plugin.bevc@google.com2011-08-231-1/+4
| | | | | | Review URL: http://codereview.chromium.org/7720013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97938 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: allow linking directly with Kerberos instead of using dlopen.phajdan.jr@chromium.org2011-08-231-4/+4
| | | | | | | | | | | dlopen is still the default for Google Chrome. This option is intended for Linux distro packagers. BUG=92689 Review URL: http://codereview.chromium.org/7655046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97925 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed sha1 for gold package.bevc@google.com2011-07-091-1/+1
| | | | | | Review URL: http://codereview.chromium.org/7324036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91921 0039d316-1c4b-4281-b951-d872f2087c98
* Add libwww-perl to the list of installed packages.tony@chromium.org2011-07-081-4/+4
| | | | | | | | | | There are two WebKit layout tests that try to use the HTTP::Date perl module. This seems to be part of ubuntu-desktop, but in my chroot, I needed to manually install this package. Review URL: http://codereview.chromium.org/7237053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91899 0039d316-1c4b-4281-b951-d872f2087c98
* Updated gold to 2.21.1 and removed the patching for the older version of Gold.bevc@google.com2011-07-081-52/+2
| | | | | | Review URL: http://codereview.chromium.org/7326019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91889 0039d316-1c4b-4281-b951-d872f2087c98
* Added language_pack_fr to dev_list of packages to be installed.pschmidt@google.com2011-06-161-3/+3
| | | | | | Review URL: http://codereview.chromium.org/7187009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89385 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: Add libcups2(-dev) to install-build-deps.sh.thestig@chromium.org2011-05-211-4/+4
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6990023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86191 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: Update install-build-deps.sh for Natty and remove pre-Lucid support.thestig@chromium.org2011-05-201-19/+14
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6990006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86107 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: Install the sqlite debugging package for developers.thestig@chromium.org2011-05-181-0/+1
| | | | | | | | BUG=82894 TEST=none Review URL: http://codereview.chromium.org/6975038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85798 0039d316-1c4b-4281-b951-d872f2087c98
* Add Indic and Thai fonts to install-build-deps.sh.tony@chromium.org2011-05-031-1/+2
| | | | | | | | | | | This will make it easier for people to run webkit layout tests on Lucid. BUG=80681 Review URL: http://codereview.chromium.org/6912031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83922 0039d316-1c4b-4281-b951-d872f2087c98
* Remove lighttpd since we don't use it anymore and switch totony@chromium.org2011-04-111-10/+16
| | | | | | | | | | apache2.2-bin where available. TEST=http layout tests pass even after uninstalling apache2 Review URL: http://codereview.chromium.org/6822031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81130 0039d316-1c4b-4281-b951-d872f2087c98
* Add libsctp-dev.mbelshe@chromium.org2011-04-071-4/+5
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6814019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80812 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: change install-build-deps.sh to install gold linker from binutils 2.21.thestig@chromium.org2011-02-231-7/+57
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6567002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75790 0039d316-1c4b-4281-b951-d872f2087c98
* Chromoting: UserAuthenticator interface and its implementation for PAM.sergeyu@chromium.org2011-02-161-4/+4
| | | | | | | | | | BUG=none TEST=manual Review URL: http://codereview.chromium.org/6484002 Patch from Lambros Lambrou <lambroslambrou@chromium.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75069 0039d316-1c4b-4281-b951-d872f2087c98
* Build/install gold instead of all of binutils.thestig@chromium.org2011-02-111-2/+2
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6502009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74682 0039d316-1c4b-4281-b951-d872f2087c98
* Add a dependency on the XTest extension.ajwong@chromium.org2010-11-041-5/+7
| | | | | | | | | | | | This is needed for implementation of the host side of Chromoting for X11 so that we can synthesize user input events. BUG=none TEST=none Review URL: http://codereview.chromium.org/4112006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65094 0039d316-1c4b-4281-b951-d872f2087c98
* Allow maverick with install-build-deps.sh.tony@chromium.org2010-07-151-2/+5
| | | | | | | | | | | | The first time I ran it, I got an error and had to run apt-get install -f, then re-run install-build-deps.sh. I didn't write down the error so I don't think I can repro. It almost works, so perhaps the next person can copy down the error. Review URL: http://codereview.chromium.org/2888011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52563 0039d316-1c4b-4281-b951-d872f2087c98
* install-build-deps.sh fixes for Lucid and Chromium OS.scottbyer@chromium.org2010-07-081-18/+51
| | | | | | | | | | | Add in two extra libraries needed for building Chromium-for-Chromium OS on a fresh install Ubuntu Lucid 64-bit. Also, start checking for header differences between the 32-bit and 64-bit packages, adding those headers into the 32-bit cons'ed up package install (on Lucid Lynx, the current libcurl4-gnutls-dev package needs this). Clean up any leftover symbolic links that point nowhere. Also take any declared package conflicts and remove them from the Provides line to allow the cons'ed up package to always install (the package derived from libcurl4-gnutls-dev). BUG=none TEST=none Review URL: http://codereview.chromium.org/2865032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51863 0039d316-1c4b-4281-b951-d872f2087c98
* install-build-deps: require gold 2.20.1evan@chromium.org2010-06-301-46/+9
| | | | | | | | | | The 2.20 we currently install doesn't work at all on Lucid. I'm hoping the new one also includes the fix to http://sourceware.org/bugzilla/show_bug.cgi?id=10708 Review URL: http://codereview.chromium.org/2824041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51267 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: add gnome-keyring packages to build dependencies. It will not be a ↵mdm@chromium.org2010-06-071-9/+9
| | | | | | | | | | runtime dependency: it will be dlopen()ed to avoid that. BUG=25404 TEST=none Review URL: http://codereview.chromium.org/2700002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49110 0039d316-1c4b-4281-b951-d872f2087c98
* Adding libpulse-dev and libpulse0.scherkus@chromium.org2010-06-071-2/+8
| | | | | | | | | | | | | To build the ChromeOS version on the build-bots, outside the chroot, we need to access PulseAudio development header and library files. Patch by davej@chromium.org: http://codereview.chromium.org/2699002/show BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49097 0039d316-1c4b-4281-b951-d872f2087c98
* Add libcurl4-gnutls-dev to lib_list. (Needed by o3d breakpad)zhurunz@google.com2010-05-211-1/+2
| | | | | | Review URL: http://codereview.chromium.org/2086022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47971 0039d316-1c4b-4281-b951-d872f2087c98
* install-build-deps.sh: Add missing sudos.derat@chromium.org2010-05-171-4/+4
| | | | | | | | | | | | Some apt commands were being run as the normal user, resulting in the script dying. BUG=none TEST=gave the diff to someone; it fixed the failures for them Review URL: http://codereview.chromium.org/2137002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47458 0039d316-1c4b-4281-b951-d872f2087c98
* Typo fix for r47191.mmoss@google.com2010-05-141-1/+1
| | | | | | | | submitted for gene@chromium.org (http://codereview.chromium.org/2106001) Review URL: http://codereview.chromium.org/2127004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47237 0039d316-1c4b-4281-b951-d872f2087c98
* Added cups development package depending on the version of linux.mmoss@google.com2010-05-131-7/+14
| | | | | | | | | | | BUG=none TEST=Please check that correct cups package gets installed. [submitted for gene@chromium.org, see http://codereview.chromium.org/2106001] Review URL: http://codereview.chromium.org/2072003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47191 0039d316-1c4b-4281-b951-d872f2087c98
* Added CUPS requirement for chromium build. It is need to support printing.maruel@chromium.org2010-05-121-6/+7
| | | | | | | | | BUG=none TEST=Make sure that libcupsys2-dev package get installed. Review URL: http://codereview.chromium.org/2038011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47023 0039d316-1c4b-4281-b951-d872f2087c98
* linux: update install-build-deps for lucidevan@chromium.org2010-05-031-20/+21
| | | | | | | | | | | | Mostly minor changes. I verified that python-dev is python2.5 on a ghardy machine. While I'm at it, let's put all the 32-bit code in the same section. I don't think most users need it anymore. Review URL: http://codereview.chromium.org/1815006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46234 0039d316-1c4b-4281-b951-d872f2087c98
* Add kochi and dejavu fonts to default package list on linuxjamesr@chromium.org2010-03-261-1/+1
| | | | | | Review URL: http://codereview.chromium.org/1356002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42704 0039d316-1c4b-4281-b951-d872f2087c98
* Add support for alpha and beta versions of karmic/lucid in install-build-deps.shsatorux@chromium.org2010-03-241-1/+1
| | | | | | | | | | | | For some reason, alpha and beta releases of Ubuntu seem to use code names instead of numbers in /etc/issue. BUG=none TEST=none Review URL: http://codereview.chromium.org/1154004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42428 0039d316-1c4b-4281-b951-d872f2087c98
* Remove libdbus-glib-1-2-dbg from install deps, as hardy does not have it and ↵joth@chromium.org2010-03-111-1/+1
| | | | | | | | | | | we don't strictly need it. BUG=http://code.google.com/p/chromium/issues/detail?id=37199 TEST=none Review URL: http://codereview.chromium.org/838003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41283 0039d316-1c4b-4281-b951-d872f2087c98
* Fix up following on from r41182joth@chromium.org2010-03-111-7/+8
| | | | | | | | | | | | | | - I put the dev library in the runtime section, - I missed the runtime library (libdbus-glib-1-2) altogether - These issues were masked as apt-get couldn't resolve lib32readline-dev replacing it with lib32readline6-dev appears to solve this. BUG=http://crbug.com/37199 TEST=none Review URL: http://codereview.chromium.org/811007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41276 0039d316-1c4b-4281-b951-d872f2087c98
* Add libdbus-glib dependency into install-build-deps.shjoth@chromium.org2010-03-101-5/+5
| | | | | | | | | | | Needed as a precursor to http://codereview.chromium.org/787003 BUG=http://crbug.com/37199 TEST=None Review URL: http://codereview.chromium.org/791003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41182 0039d316-1c4b-4281-b951-d872f2087c98
* Add a dependency for python2.5-dev for linuxnirnimesh@chromium.org2010-02-211-1/+1
| | | | | | Review URL: http://codereview.chromium.org/650049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39582 0039d316-1c4b-4281-b951-d872f2087c98
* Fix install-build-deps.sh so that it does not interpret a yes-no answer in ↵yutak@chromium.org2010-01-281-1/+1
| | | | | | | | | | | reverse. BUG=none TEST=Run install-build-deps.sh, and answer "Y" to the question "Do you want me to download all packages needed to build new 32 bit package files?". It should proceed to the installation process. Review URL: http://codereview.chromium.org/549189 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37374 0039d316-1c4b-4281-b951-d872f2087c98
* Add support for UserIdleTime to Linux.zork@chromium.org2010-01-261-2/+2
| | | | | | | | | BUG=32421 TEST=none Review URL: http://codereview.chromium.org/553051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37136 0039d316-1c4b-4281-b951-d872f2087c98
* Add options to install-build-deps.sh to enable unattended mode.dkegel@google.com2010-01-261-23/+67
| | | | | | | | | BUG=30328 TEST=run with unattended options, verify no prompt Review URL: http://codereview.chromium.org/549160 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37120 0039d316-1c4b-4281-b951-d872f2087c98