Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: webrtc/modules/audio_coding/codecs/isac/isac_test.gypi

Issue 1522223002: Disable warnings failing when using Clang on Windows (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rolled winsdk_samples Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/base/base_tests.gyp ('k') | webrtc/modules/audio_device/audio_device.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'targets': [ 10 'targets': [
11 # simple kenny 11 # simple kenny
12 { 12 {
13 'target_name': 'isac_test', 13 'target_name': 'isac_test',
14 'type': 'executable', 14 'type': 'executable',
15 'dependencies': [ 15 'dependencies': [
16 'isac', 16 'isac',
17 ], 17 ],
18 'include_dirs': [ 18 'include_dirs': [
19 './main/test', 19 './main/test',
20 './main/include', 20 './main/include',
21 './main/util', 21 './main/util',
22 '<(webrtc_root)', 22 '<(webrtc_root)',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 './main/test/simpleKenny.c', 25 './main/test/simpleKenny.c',
26 './main/util/utility.c', 26 './main/util/utility.c',
27 ], 27 ],
28 'conditions': [
29 ['OS=="win" and clang==1', {
30 'msvs_settings': {
31 'VCCLCompilerTool': {
32 'AdditionalOptions': [
33 # Disable warnings failing when compiling with Clang on Windows.
34 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
35 '-Wno-format',
36 ],
37 },
38 },
39 }],
40 ], # conditions.
28 }, 41 },
29 # ReleaseTest-API 42 # ReleaseTest-API
30 { 43 {
31 'target_name': 'isac_api_test', 44 'target_name': 'isac_api_test',
32 'type': 'executable', 45 'type': 'executable',
33 'dependencies': [ 46 'dependencies': [
34 'isac', 47 'isac',
35 ], 48 ],
36 'include_dirs': [ 49 'include_dirs': [
37 './main/test', 50 './main/test',
(...skipping 18 matching lines...) Expand all
56 './main/include', 69 './main/include',
57 '../../../../common_audio/signal_processing/include', 70 '../../../../common_audio/signal_processing/include',
58 './main/util', 71 './main/util',
59 '<(webrtc_root)', 72 '<(webrtc_root)',
60 ], 73 ],
61 'sources': [ 74 'sources': [
62 './main/test/SwitchingSampRate/SwitchingSampRate.cc', 75 './main/test/SwitchingSampRate/SwitchingSampRate.cc',
63 './main/util/utility.c', 76 './main/util/utility.c',
64 ], 77 ],
65 }, 78 },
66
67 ], 79 ],
68 } 80 }
OLDNEW
« no previous file with comments | « webrtc/base/base_tests.gyp ('k') | webrtc/modules/audio_device/audio_device.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698