| Index: third_party/libwebm/libwebm.gyp
|
| diff --git a/third_party/libwebm/libwebm.gyp b/third_party/libwebm/libwebm.gyp
|
| index 7213eca53e48a70d3fb44fa5056928c7d3313d7d..b31881585825e2547fd10d4526916fea7e204719 100644
|
| --- a/third_party/libwebm/libwebm.gyp
|
| +++ b/third_party/libwebm/libwebm.gyp
|
| @@ -7,10 +7,25 @@
|
| {
|
| 'target_name': 'libwebm',
|
| 'type': 'static_library',
|
| + 'conditions': [
|
| + ['OS!="win"', {
|
| + 'cflags': [
|
| + '-Wno-deprecated-declarations', # libwebm uses std::auto_ptr
|
| + ],
|
| + }],
|
| + ],
|
| + 'include_dirs': [
|
| + './source',
|
| + ],
|
| + 'direct_dependent_settings': {
|
| + 'include_dirs': [
|
| + './source',
|
| + ],
|
| + },
|
| 'sources': [
|
| - 'source/mkvmuxer.cpp',
|
| - 'source/mkvmuxerutil.cpp',
|
| - 'source/mkvwriter.cpp',
|
| + 'source/mkvmuxer/mkvmuxer.cc',
|
| + 'source/mkvmuxer/mkvmuxerutil.cc',
|
| + 'source/mkvmuxer/mkvwriter.cc',
|
| ],
|
| }, # target libwebm
|
| ]
|
|
|