OLD | NEW |
1 # | 1 # |
2 # Copyright 2014 The LibYuv Project Authors. All rights reserved. | 2 # Copyright 2014 The LibYuv Project Authors. All rights reserved. |
3 # | 3 # |
4 # Use of this source code is governed by a BSD-style license | 4 # Use of this source code is governed by a BSD-style license |
5 # that can be found in the LICENSE file in the root of the source | 5 # that can be found in the LICENSE file in the root of the source |
6 # tree. An additional intellectual property rights grant can be found | 6 # tree. An additional intellectual property rights grant can be found |
7 # in the file PATENTS. All contributing project authors may | 7 # in the file PATENTS. All contributing project authors may |
8 # be found in the AUTHORS file in the root of the source tree. | 8 # be found in the AUTHORS file in the root of the source tree. |
9 | 9 |
10 # This is a copy of WebRTC's gflags.gyp. | 10 # This is a copy of WebRTC's gflags.gyp. |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 'AdditionalOptions!': [ | 69 'AdditionalOptions!': [ |
70 '-Wheader-hygiene', # Suppress warning about using namespace. | 70 '-Wheader-hygiene', # Suppress warning about using namespace. |
71 ], | 71 ], |
72 'AdditionalOptions': [ | 72 'AdditionalOptions': [ |
73 '-Wno-unused-local-typedef', # Suppress unused private typedef. | 73 '-Wno-unused-local-typedef', # Suppress unused private typedef. |
74 ], | 74 ], |
75 }, | 75 }, |
76 }, | 76 }, |
77 }], | 77 }], |
78 ['clang==1', { | 78 ['clang==1', { |
| 79 'cflags': ['-Wno-unused-local-typedef',], |
79 'cflags!': ['-Wheader-hygiene',], | 80 'cflags!': ['-Wheader-hygiene',], |
80 'xcode_settings': { | 81 'xcode_settings': { |
| 82 'WARNING_CFLAGS': ['-Wno-unused-local-typedef',], |
81 'WARNING_CFLAGS!': ['-Wheader-hygiene',], | 83 'WARNING_CFLAGS!': ['-Wheader-hygiene',], |
82 }, | 84 }, |
83 }], | 85 }], |
84 ], | 86 ], |
85 }, | 87 }, |
86 ], | 88 ], |
87 } | 89 } |
| 90 |
OLD | NEW |