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