buildbot | 1 Oct 2009 01:20

buildbot failure in Chromium on Linux Tests (dbg)(1), revision 27678

http://build.chromium.org/buildbot/waterfall/

Automatically closing tree for "googleurl_unittests" on "Linux Tests (dbg)(1)"

http://build.chromium.org/buildbot/waterfall/builders/Linux%20Tests%20%28dbg%29%281%29/builds/2157

Revision: 27678
Blame list: jhawkins <at> chromium.org

Linux Tests (dbg)(1)
Build 2157
update scripts
stdio
update
stdio
extract build
stdio
check deps
stdio
ui_tests
21 disabled
stdio
googleurl_unittests
crashed or hung
stdio

Changed by: jhawkins <at> chromium.org
Changed at: Wed 30 Sep 2009 16:01:33
Branch: src
Revision: 27678

Changed files:

  • base/waitable_event_win.cc
Comments: Coverity: Remove a check that can never be true. result is unsigned, so it can't be less than 0. CID=577 BUG=none TEST=none Review URL: http://codereview.chromium.org/249049
--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev <at> googlegroups.com
View archives, change email options, or unsubscribe:
    http://groups.google.com/group/chromium-dev

-~----------~----~----~----~------~----~------~--~---

James Robinson | 1 Oct 2009 01:56
Picon
Favicon

Re: [Memory] in TCMalloc, more careful handling of VirtualAlloc commit via SystemAlloc

On Wed, Sep 30, 2009 at 2:28 PM, James Robinson <jamesr <at> google.com> wrote:
On Wed, Sep 30, 2009 at 11:29 AM, Anton Muhin <antonm <at> chromium.org> wrote:
On Wed, Sep 30, 2009 at 10:27 PM, Mike Belshe <mbelshe <at> google.com> wrote:
>
>
> On Wed, Sep 30, 2009 at 11:24 AM, Anton Muhin <antonm <at> chromium.org> wrote:
>>
>> On Wed, Sep 30, 2009 at 10:17 PM, Mike Belshe <mbelshe <at> google.com> wrote:
>> > On Wed, Sep 30, 2009 at 11:05 AM, Anton Muhin <antonm <at> chromium.org>
>> > wrote:
>> >>
>> >> On Wed, Sep 30, 2009 at 9:58 PM, Mike Belshe <mbelshe <at> google.com>
>> >> wrote:
>> >> > On Wed, Sep 30, 2009 at 10:48 AM, Anton Muhin <antonm <at> google.com>
>> >> > wrote:
>> >> >>
>> >> >> On Wed, Sep 30, 2009 at 9:39 PM, Jim Roskind <jar <at> google.com> wrote:
>> >> >> > If you're not interested in TCMalloc customization for Chromium,
>> >> >> > you
>> >> >> > should
>> >> >> > stop reading now.
>> >> >> > This post is meant to gather some discussion on a topic before I
>> >> >> > code
>> >> >> > and
>> >> >> > land a change.
>> >> >> > MOTIVATION
>> >> >> > We believe poor memory utilization is at the heart of a lot of
>> >> >> > jank
>> >> >> > problems.  Such problems may be difficult to repro in short
>> >> >> > controlled
>> >> >> > benchmarks, but our users are telling us we have problems, so we
>> >> >> > know
>> >> >> > we
>> >> >> > have problems.  As a result, we need to be more conservative in
>> >> >> > memory
>> >> >> > utilization and handling.
>> >> >> > SUMMARY OF CHANGE
>> >> >> > I'm thinking of changing our TCMalloc so that when a span is freed
>> >> >> > into
>> >> >> > TCMalloc's free list, and it gets coalesced with an adjacent span
>> >> >> > that
>> >> >> > is
>> >> >> > already decommitted, that the coalesced span should be entirely
>> >> >> > decommitted
>> >> >> > (as opposed to our current customized performance of committing
>> >> >> > the
>> >> >> > entire
>> >> >> > span).
>> >> >> > This proposed policy was put in place previously by Mike, but
>> >> >> > (reportedly)
>> >> >> > caused a 3-5% perf regression in V8.  I believe AntonM changed
>> >> >> > that
>> >> >> > policy
>> >> >> > to what we have currently, where always ensure full commitment of
>> >> >> > a
>> >> >> > coalesced span (regaining V8 performance on a benchmark).
>> >> >>
>> >> >> The immediate question and plea.  Question: how can we estimate
>> >> >> performance implications of the change?  Yes, we have some internal
>> >> >> benchmarks which could be used for that (they release memory
>> >> >> heavily).
>> >> >>  Anything else?
>> >> >>
>> >> >> Plea: please, do not regress DOM performance unless there are really
>> >> >> compelling reasons.  And even in this case :)
>> >> >
>> >> > Anton -
>> >> > All evidence from user complaints and bug reports are that Chrome
>> >> > uses
>> >> > too
>> >> > much memory.  If you load Chrome on a 1GB system, you can feel it
>> >> > yourself.
>> >> >  Unfortunately, we have yet to build a reliable swapping benchmark.
>> >> >  By
>> >> > allowing tcmalloc to accumulate large chunks of unused pages, we
>> >> > increase
>> >> > the chance that paging will occur on the system.  But because paging
>> >> > is
>> >> > a
>> >> > system-wide activity, it can hit our various processes in
>> >> > unpredictable
>> >> > ways
>> >> > - and this leads to jank.  I think the jank is worse than the
>> >> > benchmark
>> >> > win.
>> >> > I wish we had a better way to quantify the damage caused by paging.
>> >> >  Jim
>> >> > and
>> >> > others are working on that.
>> >> > But it's clear to me that we're just being a memory pig for what is
>> >> > really a
>> >> > modest gain on a semi-obscure benchmark right now.  Using the current
>> >> > algorithms, we have literally multi-hundred megabyte memory usage
>> >> > swings
>> >> > in
>> >> > exchange for 3% on a benchmark.  Don't you agree this is the wrong
>> >> > tradeoff?
>> >> >  (DOM benchmark grows to 500+MB right now; when you switch tabs it
>> >> > drops
>> >> > to
>> >> > <100MB).  Other pages have been witnessed which have similar behavior
>> >> > (loading the histograms page).
>> >> > We may be able to put in some algorithms which are more aware of the
>> >> > current
>> >> > available memory going forward, but I agree with Jim that there will
>> >> > be
>> >> > a
>> >> > lot of negative effects as long as we continue to have such large
>> >> > memory
>> >> > swings.
>> >>
>> >> Mike, I am completely agree that we should reduce memory usage.  On
>> >> the other hand speed was always one of Chrome trademarks.  My feeling
>> >> is more committed pages in free list make us faster (but yes, there is
>> >> paging etc.).  That's exactly the reason I asked for some way to
>> >> quantify quality of different approaches, esp. given classic memory
>> >> vs. speed dilemma, ideally (imho) both speed and memory usage should
>> >> be considered.
>> >
>> > The team is working on benchmarks.
>> > I think the evidence of paging is pretty overwhelming.
>> > Paging and jank is far worse than the small perf boost on dom node
>> > creation.
>> >  I don't believe the benchmark in question is a significant driver of
>> > primary performance.  Do you?
>>
>> To some extent.  Just to make it clear: I am not insisting, if
>> consensus is we should trade performance in DOM for reduced memory
>> usage in this case, that's fine.  I only want to have real numbers
>> before we make any decision.
>>
>> <at> pkasting: it wasn't 3%, it was (closer to 8% if memory serves).
>
> When I checked it in my records show a 217 -> 210 benchmark drop, which is
> 3%.

My numbers were substantially bigger, but anyway we need to remeasure
it---there are too many factors.

I did some measurements on my windows machine between the current behavior (always commit spans when merging them together) with a very conservative alternative (always decommit spans on ::Delete, including the just released one).  The interesting bits are the benchmark scores and memory use at the end of the run.

For the DOM benchmark, the score regressed from an average over 4 runs of 188.25 to 185 which is <2%.  The peak memory is about the same but the memory committed by the tab at the end of the run decreased from an average of 642MB to 57MB which is a 91% reduction.  4 runs probably isn't enough to make a definitive statement about the perf impact but I think the memory impact is pretty clear.  The memory characteristics of the V8 benchmark was unchanged but the performance dropped from an average of 3009 to 2944, which is about 2%.  Sunspider did not change at all in either memory or performance.

Sorry, disregard those DOM numbers (I wasn't running the right test).

I re-ran on dromaeo's DOM Core test suite twice with and without the aggressive decommitting and the numbers are:

r23768 unmodified:
scores: 299.36 run/s  302.47 run/s
memory footprint of renderer at end of run: 333,648KB 334,156KB

r23768 with decommitting:
scores: 296.06 run/s  293.88 run/s
memory footprint of renderer at end of run: 91,856KB 68,208KB

I think if the tradeoff is between <2% perf compared to 3-5x memory use it's better to get more conservative with our memory use first and then figure out how to earn back the perf impact without blowing the memory use sky-high again.  I think it's pretty clear we don't need all 200MB of extra committed memory in order to do 3 more runs per second.

- James


- James

yours,
anton.

>>
>> And forgotten.  Regarding the policy to decommit spans in ::Delete.
>> Please, correct me if I'm wrong, but doesn't that actually would make
>> all the free spans decommitted---the span would be only committed when
>> it gets allocated, no?  Decommitting only if any of adjacent spans is
>> decommitted may keep some spans committed, but it's difficult for me
>> to say how often.
>
> Oh - more work is still needed, yes :-)
>
> Mike
>
>>
>> yours,
>> anton.
>>
>> > Mike
>> >
>> >>
>> >> yours,
>> >> anton.
>> >>
>> >> > Mike
>> >> >
>> >> >
>> >> >
>> >> >>
>> >> >> > WHY CHANGE?
>> >> >> > The problematic scenario I'm anticipating (and may currently be
>> >> >> > burning
>> >> >> > us)
>> >> >> > is:
>> >> >> > a) A (renderer) process allocates a lot of memory, and achieves a
>> >> >> > significant high water mark of memory used.
>> >> >> > b) The process deallocates a lot of memory, and it flows into the
>> >> >> > TCMalloc
>> >> >> > free list. [We still have a lot of memory attributed to that
>> >> >> > process,
>> >> >> > and
>> >> >> > the app as a whole shows as using that memory.]
>> >> >> > c) We eventually decide to decommit a lot of our free memory.
>> >> >> >  Currently
>> >> >> > this happens when we switch away from a tab. [This saves us from
>> >> >> > further
>> >> >> > swapping out the unused memory].
>> >> >> > Now comes the evil problem.
>> >> >> > d) We return to the tab which has a giant free list of spans, most
>> >> >> > of
>> >> >> > which
>> >> >> > are decommitted.  [The good news is that the memory is still
>> >> >> >  decommitted]
>> >> >> > e) We allocate  a block of memory, such as 32k chunk.  This memory
>> >> >> > is
>> >> >> > pulled
>> >> >> > from a decommitted span, and ONLY the allocated chunk is
>> >> >> > committed.
>> >> >> > [That
>> >> >> > sounds good]
>> >> >> > f) We free the block of memory from (e).  What ever span is
>> >> >> > adjacent
>> >> >> > to
>> >> >> > that
>> >> >> > block is committed <potential oops>.  Hence, if we he took (e)
>> >> >> > from a
>> >> >> > 200Meg
>> >> >> > span, the act of freeing (e) will cause a 200Meg commitment!?!
>> >> >> >  This
>> >> >> > in
>> >> >> > turn
>> >> >> > would not only require touching (and having VirtualAlloc clear to
>> >> >> > zero)
>> >> >> > all
>> >> >> > allocated memory in the large span, it will also immediately put
>> >> >> > memory
>> >> >> > pressure on the OS, and force as much as 200Megs of other apps to
>> >> >> > be
>> >> >> > swapped
>> >> >> > out to disk :-(.
>> >> >>
>> >> >> I'm not sure about swapping unless you touch those now committed
>> >> >> pages, but only experiment will tell.
>> >> >>
>> >> >> > I'm wary that our recent fix that allows spans to be (correctly)
>> >> >> > coalesced
>> >> >> > independent of their size should cause it to be easier to coalesce
>> >> >> > spans.
>> >> >> >  Worse yet, as we proceed to further optimize TCMalloc, one
>> >> >> > measure
>> >> >> > of
>> >> >> > success will be that the list of spans will be fragmented less and
>> >> >> > less,
>> >> >> > and
>> >> >> > we'll have larger and larger coalesced singular spans.  Any large
>> >> >> > "reserved"
>> >> >> > but not "commited" span will be a jank time-bomb waiting to blow
>> >> >> > up
>> >> >> > if
>> >> >> > the
>> >> >> > process every allocates/frees from such a large span :-(.
>> >> >> >
>> >> >> > WHAT IS THE PLAN GOING FORWARD (or how can we do better, and
>> >> >> > regain
>> >> >> > performance, etc.)
>> >> >> > We have at least the following plausible alternative ways to move
>> >> >> > forward
>> >> >> > with TCMalloc.  The overall goal is to avoid wasteful decommits,
>> >> >> > and
>> >> >> > at
>> >> >> > the
>> >> >> > same time avoid heap-wide flailing between minimal and maximal
>> >> >> > span
>> >> >> > commitment states.
>> >> >> > Each free-span is currently the maximal contiguous region of
>> >> >> > memory
>> >> >> > that
>> >> >> > TCMalloc is controlling, but has been deallocated.  Currently
>> >> >> > spans
>> >> >> > have
>> >> >> > to
>> >> >> > be totally committed, or totally decommitted.  There is no mixture
>> >> >> > supported.
>> >> >> > a) We could re-architect the span handling to allow spans to be
>> >> >> > combinations
>> >> >> > of committed and decommitted regions.
>> >> >> > b) We could vary out policy on what to do with a coalesced span,
>> >> >> > based
>> >> >> > on
>> >> >> > span size and memory pressure.  For example: We can consistently
>> >> >> > monitor
>> >> >> > the
>> >> >> > in-use vs free (but committed) ratio.  We can try to stay in some
>> >> >> > "acceptable" region by varying our policy.
>> >> >> > c) We could actually return to the OS some portions of spans that
>> >> >> > we
>> >> >> > have
>> >> >> > decommitted.  We could then let the OS give us back these regions
>> >> >> > if
>> >> >> > we
>> >> >> > need
>> >> >> > memory.  Until we get them back, we would not be at risk of doing
>> >> >> > unnecessary commits.  Decisions about when to return to the OS can
>> >> >> > be
>> >> >> > made
>> >> >> > based on span size and memory pressure.
>> >> >> > d) We can change the interval and forcing function for
>> >> >> > decommitting
>> >> >> > spans
>> >> >> > that are in our free list.
>> >> >> > In each of the above cases, we need benchmark data on user-class
>> >> >> > machines to
>> >> >> > show costs of these changes.  Until we understand the memory
>> >> >> > impact,
>> >> >> > we
>> >> >> > need
>> >> >> > to move forward conservatively in our action, and be vigilant for
>> >> >> > thrashing
>> >> >> > scenarios.
>> >> >> >
>> >> >> > Comments??
>> >> >>
>> >> >> As a close attempt you may have a look at
>> >> >> http://codereview.chromium.org/256013/show
>> >> >>
>> >> >> That allows spans with a mix of committed/decommitted pages (but
>> >> >> only
>> >> >> in returned list) as committing seems to live fine if some pages are
>> >> >> already committed.
>> >> >>
>> >> >> That has some minor performance benefit, but I didn't investigate it
>> >> >> in details yet.
>> >> >>
>> >> >> just my 2 cents,
>> >> >> anton.
>> >> >
>> >> >
>> >
>> >
>
>



--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev <at> googlegroups.com
View archives, change email options, or unsubscribe:
    http://groups.google.com/group/chromium-dev

-~----------~----~----~----~------~----~------~--~---

buildbot | 1 Oct 2009 01:59

buildbot failure in Chromium on Modules XP, revision 27688

http://build.chromium.org/buildbot/waterfall/

Automatically closing tree for "net_unittests" on "Modules XP"

http://build.chromium.org/buildbot/waterfall/builders/Modules%20XP/builds/16468

Revision: 27688
Blame list: jshin <at> chromium.org

Modules XP
Build 16468
svnkill
stdio
update scripts
stdio
taskkill
stdio
update
stdio
compile base
stdio
compile net
stdio
compile sandbox
stdio
base_unittests
2 disabled
stdio
net_unittests
9 disabled
failed 1
stdio
FTPCheckWrongPasswordRestart

Changed by: jshin <at> chromium.org
Changed at: Wed 30 Sep 2009 16:52:14
Branch: src
Revision: 27688

Changed files:

  • DEPS
Comments: Pull in two ICU patches for crashes. (r27687) BUG=23082,23361 TEST=1. see issue 23082 comment 8 (http://crbug.com/23082#c8) 2. Connect to a ftp site and try to see the file list. TBR=wtc Review URL: http://codereview.chromium.org/258005
--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev <at> googlegroups.com
View archives, change email options, or unsubscribe:
    http://groups.google.com/group/chromium-dev

-~----------~----~----~----~------~----~------~--~---

buildbot | 1 Oct 2009 04:16

buildbot failure in Chromium on XP Tests, revision 27696

http://build.chromium.org/buildbot/waterfall/

Automatically closing tree for "unit_tests" on "XP Tests"

http://build.chromium.org/buildbot/waterfall/builders/XP%20Tests/builds/12754

Revision: 27696
Blame list: mhm <at> chromium.org

XP Tests
Build 12754
svnkill
stdio
update scripts
stdio
taskkill
stdio
update
stdio
extract build
stdio
Start Crash Handler
stdio
ipc_tests
stdio
installer_util_unittests
stdio
mini_installer_test
stdio
sync_unit_tests
8 disabled
stdio
unit_tests
15 disabled
failed 1
stdio
Test

Changed by: mhm <at> chromium.org
Changed at: Wed 30 Sep 2009 19:05:03
Branch: src
Revision: 27696

Changed files:

  • chrome/app/generated_resources.grd
  • chrome/browser/download/download_shelf.cc
  • chrome/browser/gtk/download_item_gtk.cc
Comments: Make sure download shelf items and download items don't share names. BUG=23046 TEST=Compiled and ran on Windows Review URL: http://codereview.chromium.org/242082
--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev <at> googlegroups.com
View archives, change email options, or unsubscribe:
    http://groups.google.com/group/chromium-dev

-~----------~----~----~----~------~----~------~--~---

Mark Larson (Google | 1 Oct 2009 05:25

Update default subversion properties on d.c.o?

http://dev.chromium.org/developers/coding-style

There's a section on Subversion properties that looks like it predates GYP. It says to set *.sln = svn:eol-style=native when I would expect it to be in global-ignores.

Can someone with a good idea of what the defaults should be update this page?

--Mark


--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev <at> googlegroups.com
View archives, change email options, or unsubscribe:
    http://groups.google.com/group/chromium-dev

-~----------~----~----~----~------~----~------~--~---

hap 497 | 1 Oct 2009 06:26
Picon

Where I can find the all.xcodeproj for building chromium on MacOSX


Hi,

I am following this instruction to build chromium on MacOSX.
http://code.google.com/p/chromium/wiki/MacBuildInstructions

But I can't find the  all.xcodeproj for it.

This is the content of my build directory:
$ ls
README.chromium        common.gypi            install-build-deps.sh* temp_gyp/
all.gyp                common.vsprops         internal/              util/
branding_value.sh*     debug.vsprops          linux/                 win/
build-bisect.py*       external_code.gypi     mac/
build_config.h         external_code.vsprops  output_dll_copy.rules
common.croc            gyp_chromium*          release.vsprops

And this is the content of the build/mac directory:
$ ls
README.chromium        dump_app_syms*         remove_target_headers*
tweak_app_infoplist*
build_app_dmg*         generate_localizer*    strip_from_xcode*
chrome_mac.croc        pkg-dmg*               strip_save_dsym*

Please tell me how can I find the xcode project file for chromium.

--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev <at> googlegroups.com 
View archives, change email options, or unsubscribe: 
    http://groups.google.com/group/chromium-dev
-~----------~----~----~----~------~----~------~--~---

Jeremy Moskovich | 1 Oct 2009 06:31

Re: Where I can find the all.xcodeproj for building chromium on MacOSX

If you look at the checkout instructions linked to from the build instructions, it says the following:

"""
  1. Updating your checkout once by running gclient sync --force in the source code directory.
    1. If you don't want to sync, you need to generate the project files with gclient runhooks --force. This will call GYP to generate your platform-specific files. You won't be able to build otherwise. If you don't sync, you'll miss some os-specific dependencies so you're better to sync anyway. :)
"""

We should probably also reference this from the build instructions page to reduce confusion :|

Best regards,
Jeremy

On Wed, Sep 30, 2009 at 9:26 PM, hap 497 <hap497 <at> gmail.com> wrote:

Hi,

I am following this instruction to build chromium on MacOSX.
http://code.google.com/p/chromium/wiki/MacBuildInstructions

But I can't find the  all.xcodeproj for it.

This is the content of my build directory:
$ ls
README.chromium        common.gypi            install-build-deps.sh* temp_gyp/
all.gyp                common.vsprops         internal/              util/
branding_value.sh*     debug.vsprops          linux/                 win/
build-bisect.py*       external_code.gypi     mac/
build_config.h         external_code.vsprops  output_dll_copy.rules
common.croc            gyp_chromium*          release.vsprops

And this is the content of the build/mac directory:
$ ls
README.chromium        dump_app_syms*         remove_target_headers*
tweak_app_infoplist*
build_app_dmg*         generate_localizer*    strip_from_xcode*
chrome_mac.croc        pkg-dmg*               strip_save_dsym*

Please tell me how can I find the xcode project file for chromium.




--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev <at> googlegroups.com
View archives, change email options, or unsubscribe:
    http://groups.google.com/group/chromium-dev

-~----------~----~----~----~------~----~------~--~---

Darin Fisher | 1 Oct 2009 06:43

Re: Update default subversion properties on d.c.o?

We shouldn't have anymore .sln files in the tree :-)


However, I still see quite a few:

/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/build/icudt_build.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/allinone/allinone.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/all/all.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/break/break.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/cal/cal.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/case/case.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/coll/coll.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/date/date.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/datefmt/datefmt.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/layout/layout.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/legacy/legacy.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/msgfmt/msgfmt.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/numfmt/numfmt.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/props/props.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/strsrch/strsrch.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/translit/translit.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/uciter8/uciter8.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/ucnv/ucnv.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/udata/udata.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/ufortune/ufortune.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/ugrep/ugrep.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/uresb/uresb.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/ustring/ustring.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/test/letest/cletest.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/test/letest/gendata.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/test/letest/letest.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/test/perf/perf.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/build/icudt_build.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/source/allinone/allinone.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/source/test/letest/cletest.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/source/test/letest/gendata.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/source/test/letest/letest.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/source/test/perf/perf.sln
/home/chrome-svn/codesearch/chrome/trunk/src/o3d/core/win/core_unittests.sln
/home/chrome-svn/codesearch/chrome/trunk/src/o3d/plugin/win/o3dPlugin.sln
/home/chrome-svn/codesearch/chrome/trunk/src/sandbox/sandbox_standalone.sln
/home/chrome-svn/codesearch/chrome/trunk/src/sandbox/wow_helper.sln
/home/chrome-svn/codesearch/chrome/trunk/src/testing/gmock/msvc/gmock.sln
/home/chrome-svn/codesearch/chrome/trunk/src/third_party/npapi/npspy/windows/npspy.sln
/home/chrome-svn/codesearch/chrome/trunk/src/tools/channel_changer/channel_changer.sln

-Darin



On Wed, Sep 30, 2009 at 8:25 PM, Mark Larson (Google) <mal <at> chromium.org> wrote:
http://dev.chromium.org/developers/coding-style

There's a section on Subversion properties that looks like it predates GYP. It says to set *.sln = svn:eol-style=native when I would expect it to be in global-ignores.

Can someone with a good idea of what the defaults should be update this page?

--Mark





--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev <at> googlegroups.com
View archives, change email options, or unsubscribe:
    http://groups.google.com/group/chromium-dev

-~----------~----~----~----~------~----~------~--~---

Darin Fisher | 1 Oct 2009 06:44

Re: Update default subversion properties on d.c.o?

Looking over that list, it seems that some of them are for Windows only things, and as such, conversion to GYP would probably be gratuitous.  We should continue allowing .sln files in the tree.


-Darin



On Wed, Sep 30, 2009 at 9:43 PM, Darin Fisher <darin <at> chromium.org> wrote:
We shouldn't have anymore .sln files in the tree :-)

However, I still see quite a few:

/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/build/icudt_build.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/allinone/allinone.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/all/all.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/break/break.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/cal/cal.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/case/case.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/coll/coll.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/date/date.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/datefmt/datefmt.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/layout/layout.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/legacy/legacy.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/msgfmt/msgfmt.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/numfmt/numfmt.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/props/props.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/strsrch/strsrch.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/translit/translit.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/uciter8/uciter8.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/ucnv/ucnv.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/udata/udata.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/ufortune/ufortune.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/ugrep/ugrep.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/uresb/uresb.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/samples/ustring/ustring.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/test/letest/cletest.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/test/letest/gendata.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/test/letest/letest.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu38/source/test/perf/perf.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/build/icudt_build.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/source/allinone/allinone.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/source/test/letest/cletest.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/source/test/letest/gendata.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/source/test/letest/letest.sln
/home/chrome-svn/codesearch/chrome/trunk/deps/third_party/icu42/source/test/perf/perf.sln
/home/chrome-svn/codesearch/chrome/trunk/src/o3d/core/win/core_unittests.sln
/home/chrome-svn/codesearch/chrome/trunk/src/o3d/plugin/win/o3dPlugin.sln
/home/chrome-svn/codesearch/chrome/trunk/src/sandbox/sandbox_standalone.sln
/home/chrome-svn/codesearch/chrome/trunk/src/sandbox/wow_helper.sln
/home/chrome-svn/codesearch/chrome/trunk/src/testing/gmock/msvc/gmock.sln
/home/chrome-svn/codesearch/chrome/trunk/src/third_party/npapi/npspy/windows/npspy.sln
/home/chrome-svn/codesearch/chrome/trunk/src/tools/channel_changer/channel_changer.sln

-Darin



On Wed, Sep 30, 2009 at 8:25 PM, Mark Larson (Google) <mal <at> chromium.org> wrote:
http://dev.chromium.org/developers/coding-style

There's a section on Subversion properties that looks like it predates GYP. It says to set *.sln = svn:eol-style=native when I would expect it to be in global-ignores.

Can someone with a good idea of what the defaults should be update this page?

--Mark






--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev <at> googlegroups.com
View archives, change email options, or unsubscribe:
    http://groups.google.com/group/chromium-dev

-~----------~----~----~----~------~----~------~--~---

Roland Steiner | 1 Oct 2009 07:46
Picon
Favicon

Re: Build problems on Windows: native client missing headers

FWIW, I had similar troubles with NaCl auto-generated headers, but in my case the underlying problem was VS not finding Python. Adding the depot_tools path to the Windows system path fixed this problem for me.


- Roland

On Thu, Oct 1, 2009 at 6:43 AM, Jay Campan <jcampan <at> chromium.org> wrote:

If you get build errors on Windows about some native client generated
header file missing, make sure to run the sync command from cmd.exe,
not from cygwin bash.
(or just run "gclient runhook --force" from cmd.exe)

There is a bug (http://code.google.com/p/nativeclient/issues/detail?id=105)
when generating the vcproj from cygwin's bash.

Jay




--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev <at> googlegroups.com
View archives, change email options, or unsubscribe:
    http://groups.google.com/group/chromium-dev

-~----------~----~----~----~------~----~------~--~---


Gmane