| OLD | NEW |
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("../webrtc.gni") | 10 import("../webrtc.gni") |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 } else { | 94 } else { |
| 95 # Need to add a directory normally exported by libyuv. | 95 # Need to add a directory normally exported by libyuv. |
| 96 include_dirs += [ "$rtc_libyuv_dir/include" ] | 96 include_dirs += [ "$rtc_libyuv_dir/include" ] |
| 97 } | 97 } |
| 98 | 98 |
| 99 deps += [ | 99 deps += [ |
| 100 "..:webrtc_common", | 100 "..:webrtc_common", |
| 101 "../api:libjingle_peerconnection_api", | 101 "../api:libjingle_peerconnection_api", |
| 102 "../api:video_frame_api", | 102 "../api:video_frame_api", |
| 103 "../api/audio_codecs:audio_codecs_api", | 103 "../api/audio_codecs:audio_codecs_api", |
| 104 "../api/audio_codecs:builtin_audio_encoder_factory", |
| 104 "../base:rtc_base", | 105 "../base:rtc_base", |
| 105 "../base:rtc_base_approved", | 106 "../base:rtc_base_approved", |
| 106 "../call:call_interfaces", | 107 "../call:call_interfaces", |
| 107 "../common_video:common_video", | 108 "../common_video:common_video", |
| 108 "../modules/audio_coding:audio_encoder_factory_interface", | |
| 109 "../modules/audio_coding:builtin_audio_encoder_factory", | |
| 110 "../p2p", | 109 "../p2p", |
| 111 ] | 110 ] |
| 112 | 111 |
| 113 if (is_nacl) { | 112 if (is_nacl) { |
| 114 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 113 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 115 } | 114 } |
| 116 } | 115 } |
| 117 | 116 |
| 118 rtc_static_library("rtc_media") { | 117 rtc_static_library("rtc_media") { |
| 119 # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 118 # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 if (is_ios) { | 438 if (is_ios) { |
| 440 deps += [ ":rtc_media_unittests_bundle_data" ] | 439 deps += [ ":rtc_media_unittests_bundle_data" ] |
| 441 } | 440 } |
| 442 | 441 |
| 443 deps += [ | 442 deps += [ |
| 444 ":rtc_media", | 443 ":rtc_media", |
| 445 ":rtc_media_base", | 444 ":rtc_media_base", |
| 446 ":rtc_media_tests_utils", | 445 ":rtc_media_tests_utils", |
| 447 "../api:video_frame_api", | 446 "../api:video_frame_api", |
| 448 "../api/audio_codecs:builtin_audio_decoder_factory", | 447 "../api/audio_codecs:builtin_audio_decoder_factory", |
| 448 "../api/audio_codecs:builtin_audio_encoder_factory", |
| 449 "../api/video_codecs:video_codecs_api", | 449 "../api/video_codecs:video_codecs_api", |
| 450 "../audio", | 450 "../audio", |
| 451 "../base:rtc_base", | 451 "../base:rtc_base", |
| 452 "../base:rtc_base_approved", | 452 "../base:rtc_base_approved", |
| 453 "../base:rtc_base_tests_main", | 453 "../base:rtc_base_tests_main", |
| 454 "../base:rtc_base_tests_utils", | 454 "../base:rtc_base_tests_utils", |
| 455 "../call:call_interfaces", | 455 "../call:call_interfaces", |
| 456 "../common_video:common_video", | 456 "../common_video:common_video", |
| 457 "../logging:rtc_event_log_api", | 457 "../logging:rtc_event_log_api", |
| 458 "../modules/audio_device:mock_audio_device", | 458 "../modules/audio_device:mock_audio_device", |
| 459 "../modules/audio_processing:audio_processing", | 459 "../modules/audio_processing:audio_processing", |
| 460 "../modules/video_coding:video_coding_utility", | 460 "../modules/video_coding:video_coding_utility", |
| 461 "../modules/video_coding:webrtc_vp8", | 461 "../modules/video_coding:webrtc_vp8", |
| 462 "../p2p:p2p_test_utils", | 462 "../p2p:p2p_test_utils", |
| 463 "../system_wrappers:metrics_default", | 463 "../system_wrappers:metrics_default", |
| 464 "../test:audio_codec_mocks", | 464 "../test:audio_codec_mocks", |
| 465 "../test:test_support", | 465 "../test:test_support", |
| 466 "../voice_engine:voice_engine", | 466 "../voice_engine:voice_engine", |
| 467 ] | 467 ] |
| 468 } | 468 } |
| 469 } | 469 } |
| OLD | NEW |