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

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

Issue 2274083002: Replace calls to assert() with RTC_DCHECK_*() in .c code (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 4 years, 3 months 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
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 '<(webrtc_root)/base/base.gyp:rtc_base', 17 '<(webrtc_root)/base/base.gyp:rtc_base',
18 ], 18 ],
19 'include_dirs': [ 19 'include_dirs': [
20 './main/include', 20 './main/include',
21 './main/test', 21 './main/test',
22 './main/util', 22 './main/util',
23 '<(webrtc_root)', 23 '<(webrtc_root)',
24 ], 24 ],
25 'sources': [ 25 'sources': [
26 'empty.cc', # force build system to use C++ linker
ossu 2016/08/25 13:38:22 Why?
kwiberg-webrtc 2016/08/25 16:53:10 Because simplicity, the C RTC_DCHECK macro calls t
26 './main/test/simpleKenny.c', 27 './main/test/simpleKenny.c',
27 './main/util/utility.c', 28 './main/util/utility.c',
28 ], 29 ],
29 'conditions': [ 30 'conditions': [
30 ['OS=="win" and clang==1', { 31 ['OS=="win" and clang==1', {
31 'msvs_settings': { 32 'msvs_settings': {
32 'VCCLCompilerTool': { 33 'VCCLCompilerTool': {
33 'AdditionalOptions': [ 34 'AdditionalOptions': [
34 # Disable warnings failing when compiling with Clang on Windows. 35 # Disable warnings failing when compiling with Clang on Windows.
35 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 36 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 './main/util', 73 './main/util',
73 '<(webrtc_root)', 74 '<(webrtc_root)',
74 ], 75 ],
75 'sources': [ 76 'sources': [
76 './main/test/SwitchingSampRate/SwitchingSampRate.cc', 77 './main/test/SwitchingSampRate/SwitchingSampRate.cc',
77 './main/util/utility.c', 78 './main/util/utility.c',
78 ], 79 ],
79 }, 80 },
80 ], 81 ],
81 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698