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 },], | |
152 ['OS=="ios"', { | 142 ['OS=="ios"', { |
153 'sources!': [ | 143 'sources!': [ |
154 'media/sctp/sctpdataengine_unittest.cc', | 144 'media/sctp/sctpdataengine_unittest.cc', |
155 ], | 145 ], |
156 }], | 146 }], |
157 ], | 147 ], |
158 }, # target libjingle_media_unittest | 148 }, # target libjingle_media_unittest |
159 { | 149 { |
160 'target_name': 'libjingle_p2p_unittest', | 150 'target_name': 'libjingle_p2p_unittest', |
161 'type': 'executable', | 151 'type': 'executable', |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 'build/isolate.gypi', | 453 'build/isolate.gypi', |
464 ], | 454 ], |
465 'sources': [ | 455 'sources': [ |
466 'libjingle_peerconnection_unittest.isolate', | 456 'libjingle_peerconnection_unittest.isolate', |
467 ], | 457 ], |
468 }, | 458 }, |
469 ], | 459 ], |
470 }], | 460 }], |
471 ], | 461 ], |
472 } | 462 } |
OLD | NEW |