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/BUILD.gn

Issue 2757213002: Remove voe_base_misc_test.cc. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | webrtc/voice_engine/test/auto_test/standard/voe_base_misc_test.cc » ('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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("../webrtc.gni") 9 import("../webrtc.gni")
10 10
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 "test/auto_test/fixtures/before_streaming_fixture.h", 266 "test/auto_test/fixtures/before_streaming_fixture.h",
267 "test/auto_test/standard/codec_before_streaming_test.cc", 267 "test/auto_test/standard/codec_before_streaming_test.cc",
268 "test/auto_test/standard/codec_test.cc", 268 "test/auto_test/standard/codec_test.cc",
269 "test/auto_test/standard/dtmf_test.cc", 269 "test/auto_test/standard/dtmf_test.cc",
270 "test/auto_test/standard/file_before_streaming_test.cc", 270 "test/auto_test/standard/file_before_streaming_test.cc",
271 "test/auto_test/standard/file_test.cc", 271 "test/auto_test/standard/file_test.cc",
272 "test/auto_test/standard/mixing_test.cc", 272 "test/auto_test/standard/mixing_test.cc",
273 "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc", 273 "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc",
274 "test/auto_test/standard/rtp_rtcp_extensions.cc", 274 "test/auto_test/standard/rtp_rtcp_extensions.cc",
275 "test/auto_test/standard/rtp_rtcp_test.cc", 275 "test/auto_test/standard/rtp_rtcp_test.cc",
276 "test/auto_test/standard/voe_base_misc_test.cc",
277 "test/auto_test/voe_conference_test.cc", 276 "test/auto_test/voe_conference_test.cc",
278 "test/auto_test/voe_standard_test.cc", 277 "test/auto_test/voe_standard_test.cc",
279 "test/auto_test/voe_standard_test.h", 278 "test/auto_test/voe_standard_test.h",
280 "test/auto_test/voe_test_defines.h", 279 "test/auto_test/voe_test_defines.h",
281 ] 280 ]
282 281
283 defines = [] 282 defines = []
284 283
285 if (rtc_enable_protobuf) { 284 if (rtc_enable_protobuf) {
286 defines = [ "ENABLE_RTC_EVENT_LOG" ] 285 defines = [ "ENABLE_RTC_EVENT_LOG" ]
287 } 286 }
288 287
289 if (is_win) { 288 if (is_win) {
290 defines += [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ] 289 defines += [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ]
291 290
292 cflags = [ 291 cflags = [
293 "/wd4267", # size_t to int truncation. 292 "/wd4267", # size_t to int truncation.
294 "/wd4373", # Virtual function override. 293 "/wd4373", # Virtual function override.
295 # TODO(kjellander): Bug 261: fix this warning. 294 # TODO(kjellander): Bug 261: fix this warning.
296 ] 295 ]
297 } 296 }
298 297
299 if (!build_with_chromium && is_clang) { 298 if (!build_with_chromium && is_clang) {
300 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 299 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
301 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 300 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
302 } 301 }
303 } 302 }
304 } 303 }
305 } 304 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/voice_engine/test/auto_test/standard/voe_base_misc_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698