[chromium-dev] Re: Does Chromium use boost library

2009-08-18 Thread Evan Martin

On Sun, Aug 16, 2009 at 10:17 AM, Albert J. Wong
(王重傑)ajw...@chromium.org wrote:
 It seems that git rm didn't delete the directories themselves.  :(  Thanks
 for fixing Mark!

git doesn't distinguish between nonexistent directories and
existent-but-empty directories, so as I understand it it will never
delete directories from svn.  (The suggested solutions if you actually
*want* an empty directory in a git repo are (1) don't do that or (2)
create a meaningless dotfile in the directory.)

PS: Personal OKR of responding to 100% of messages mentioning git is
currently green.  :P

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



[chromium-dev] Re: Does Chromium use boost library

2009-08-16 Thread PhistucK
If I am not mistaking (search the group, there is information about it) -GMock
(or some similar name, some kind of unit test architecture) needed boost
(and /TR1), but the dependency was reduced to make the /TR1 go away, due to
build issues. I think it is only a leftover.

Though, I might be confusing a lot of things here and totally out of
context.

☆PhistucK


On Sun, Aug 16, 2009 at 10:41, n179911 n179...@gmail.com wrote:


 Hi,

 Does Chromium use boost library? In the source tree, i see there is a
 'boost' directory under 'third-party'.
 It appears to be an incomplete version of boost 1.36. I said
 incomplete since a lot of directories of boost are missing?

 Does anyone know why is that?

 Thank you.

 --~--~-~--~~~---~--~~
 Chromium Developers mailing list: chromium-dev@googlegroups.com
 View archives, change email options, or unsubscribe:

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



[chromium-dev] Re: Does Chromium use boost library

2009-08-16 Thread Dan Kegel
I think we haven't quite drunk the boost koolaid.  We turn off rtti and
exceptions, too.

On Aug 16, 2009 12:42 AM, n179911 n179...@gmail.com wrote:


Hi,

Does Chromium use boost library? In the source tree, i see there is a
'boost' directory under 'third-party'.
It appears to be an incomplete version of boost 1.36. I said
incomplete since a lot of directories of boost are missing?

Does anyone know why is that?

Thank you.


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



[chromium-dev] Re: Does Chromium use boost library

2009-08-16 Thread Mark Mentovai

n179...@gmail.com wrote:
 Does Chromium use boost library? In the source tree, i see there is a
 'boost' directory under 'third-party'.
 It appears to be an incomplete version of boost 1.36. I said
 incomplete since a lot of directories of boost are missing?

 Does anyone know why is that?

(Authoritatively)

As previously mentioned, boost was only present in support of gmock.
The gmock-boost dependency was dropped in r18923, and all of boost was
supposed to be removed in r20159.  It seems that the removal was
incomplete.  It got rid of all of the files in third_party/boost, but
not that directory or any of its subdirectories.

I've just committed r23531, which removes the third_party/boost
directory structure.

Mark

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



[chromium-dev] Re: Does Chromium use boost library

2009-08-16 Thread 王重傑
On Sun, Aug 16, 2009 at 7:37 AM, Mark Mentovai m...@chromium.org wrote:

 n179...@gmail.com wrote:
  Does Chromium use boost library? In the source tree, i see there is a
  'boost' directory under 'third-party'.
  It appears to be an incomplete version of boost 1.36. I said
  incomplete since a lot of directories of boost are missing?
 
  Does anyone know why is that?

 (Authoritatively)

 As previously mentioned, boost was only present in support of gmock.
 The gmock-boost dependency was dropped in r18923, and all of boost was
 supposed to be removed in r20159.  It seems that the removal was
 incomplete.  It got rid of all of the files in third_party/boost, but
 not that directory or any of its subdirectories.

 I've just committed r23531, which removes the third_party/boost
 directory structure.


It seems that git rm didn't delete the directories themselves.  :(  Thanks
for fixing Mark!

As for why the boost structure is incomplete, when we added it for gmock, we
stripped it down to the minimal set of files needed to support tr1/tuple
since that was al gmock needed.  But all of that is gone now.

-Albert

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