Updating chromium_revision 169394:176094

This resolves ninja error on Windows due to recent depot_tools update, since a newer GYP will be synced.

Initially we ran into a compile issue with libvpx: http://code.google.com/p/webm/issues/detail?id=521
The change in libvpx.gyp is needed since the newer version of Clang that
is used with this Chromium revision provides the -fsanitize=address flag
instead of the old (now deprecated) -faddress-sanitizer. Without
disabling them when asan=1, we'll get compile errors for the assembly
offsets generated for Libvpx. See http://crbug.com/159580 for more details.

BUG=libyuv:173
TEST=trybots passing.

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3361 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kjellander@webrtc.org 2013-01-11 16:04:50 +00:00
parent e7dc7f8553
commit 75ba51938c
2 changed files with 4 additions and 4 deletions

2
DEPS
View File

@ -10,7 +10,7 @@ vars = {
# If you do not know, use the full path while defining your new deps entry. # If you do not know, use the full path while defining your new deps entry.
"googlecode_url": "http://%s.googlecode.com/svn", "googlecode_url": "http://%s.googlecode.com/svn",
"chromium_trunk" : "http://src.chromium.org/svn/trunk", "chromium_trunk" : "http://src.chromium.org/svn/trunk",
"chromium_revision": "169394", "chromium_revision": "176094",
# External resources like video and audio files used for testing purposes. # External resources like video and audio files used for testing purposes.
# Downloaded on demand when needed. # Downloaded on demand when needed.

View File

@ -347,11 +347,11 @@
], ],
'conditions': [ 'conditions': [
['asan==1', { ['asan==1', {
'cflags!': [ '-faddress-sanitizer', ], 'cflags!': [ '-fsanitize=address', ],
'xcode_settings': { 'xcode_settings': {
'OTHER_CFLAGS!': [ '-faddress-sanitizer', ], 'OTHER_CFLAGS!': [ '-fsanitize=address', ],
}, },
'ldflags!': [ '-faddress-sanitizer', ], 'ldflags!': [ '-fsanitize=address', ],
}], }],
], ],
'sources': [ 'sources': [