Roll Chromium 152335:157509, and add google_apis/build.

- gitignore google_apis.
- Disable 4005 warning in gflags.gyp.

TBR=niklas.enbom, kjellander
TESTED=trybots

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2792 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2012-09-19 23:08:50 +00:00
parent 6a9d7f8a2f
commit b9d2064f6e
3 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View File

@ -32,6 +32,7 @@
.settings
/build
/chromium_deps
/google_apis
/gyp-mac-tool
/Makefile
/out

6
DEPS
View File

@ -10,7 +10,7 @@ vars = {
# If you do not know, use the full path while defining your new deps entry.
"googlecode_url": "http://%s.googlecode.com/svn",
"chromium_trunk" : "http://src.chromium.org/svn/trunk",
"chromium_revision": "152335",
"chromium_revision": "157509",
# External resources like video and audio files used for testing purposes.
# Downloaded on demand when needed.
@ -26,6 +26,10 @@ deps = {
"build":
Var("chromium_trunk") + "/src/build@" + Var("chromium_revision"),
# Needed by common.gypi.
"google_apis/build":
Var("chromium_trunk") + "/src/google_apis/build@" + Var("chromium_revision"),
"testing":
Var("chromium_trunk") + "/src/testing@" + Var("chromium_revision"),

View File

@ -51,10 +51,12 @@
'src/gflags_reporting.cc',
],
'conditions': [
['OS == "win"', {
['OS=="win"', {
'sources': [
'src/windows/port.cc',
],
# Suppress warnings about WIN32_LEAN_AND_MEAN.
'msvs_disabled_warnings': [4005,],
}],
# TODO(andrew): Look into fixing this warning upstream:
# http://code.google.com/p/webrtc/issues/detail?id=760