Update the gold location (third_party/libyuv).

chromium have replaced third_party/gold with a full copy of binutils at
third_party/binutils. It gets downloaded and extracted to
third_party/binutils/Linux_(x64|ia32)/Release as part of DEPs/gclient hooks
process.

We are now trying to remove third_party/gold.

BUG=chromium:362119
R=mithro@mithis.com

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

git-svn-id: http://libyuv.googlecode.com/svn/trunk@999 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
fbarchard@google.com 2014-04-10 18:13:35 +00:00
parent fdaaea0f83
commit c8970f1861
3 changed files with 10 additions and 4 deletions

10
DEPS
View File

@ -85,8 +85,8 @@ deps_os = {
File(Var("chromium_trunk") + "/src/tools/find_depot_tools.py@" + Var("chromium_revision")), File(Var("chromium_trunk") + "/src/tools/find_depot_tools.py@" + Var("chromium_revision")),
}, },
"unix": { "unix": {
"third_party/gold": "third_party/binutils":
From("chromium_deps", "src/third_party/gold"), From("chromium_deps", "src/third_party/binutils@" + Var("chromium_revision")),
}, },
"android": { "android": {
"third_party/android_tools": "third_party/android_tools":
@ -174,6 +174,12 @@ hooks = [
"action": ["python", Var("root_dir") + "/tools/clang/scripts/update.py", "action": ["python", Var("root_dir") + "/tools/clang/scripts/update.py",
"--if-needed"], "--if-needed"],
}, },
{
# Pull binutils for gold.
"name": "binutils",
"pattern": ".",
"action": ["python", Var("root_dir") + "/third_party/binutils/download.py"],
},
{ {
# A change to a .gyp, .gypi, or to GYP itself should run the generator. # A change to a .gyp, .gypi, or to GYP itself should run the generator.
"pattern": ".", "pattern": ".",

View File

@ -1,6 +1,6 @@
Name: libyuv Name: libyuv
URL: http://code.google.com/p/libyuv/ URL: http://code.google.com/p/libyuv/
Version: 998 Version: 999
License: BSD License: BSD
License File: LICENSE License File: LICENSE

View File

@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_ #define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 998 #define LIBYUV_VERSION 999
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT