summaryrefslogtreecommitdiffstats
path: root/build
Commit message (Collapse)AuthorAgeFilesLines
* Build selenium tests on the bots. This test is running on the webkit.org xp ↵nsylvain@chromium.org2010-04-081-0/+1
| | | | | | | | perf bot. Review URL: http://codereview.chromium.org/1621007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43918 0039d316-1c4b-4281-b951-d872f2087c98
* Add interactive ui tests to the chromeos builder.nsylvain@chromium.org2010-04-071-0/+1
| | | | | | Review URL: http://codereview.chromium.org/1508023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43834 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: simplify dump_app_syms since newer versions of Breakpad no longer ↵thestig@chromium.org2010-04-061-20/+6
| | | | | | | | | | generates different signatures for stripped/unstripped binaries. BUG=none TEST=none Review URL: http://codereview.chromium.org/1627001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43724 0039d316-1c4b-4281-b951-d872f2087c98
* Update dump_symbols to match new file_id code.agl@chromium.org2010-04-051-4/+9
| | | | | | | | | | | | The way that breakpad calculates module ids has changed so we need to change our tools to match. (Note. The original change accidently landed with another change in r43662 so this is just the review changes.) http://codereview.chromium.org/1508019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43672 0039d316-1c4b-4281-b951-d872f2087c98
* Fix breakpad (again)agl@chromium.org2010-04-051-2/+22
| | | | | | | I had left over .o files in my out/ directory so the last change didn't catch everything. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43662 0039d316-1c4b-4281-b951-d872f2087c98
* Solaris: various edits towards compiling Chromium on Solaris. Changed ↵evan@chromium.org2010-04-012-4/+7
| | | | | | | | | | | | __Solaris__ to __sun. Defined NAME_MAX as MAXNAMLEN for systems where it is undefined. BUG=30101 TEST=compiles Patch by James Choi <jchoi42 at pha.jhu.edu> Review URL: http://codereview.chromium.org/652166 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43297 0039d316-1c4b-4281-b951-d872f2087c98
* Make build-bisect script work on win.nirnimesh@chromium.org2010-03-311-33/+62
| | | | | | | | | | | | Unzip using python rather than using the unzip command which might not be available on windows. TEST=NONE BUG=NONE Review URL: http://codereview.chromium.org/1549006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43160 0039d316-1c4b-4281-b951-d872f2087c98
* Disable executable stack on Linux.willchan@chromium.org2010-03-301-1/+1
| | | | | | | | | | | | | | | | | | BUG=29824 TEST= william@penguin:~/src/chromium2/src$ out/Debug/chrome --user-data-dir=/tmp/foo& [2] 28679 william@penguin:~/src/chromium2/src$ cat /proc/28679/maps | grep stack 7fff3fc4d000-7fff3fc63000 rw-p 00000000 00:00 0 [stack] william@penguin:~/src/chromium2/src$ eu-readelf -l out/Debug/chrome | grep STACK GNU_STACK 0x000000 0x0000000000000000 0x0000000000000000 0x000000 0x000000 RW 0x8 eu-readelf shows that the GNU_STACK segment indicates the stack should be RW (no X for execute). `cat/proc/{pid}/maps | grep stack` shows that the stack mapping is indeed RW (if the dynamic linker encounters a shared library that needs an executable stack, it will globally enable executable stacks. Review URL: http://codereview.chromium.org/1555002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43150 0039d316-1c4b-4281-b951-d872f2087c98
* Flip seccomp sandbox back off, now that we have some perf numbers.evan@chromium.org2010-03-301-3/+3
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43140 0039d316-1c4b-4281-b951-d872f2087c98
* linux: enable seccomp sandbox by defaultevan@chromium.org2010-03-301-0/+7
| | | | | | | | | | | | | | | It seems the best way to keep the seccomp sandbox working is to have everyone's development environment have it on by default. So we turn on the seccomp sandbox, but only for non-official builds. If the build-time flag is set: --disable-seccomp-sandbox turns it off. If the build-time flag is *not* set: --enable-seccomp-sandbox turns it on. BUG=36133 Review URL: http://codereview.chromium.org/1558003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43122 0039d316-1c4b-4281-b951-d872f2087c98
* Added GPU unit tests to win, mac and linux builds. They aren't running yet.apatrick@chromium.org2010-03-291-2/+5
| | | | | | | | | TEST=trybots BUG=none Review URL: http://codereview.chromium.org/1577001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43013 0039d316-1c4b-4281-b951-d872f2087c98
* Fix official build as per Microsoft recommendation.maruel@chromium.org2010-03-271-1/+1
| | | | | | | | | | https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=521439 BUG=LTCG build breaks TEST=none Review URL: http://codereview.chromium.org/1507003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42890 0039d316-1c4b-4281-b951-d872f2087c98
* Don't strip main from the browser or helper app executables. This helpsmark@chromium.org2010-03-261-5/+25
| | | | | | | | | | | backtraces of stripped executables look more reasonable. BUG=39232 TEST=gdb backtrace in a stripped executable with no symbols loaded should show thread 0 beginning in main Review URL: http://codereview.chromium.org/1460001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42817 0039d316-1c4b-4281-b951-d872f2087c98
* Added a test for pepper3d. It ensures that we can successfully load a pepper ↵alokp@chromium.org2010-03-261-1/+0
| | | | | | | | 3d plugin and render. Review URL: http://codereview.chromium.org/1073003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42793 0039d316-1c4b-4281-b951-d872f2087c98
* In build/gyp_chromium, if CHROMIUM_GYP_SYNTAX_CHECK is set to 1, run gyp ↵rsesek@chromium.org2010-03-261-0/+6
| | | | | | | | | | | | | | with --check. This is to eventually run gyp with syntax checking enabled on the buildbots. Enabling that will come in a later CL after all gyp errors are fixed. BUG=none TEST=none Review URL: http://codereview.chromium.org/1435001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42788 0039d316-1c4b-4281-b951-d872f2087c98
* Add the linux_use_heapchecker GYP variable that should turn the tcmalloc heapglider@chromium.org2010-03-262-0/+14
| | | | | | | lleak checker on and off. Review URL: http://codereview.chromium.org/1334002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42740 0039d316-1c4b-4281-b951-d872f2087c98
* Build fix. Revert -Wextra.evan@chromium.org2010-03-261-1/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42709 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
* linux: turn on -Wextraevan@chromium.org2010-03-261-2/+1
| | | | | | | | | | | | | | This is a followup to an earlier change (r38266) which did most of the warning-related cleanup. This one just flips the flag, and fixes some new warnings that crept in during the window while the flag was off. Second try, now with some libpng fixes. BUG=34160 Review URL: http://codereview.chromium.org/1320011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42700 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "linux: turn on -Wextra"evan@chromium.org2010-03-251-1/+2
| | | | | | | | Compiled locally and on trybots but failed on builder?! This reverts commit r42688. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42689 0039d316-1c4b-4281-b951-d872f2087c98
* linux: turn on -Wextraevan@chromium.org2010-03-251-2/+1
| | | | | | | | | | | | This is a followup to an earlier change (r38266) which did most of the warning-related cleanup. This one just flips the flag, and fixes some new warnings that crept in during the window while the flag was off. BUG=34160 Review URL: http://codereview.chromium.org/597023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42688 0039d316-1c4b-4281-b951-d872f2087c98
* Remove Oriya from the list of UI languages for now because we're not getting ↵jshin@chromium.org2010-03-251-3/+3
| | | | | | | | | | | | Oriya translation updated any more. BUG=37562 TEST=On Windows, 'chrome --lang=or' will bring up English Chrome. Review URL: http://codereview.chromium.org/1144001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42655 0039d316-1c4b-4281-b951-d872f2087c98
* Support sending a sliced file in chromium.jianli@chromium.org2010-03-241-0/+1
| | | | | | | | | BUG=none TEST=The WebKit Layout test. Review URL: http://codereview.chromium.org/594036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42559 0039d316-1c4b-4281-b951-d872f2087c98
* Fix some gyp errors found with --check.rsesek@chromium.org2010-03-241-6/+1
| | | | | | | | | | Running check will error out until NaCl problems are fixed (CL pending). TEST=src/build/gyp_chromium --check Review URL: http://codereview.chromium.org/1239002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42547 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
* Add one build target for TSan/Windows buildtimurrrr@chromium.org2010-03-231-0/+14
| | | | | | Review URL: http://codereview.chromium.org/1084015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42325 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the grd clobber script on Windows.phajdan.jr@chromium.org2010-03-181-67/+0
| | | | | | | | | | | | | | Now that we have more and more proper grd dependencies in place, this script may just do more harm than good by causing spurious rebuilds. Additionally, it horked the build today. TEST=none BUG=17706 Review URL: http://codereview.chromium.org/1019007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41947 0039d316-1c4b-4281-b951-d872f2087c98
* Enable the touch events feature.gdk@chromium.org2010-03-151-0/+3
| | | | | | | | | BUG=36415 TEST=fast/events/touch Review URL: http://codereview.chromium.org/836001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41620 0039d316-1c4b-4281-b951-d872f2087c98
* Create a toplevel gfx/ dir and seed it with icon_util.ben@chromium.org2010-03-131-0/+5
| | | | | | | | | | TBR=darin BUG=none TEST=none Review URL: http://codereview.chromium.org/915002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41528 0039d316-1c4b-4281-b951-d872f2087c98
* Enable TCMalloc on Linux by default.willchan@chromium.org2010-03-121-1/+1
| | | | | | | | BUG=36687 Review URL: http://codereview.chromium.org/854005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41457 0039d316-1c4b-4281-b951-d872f2087c98
* First cut at implementing wifi bindigns for linux, using glib-dbus to ↵joth@chromium.org2010-03-121-17/+17
| | | | | | | | | | | | | | | NetworkManager NOTE: Adds a new build dependency on dbus-glib, on ubuntu you can meet this with: $ sudo aptitude install dbus-glib-1-dev BUG=http://crbug.com/37199 TEST=use browser with --enable-geolocation Review URL: http://codereview.chromium.org/787003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41430 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
* Support Xcode 3.2.2 (prerelease) for release-mode builds.mark@chromium.org2010-03-101-18/+33
| | | | | | | | | | The UUID format displayed by otool has changed. BUG=35162 TEST=Build in release mode with Xcode 3.2.2 (prerelease) Review URL: http://codereview.chromium.org/833001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41200 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
* chromeos: adding session and emit_login_prompt_ready as deps to chromeos_builderpiman@chromium.org2010-03-101-1/+2
| | | | | | Review URL: http://codereview.chromium.org/792002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41118 0039d316-1c4b-4281-b951-d872f2087c98
* build-bisect: don't crash on bad input to the good/bad promptevan@chromium.org2010-03-101-6/+6
| | | | | | Review URL: http://codereview.chromium.org/786001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41105 0039d316-1c4b-4281-b951-d872f2087c98
* Add a gyp target for Xext to linux/system so that Views can depend on it. A ↵davemoore@chromium.org2010-03-101-0/+20
| | | | | | | | recent change added a code dependency within Views on linux on this library. Chrome was linking with it but other Views apps (candidate_window) weren't Review URL: http://codereview.chromium.org/758002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41097 0039d316-1c4b-4281-b951-d872f2087c98
* Move apply_locales.py from src/chrome/tools/build/ to src/build/.tony@chromium.org2010-03-091-0/+45
| | | | | | | | src/app shouldn't depend on src/chrome and I need to break these dependencies for some upstreaming work. Review URL: http://codereview.chromium.org/668249 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40985 0039d316-1c4b-4281-b951-d872f2087c98
* linux (sysroot): force prefix=/usr in pkg-configpiman@chromium.org2010-03-051-1/+1
| | | | | | | | | | This lets us use portage-based cross-compiled sysroots, that force the prefix to be an absolute path within the portage chroot. In particular that lets us build the ARM sysroot using the Chrome OS build system. Ubuntu-based sysroots already have prefix=/usr, so this is a no-op in that case. Review URL: http://codereview.chromium.org/669139 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40712 0039d316-1c4b-4281-b951-d872f2087c98
* ARM: add arm_fpu option to specify which version of vfp to usepiman@chromium.org2010-03-051-1/+5
| | | | | | Review URL: http://codereview.chromium.org/669131 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40699 0039d316-1c4b-4281-b951-d872f2087c98
* Yet another try to hotfix the ARM builbots. Sigh.thestig@chromium.org2010-03-041-2/+2
| | | | | | | | | BUG=none TEST=ARM buildbots go green? TBR=zelidrag Review URL: http://codereview.chromium.org/668069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40635 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore missing python library when detecting python architecture and just ↵thestig@chromium.org2010-03-041-4/+8
| | | | | | | | | | | return unknown, which should disable building pyauto. The ARM buildbots have an incorrect python_ver set. BUG=none TEST=ARM buildbots go green. TBR=zelidrag Review URL: http://codereview.chromium.org/669071 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40632 0039d316-1c4b-4281-b951-d872f2087c98
* Detect python version using /usr/lib/libpython$(ver).so.1.0 instead of ↵thestig@chromium.org2010-03-042-3/+3
| | | | | | | | | | | /usr/bin/python$(ver). /usr/bin/python may not be installed, i.e. on ARM buildbots. BUG=none TEST=ARM buildbots go green. TBR=zelidrag Review URL: http://codereview.chromium.org/669069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40631 0039d316-1c4b-4281-b951-d872f2087c98
* Build pyauto only if the architecture of python binary matches.thestig@chromium.org2010-03-042-3/+44
| | | | | | | | BUG=none TEST=Building 32-bit pyauto on 64-bit Linux with a 32-bit sysroot works. Review URL: http://codereview.chromium.org/660443 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40630 0039d316-1c4b-4281-b951-d872f2087c98
* Add nacl_ui_tests to the mac target, since we will be runningnsylvain@chromium.org2010-03-031-0/+2
| | | | | | | | the tests on mac soon. Review URL: http://codereview.chromium.org/664004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40530 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed pyauto build for chromeos. Added proper sysroot and ability to specify ↵zelidrag@chromium.org2010-03-011-0/+4
| | | | | | | | | | | python version. TEST=none BUG=none Review URL: http://codereview.chromium.org/661218 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40319 0039d316-1c4b-4281-b951-d872f2087c98
* Add candidate_window to chromeos_builder target.satorux@chromium.org2010-03-011-1/+2
| | | | | | | | | | | | | | This is to get back candidate_window binary in the snapshots of chromium for chromium os that can be found at http://build.chromium.org/buildbot/snapshots/chromium-rel-linux-chromiumos/ TEST=manually BUG=crosbug.com/1708 Review URL: http://codereview.chromium.org/660265 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40259 0039d316-1c4b-4281-b951-d872f2087c98
* Adding in missing tests to make chromeos build on waterfall go green.bradnelson@google.com2010-02-271-1/+16
| | | | | | | | | | BUG=None TEST=None TBR=jiesun Review URL: http://codereview.chromium.org/660248 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40231 0039d316-1c4b-4281-b951-d872f2087c98
* Working around gyp issue 137 in scons emitter.bradnelson@google.com2010-02-271-1/+6
| | | | | | | | | | | | | | | | The scons generator currently does not correctly handle the case in which you have a target with no sources (for instance all the mock targets used for the bots). So far this has not been an issue because these mock targets were only used for Windows and Mac. jiesun's recent addition of a chromeos_builder target caused this issue to manifest itself. BUG=None TEST=None TBR=jiesuN Review URL: http://codereview.chromium.org/661249 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40229 0039d316-1c4b-4281-b951-d872f2087c98