@@ -131,13 +131,27 @@
|
131 | 131 | 'xcode_settings': { |
132 | 132 | # -Wno-invalid-offsetof |
133 | 133 | 'GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO': 'NO', |
| 134 | + }, |
| 135 | +'msvs_settings': { |
| 136 | +'VCCLCompilerTool': { |
| 137 | +'AdditionalOptions': ['-Wno-invalid-offsetof'], |
| 138 | + }, |
| 139 | + }, |
| 140 | + }], |
| 141 | + ['clang==1', { |
| 142 | +'cflags_cc': [ |
| 143 | +'-Wno-nullability-completeness', |
| 144 | + ], |
| 145 | +'xcode_settings': { |
134 | 146 | 'OTHER_CFLAGS': [ |
135 | 147 | '-Wno-nullability-completeness', |
136 | 148 | ], |
137 | 149 | }, |
138 | 150 | 'msvs_settings': { |
139 | 151 | 'VCCLCompilerTool': { |
140 | | -'AdditionalOptions': ['-Wno-invalid-offsetof'], |
| 152 | +'AdditionalOptions': [ |
| 153 | +'-Wno-nullability-completeness', |
| 154 | + ], |
141 | 155 | }, |
142 | 156 | }, |
143 | 157 | }], |
|