Remove the long disabled WEBRTC_SVNREVISION define.

BUG=500
TESTED=git try
R=kjellander@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/4899004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5215 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2013-12-04 17:00:44 +00:00
parent 5b51ebc179
commit 3054ba6bb2
3 changed files with 2 additions and 9 deletions

View File

@ -151,12 +151,6 @@
# use full paths (e.g. headers inside testing/ or third_party/). # use full paths (e.g. headers inside testing/ or third_party/).
'<(DEPTH)', '<(DEPTH)',
], ],
'defines': [
# TODO(leozwang): Run this as a gclient hook rather than at build-time:
# http://code.google.com/p/webrtc/issues/detail?id=687
'WEBRTC_SVNREVISION="Unavailable(issue687)"',
#'WEBRTC_SVNREVISION="<!(python <(webrtc_root)/build/version.py)"',
],
'conditions': [ 'conditions': [
['restrict_webrtc_logging==1', { ['restrict_webrtc_logging==1', {
'defines': ['WEBRTC_RESTRICT_LOGGING',], 'defines': ['WEBRTC_RESTRICT_LOGGING',],

View File

@ -397,8 +397,7 @@ int ViEBaseImpl::GetVersion(char version[1024]) {
version_stream << "VideoEngine 3.47.0" << std::endl; version_stream << "VideoEngine 3.47.0" << std::endl;
// Add build info. // Add build info.
version_stream << "Build: svn:" << WEBRTC_SVNREVISION << " " << BUILDINFO version_stream << "Build: " << BUILDINFO << std::endl;
<< std::endl;
#ifdef WEBRTC_EXTERNAL_TRANSPORT #ifdef WEBRTC_EXTERNAL_TRANSPORT
version_stream << "External transport build" << std::endl; version_stream << "External transport build" << std::endl;

View File

@ -867,7 +867,7 @@ int VoEBaseImpl::GetVersion(char version[1024])
int32_t VoEBaseImpl::AddBuildInfo(char* str) const int32_t VoEBaseImpl::AddBuildInfo(char* str) const
{ {
return sprintf(str, "Build: svn:%s %s\n", WEBRTC_SVNREVISION, BUILDINFO); return sprintf(str, "Build: %s\n", BUILDINFO);
} }
int32_t VoEBaseImpl::AddVoEVersion(char* str) const int32_t VoEBaseImpl::AddVoEVersion(char* str) const