diff --git a/README.chromium b/README.chromium index 6c38ea296..a8c8ec6af 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1526 +Version: 1527 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 270bba627..c11017af2 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 1526 +#define LIBYUV_VERSION 1527 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/third_party/gflags/gflags.gyp b/third_party/gflags/gflags.gyp index 9c11e75a4..57567fa3b 100644 --- a/third_party/gflags/gflags.gyp +++ b/third_party/gflags/gflags.gyp @@ -63,6 +63,18 @@ }], # TODO(andrew): Look into fixing this warning upstream: # http://code.google.com/p/webrtc/issues/detail?id=760 + ['OS=="win" and clang==1', { + 'msvs_settings': { + 'VCCLCompilerTool': { + 'AdditionalOptions!': [ + '-Wheader-hygiene', # Suppress warning about using namespace. + ], + 'AdditionalOptions': [ + '-Wno-unused-local-typedef', # Suppress unused private typedef. + ], + }, + }, + }], ['clang==1', { 'cflags!': ['-Wheader-hygiene',], 'xcode_settings': {