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

Side by Side Diff: webrtc/test/BUILD.gn

Issue 2799033006: Injectable audio encoders: Moved audio encoder, factory and builtin factory to api/. (Closed)
Patch Set: More backwards-compatibility! Created 3 years, 7 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 | « webrtc/pc/peerconnectioninterface_unittest.cc ('k') | webrtc/test/call_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 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 405 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
406 } 406 }
407 407
408 deps = [ 408 deps = [
409 ":direct_transport", 409 ":direct_transport",
410 ":fake_audio_device", 410 ":fake_audio_device",
411 ":rtp_test_utils", 411 ":rtp_test_utils",
412 ":test_support", 412 ":test_support",
413 ":video_test_common", 413 ":video_test_common",
414 "..:webrtc_common", 414 "..:webrtc_common",
415 "../api/audio_codecs:builtin_audio_encoder_factory",
415 "../api/video_codecs:video_codecs_api", 416 "../api/video_codecs:video_codecs_api",
416 "../audio", 417 "../audio",
417 "../base:rtc_base_approved", 418 "../base:rtc_base_approved",
418 "../call", 419 "../call",
419 "../modules/audio_coding:builtin_audio_encoder_factory",
420 "../modules/audio_mixer:audio_mixer_impl", 420 "../modules/audio_mixer:audio_mixer_impl",
421 "../modules/audio_processing", 421 "../modules/audio_processing",
422 "../video", 422 "../video",
423 "//testing/gmock", 423 "//testing/gmock",
424 "//testing/gtest", 424 "//testing/gtest",
425 ] 425 ]
426 if (!is_android) { 426 if (!is_android) {
427 deps += [ "../modules/video_capture:video_capture_internal_impl" ] 427 deps += [ "../modules/video_capture:video_capture_internal_impl" ]
428 } 428 }
429 } 429 }
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 "../modules/media_file", 498 "../modules/media_file",
499 "//testing/gtest", 499 "//testing/gtest",
500 ] 500 ]
501 } 501 }
502 502
503 rtc_source_set("audio_codec_mocks") { 503 rtc_source_set("audio_codec_mocks") {
504 testonly = true 504 testonly = true
505 sources = [ 505 sources = [
506 "mock_audio_decoder.h", 506 "mock_audio_decoder.h",
507 "mock_audio_decoder_factory.h", 507 "mock_audio_decoder_factory.h",
508 "mock_audio_encoder.cc",
509 "mock_audio_encoder.h",
510 "mock_audio_encoder_factory.h",
511 ]
512
513 deps = [
514 "../api/audio_codecs:audio_codecs_api",
515 "//testing/gmock",
508 ] 516 ]
509 } 517 }
OLDNEW
« no previous file with comments | « webrtc/pc/peerconnectioninterface_unittest.cc ('k') | webrtc/test/call_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698