OLD | NEW |
1 # | 1 # |
2 # libjingle | 2 # libjingle |
3 # Copyright 2012 Google Inc. | 3 # Copyright 2012 Google Inc. |
4 # | 4 # |
5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
6 # modification, are permitted provided that the following conditions are met: | 6 # modification, are permitted provided that the following conditions are met: |
7 # | 7 # |
8 # 1. Redistributions of source code must retain the above copyright notice, | 8 # 1. Redistributions of source code must retain the above copyright notice, |
9 # this list of conditions and the following disclaimer. | 9 # this list of conditions and the following disclaimer. |
10 # 2. Redistributions in binary form must reproduce the above copyright notice, | 10 # 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 'msvs_settings': { | 132 'msvs_settings': { |
133 'VCCLCompilerTool': { | 133 'VCCLCompilerTool': { |
134 'AdditionalOptions': [ | 134 'AdditionalOptions': [ |
135 # Disable warnings failing when compiling with Clang on Windows. | 135 # Disable warnings failing when compiling with Clang on Windows. |
136 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 | 136 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 |
137 '-Wno-unused-function', | 137 '-Wno-unused-function', |
138 ], | 138 ], |
139 }, | 139 }, |
140 }, | 140 }, |
141 },], | 141 },], |
| 142 ['clang==1', { |
| 143 # Disabled due to failing when compiled with -Wall, see |
| 144 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5398 |
| 145 'cflags': [ |
| 146 '-Wno-unused-function', |
| 147 ], |
| 148 'xcode_settings': { |
| 149 'WARNING_CFLAGS': ['-Wno-unused-function'], |
| 150 }, |
| 151 },], |
142 ['OS=="ios"', { | 152 ['OS=="ios"', { |
143 'sources!': [ | 153 'sources!': [ |
144 'media/sctp/sctpdataengine_unittest.cc', | 154 'media/sctp/sctpdataengine_unittest.cc', |
145 ], | 155 ], |
146 }], | 156 }], |
147 ], | 157 ], |
148 }, # target libjingle_media_unittest | 158 }, # target libjingle_media_unittest |
149 { | 159 { |
150 'target_name': 'libjingle_p2p_unittest', | 160 'target_name': 'libjingle_p2p_unittest', |
151 'type': 'executable', | 161 'type': 'executable', |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 'build/isolate.gypi', | 463 'build/isolate.gypi', |
454 ], | 464 ], |
455 'sources': [ | 465 'sources': [ |
456 'libjingle_peerconnection_unittest.isolate', | 466 'libjingle_peerconnection_unittest.isolate', |
457 ], | 467 ], |
458 }, | 468 }, |
459 ], | 469 ], |
460 }], | 470 }], |
461 ], | 471 ], |
462 } | 472 } |
OLD | NEW |