Index: sdch/sdch.gyp |
diff --git a/sdch/sdch.gyp b/sdch/sdch.gyp |
index af65409c9a37a8fdd0e43521abf05fbd1567532a..ff2c077b25622b4dfc7dceeb87df9b7edb8204cd 100644 |
--- a/sdch/sdch.gyp |
+++ b/sdch/sdch.gyp |
@@ -58,8 +58,6 @@ |
[ 'OS == "ios"', { 'include_dirs': [ 'ios' ] } ], |
[ 'OS == "mac"', { 'include_dirs': [ 'mac' ] } ], |
[ 'OS == "win"', { 'include_dirs': [ 'win' ] } ], |
- # TODO(mark): Remove usage of the deprecated auto_ptr. |
- [ 'clang == 1', { 'cflags': [ '-Wno-deprecated-declarations' ] } ], |
], |
# open-vcdiff's logging.h introduces static initializers. This was |
# reported upstream years ago ( |
@@ -96,7 +94,11 @@ |
] |
} |
}, |
- 'cflags': [ '-include', '<(logging_dir)/sdch/<(logging_path)' ], |
+ 'cflags': [ |
+ '-include', '<(logging_dir)/sdch/<(logging_path)', |
+ # TODO(mostynb): remove this if open-vcdiff is ever updated for c++11: |
+ '-Wno-deprecated-declarations', |
+ ], |
}, |
], |
} |