Removed the need of the local libjingle.gyp and use the one from the chromium instead. Review URL: https://webrtc-codereview.appspot.com/561004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2199 4adac7df-926f-26a2-2b94-8c16560cd09d
102 lines
3.2 KiB
Python
102 lines
3.2 KiB
Python
vars = {
|
|
# Use this googlecode_url variable only if there is an internal mirror for it.
|
|
# 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": "134666",
|
|
# Still needs the webrtc_revision/libjingle_revision here because some of
|
|
# the deps have to be pulled from webrtc/libjingle repository.
|
|
"webrtc_revision": "2137",
|
|
"libjingle_revision": "136",
|
|
}
|
|
|
|
# NOTE: Prefer revision numbers to tags for svn deps. Use http rather than
|
|
# https; the latter can cause problems for users behind proxies.
|
|
deps = {
|
|
"trunk/chromium_deps":
|
|
File(Var("chromium_trunk") + "/src/DEPS@" + Var("chromium_revision")),
|
|
|
|
"trunk/webrtc_deps":
|
|
File((Var("googlecode_url") % "webrtc") + "/trunk/DEPS@" + Var("webrtc_revision")),
|
|
|
|
"trunk/third_party/webrtc":
|
|
From("trunk/chromium_deps", "src/third_party/webrtc"),
|
|
|
|
# WebRTC deps.
|
|
"trunk/third_party/libvpx":
|
|
From("trunk/chromium_deps", "src/third_party/libvpx"),
|
|
|
|
"trunk/build":
|
|
From("trunk/webrtc_deps", "trunk/build"),
|
|
|
|
"trunk/testing/gtest":
|
|
From("trunk/chromium_deps", "src/testing/gtest"),
|
|
|
|
"trunk/tools/gyp":
|
|
From("trunk/chromium_deps", "src/tools/gyp"),
|
|
|
|
# Needed by build/common.gypi.
|
|
"trunk/tools/win/supalink":
|
|
From("trunk/webrtc_deps", "trunk/tools/win/supalink"),
|
|
|
|
"trunk/third_party/protobuf/":
|
|
From("trunk/webrtc_deps", "trunk/third_party/protobuf"),
|
|
|
|
"trunk/third_party/libjpeg_turbo/":
|
|
From("trunk/chromium_deps", "src/third_party/libjpeg_turbo"),
|
|
|
|
"trunk/third_party/libjpeg/":
|
|
From("trunk/webrtc_deps", "trunk/third_party/libjpeg"),
|
|
|
|
"trunk/third_party/yasm/":
|
|
From("trunk/webrtc_deps", "trunk/third_party/yasm"),
|
|
|
|
"trunk/third_party/expat/":
|
|
From("trunk/webrtc_deps", "trunk/third_party/expat"),
|
|
|
|
"trunk/third_party/yasm/source/patched-yasm":
|
|
From("trunk/chromium_deps", "src/third_party/yasm/source/patched-yasm"),
|
|
|
|
"trunk/third_party/libyuv":
|
|
From("trunk/chromium_deps", "src/third_party/libyuv"),
|
|
|
|
# libjingle deps.
|
|
"trunk/third_party/libjingle/":
|
|
File(Var("chromium_trunk") + "/src/third_party/libjingle/libjingle.gyp@" + Var("chromium_revision")),
|
|
|
|
"trunk/third_party/libjingle/source":
|
|
From("trunk/chromium_deps", "src/third_party/libjingle/source"),
|
|
|
|
"trunk/third_party/libjingle/overrides/talk/base":
|
|
(Var("googlecode_url") % "libjingle") + "/trunk/talk/base@" + Var("libjingle_revision"),
|
|
|
|
"trunk/third_party/libsrtp/":
|
|
From("trunk/chromium_deps", "src/third_party/libsrtp"),
|
|
|
|
"trunk/third_party/jsoncpp/":
|
|
Var("chromium_trunk") + "/src/third_party/jsoncpp@" + Var("chromium_revision"),
|
|
|
|
"trunk/third_party/jsoncpp/source":
|
|
"http://jsoncpp.svn.sourceforge.net/svnroot/jsoncpp/trunk/jsoncpp@248",
|
|
}
|
|
|
|
deps_os = {
|
|
"win": {
|
|
"trunk/third_party/cygwin/":
|
|
Var("chromium_trunk") + "/deps/third_party/cygwin@66844",
|
|
|
|
# Used by libjpeg-turbo
|
|
"trunk/third_party/yasm/binaries":
|
|
From("trunk/chromium_deps", "src/third_party/yasm/binaries"),
|
|
},
|
|
}
|
|
|
|
hooks = [
|
|
{
|
|
# A change to a .gyp, .gypi, or to GYP itself should run the generator.
|
|
"pattern": ".",
|
|
"action": ["python", "trunk/build/gyp_chromium", "--depth=trunk", "trunk/peerconnection.gyp"],
|
|
},
|
|
]
|
|
|