| Index: libvpx.gyp
|
| ===================================================================
|
| --- libvpx.gyp (revision 287124)
|
| +++ libvpx.gyp (working copy)
|
| @@ -99,6 +99,12 @@
|
| ],
|
| }],
|
| ],
|
| + 'clang_warning_flags': [
|
| + # libvpx heavily relies on implicit enum casting.
|
| + '-Wno-conversion',
|
| + # libvpx does `if ((a == b))` in some places.
|
| + '-Wno-parentheses-equality',
|
| + ],
|
| },
|
| 'dependencies': [
|
| 'gen_asm_offsets_vp8',
|
| @@ -167,20 +173,6 @@
|
| }],
|
| ],
|
| }],
|
| - ['clang == 1', {
|
| - 'xcode_settings': {
|
| - 'WARNING_CFLAGS': [
|
| - # libvpx heavily relies on implicit enum casting.
|
| - '-Wno-conversion',
|
| - # libvpx does `if ((a == b))` in some places.
|
| - '-Wno-parentheses-equality',
|
| - ],
|
| - },
|
| - 'cflags': [
|
| - '-Wno-conversion',
|
| - '-Wno-parentheses-equality',
|
| - ],
|
| - }],
|
| ],
|
| },
|
| ],
|
|
|