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

Side by Side Diff: webrtc/voice_engine/test/auto_test/voe_test_defines.h

Issue 2538093003: Prep to remove API-related #defines from voice_engine_configurations.h (Closed)
Patch Set: Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H 11 #ifndef WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H
12 #define WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H 12 #define WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H
13 13
14 #include "webrtc/voice_engine/test/auto_test/voe_test_common.h" 14 #include "webrtc/voice_engine/test/auto_test/voe_test_common.h"
15 15
16 // Read WEBRTC_VOICE_ENGINE_XXX_API compiler flags 16 // Read WEBRTC_VOICE_ENGINE_XXX_API compiler flags
17 #include "webrtc/voice_engine_configurations.h" 17 #include "webrtc/voice_engine_configurations.h"
18 18
19 #ifndef WEBRTC_VOICE_ENGINE_AUDIO_PROCESSING_API
20 #error "Deprecated"
21 #endif
22 #ifndef WEBRTC_VOICE_ENGINE_CODEC_API
23 #error "Deprecated"
24 #endif
25 #ifndef WEBRTC_VOICE_ENGINE_EXTERNAL_MEDIA_API
26 #error "Deprecated"
27 #endif
28 #ifndef WEBRTC_VOICE_ENGINE_FILE_API
29 #error "Deprecated"
30 #endif
31 #ifndef WEBRTC_VOICE_ENGINE_HARDWARE_API
32 #error "Deprecated"
33 #endif
34 #ifndef WEBRTC_VOICE_ENGINE_NETEQ_STATS_API
35 #error "Deprecated"
36 #endif
37 #ifndef WEBRTC_VOICE_ENGINE_RTP_RTCP_API
38 #error "Deprecated"
39 #endif
40 #ifndef WEBRTC_VOICE_ENGINE_VIDEO_SYNC_API
41 #error "Deprecated"
42 #endif
43 #ifndef WEBRTC_VOICE_ENGINE_VOLUME_CONTROL_API
44 #error "Deprecated"
45 #endif
46
19 // Select the tests to execute, list order below is same as they will be 47 // Select the tests to execute, list order below is same as they will be
20 // executed. Note that, all settings below will be overriden by sub-API 48 // executed. Note that, all settings below will be overriden by sub-API
21 // settings in voice_engine_configurations.h. 49 // settings in voice_engine_configurations.h.
22 #define _TEST_BASE_ 50 #define _TEST_BASE_
23 #define _TEST_RTP_RTCP_ 51 #define _TEST_RTP_RTCP_
24 #define _TEST_HARDWARE_ 52 #define _TEST_HARDWARE_
25 #define _TEST_CODEC_ 53 #define _TEST_CODEC_
26 #define _TEST_VOLUME_ 54 #define _TEST_VOLUME_
27 #define _TEST_AUDIO_PROCESSING_ 55 #define _TEST_AUDIO_PROCESSING_
28 #define _TEST_FILE_ 56 #define _TEST_FILE_
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 { \ 177 { \
150 TEST_LOG("\n>>> Excluding test at line: %i <<<\n\n",__LINE__); \ 178 TEST_LOG("\n>>> Excluding test at line: %i <<<\n\n",__LINE__); \
151 } 179 }
152 180
153 #define INCOMPLETE() \ 181 #define INCOMPLETE() \
154 { \ 182 { \
155 TEST_LOG("\n>>> Incomplete test at line: %i <<<\n\n",__LINE__); \ 183 TEST_LOG("\n>>> Incomplete test at line: %i <<<\n\n",__LINE__); \
156 } 184 }
157 185
158 #endif // WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H 186 #endif // WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H
OLDNEW
« no previous file with comments | « webrtc/voice_engine/test/auto_test/voe_standard_test.cc ('k') | webrtc/voice_engine/voe_audio_processing_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698