Roll Chromium 122775:132375 (current Canary).
Hijacking the gyp inside_chromium_build finally came back to bite us. Chrome started using it to control the path to the gold linker, which broke our build. This change removes use of inside_chromium_build from WebRTC. If peerconnection rolls past this point, libjingle.gyp will need to be updated. BUG= TEST=build on Linux, Mac, Win Review URL: https://webrtc-codereview.appspot.com/493007 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2038 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
3e2e7038e6
commit
336d52d817
4
DEPS
4
DEPS
@ -3,7 +3,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": "122775",
|
||||
"chromium_revision": "132375",
|
||||
|
||||
# External resources like video and audio files used for testing purposes.
|
||||
# Downloaded on demand when needed.
|
||||
@ -79,7 +79,7 @@ deps = {
|
||||
deps_os = {
|
||||
"win": {
|
||||
"trunk/third_party/cygwin":
|
||||
Var("chromium_trunk") + "/deps/third_party/cygwin@66844",
|
||||
From("trunk/chromium_deps", "src/third_party/cygwin"),
|
||||
|
||||
# Used by libjpeg-turbo.
|
||||
"trunk/third_party/yasm/binaries":
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
{
|
||||
# TODO(wu): Use the libjingle.gyp from chromium and get rid of this file.
|
||||
# WebRTC no longer supports the inside_chromium_build variable.
|
||||
'variables': {
|
||||
'no_libjingle_logging%': 0,
|
||||
'conditions': [
|
||||
|
@ -1,7 +1,11 @@
|
||||
#!/usr/bin/env python
|
||||
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
import sys
|
||||
|
||||
@ -11,7 +15,6 @@ supplement_gypi = """#!/usr/bin/env python
|
||||
{
|
||||
'variables': {
|
||||
'build_with_chromium': 0,
|
||||
'inside_chromium_build': 0,
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
Loading…
x
Reference in New Issue
Block a user