From c8970f18611cc9d8b1729fbeba9de504e1083dd7 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Thu, 10 Apr 2014 18:13:35 +0000 Subject: [PATCH] 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 --- DEPS | 10 ++++++++-- README.chromium | 2 +- include/libyuv/version.h | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/DEPS b/DEPS index 526ce8663..cc0c9f67e 100644 --- a/DEPS +++ b/DEPS @@ -85,8 +85,8 @@ deps_os = { File(Var("chromium_trunk") + "/src/tools/find_depot_tools.py@" + Var("chromium_revision")), }, "unix": { - "third_party/gold": - From("chromium_deps", "src/third_party/gold"), + "third_party/binutils": + From("chromium_deps", "src/third_party/binutils@" + Var("chromium_revision")), }, "android": { "third_party/android_tools": @@ -174,6 +174,12 @@ hooks = [ "action": ["python", Var("root_dir") + "/tools/clang/scripts/update.py", "--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. "pattern": ".", diff --git a/README.chromium b/README.chromium index 3c511c2ae..924cb360f 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 998 +Version: 999 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 488186186..005918fff 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 998 +#define LIBYUV_VERSION 999 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT