| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 deps += [ "//third_party/usrsctp" ] | 213 deps += [ "//third_party/usrsctp" ] |
| 214 } | 214 } |
| 215 | 215 |
| 216 public_configs = [] | 216 public_configs = [] |
| 217 if (build_with_chromium) { | 217 if (build_with_chromium) { |
| 218 deps += [ "../modules/video_capture:video_capture" ] | 218 deps += [ "../modules/video_capture:video_capture" ] |
| 219 } else { | 219 } else { |
| 220 public_configs += [ ":rtc_media_defines_config" ] | 220 public_configs += [ ":rtc_media_defines_config" ] |
| 221 deps += [ "../modules/video_capture:video_capture_internal_impl" ] | 221 deps += [ "../modules/video_capture:video_capture_internal_impl" ] |
| 222 } | 222 } |
| 223 if (rtc_enable_protobuf) { | |
| 224 deps += [ "../modules/audio_processing/aec_dump:aec_dump_impl" ] | |
| 225 } else { | |
| 226 deps += [ "../modules/audio_processing/aec_dump:null_aec_dump_factory" ] | |
| 227 } | |
| 228 deps += [ | 223 deps += [ |
| 229 ":rtc_media_base", | 224 ":rtc_media_base", |
| 230 "..:webrtc_common", | 225 "..:webrtc_common", |
| 231 "../api:call_api", | 226 "../api:call_api", |
| 232 "../api:transport_api", | 227 "../api:transport_api", |
| 233 "../api:video_frame_api", | 228 "../api:video_frame_api", |
| 234 "../api/audio_codecs:audio_codecs_api", | 229 "../api/audio_codecs:audio_codecs_api", |
| 235 "../api/audio_codecs:builtin_audio_decoder_factory", | 230 "../api/audio_codecs:builtin_audio_decoder_factory", |
| 236 "../api/video_codecs:video_codecs_api", | 231 "../api/video_codecs:video_codecs_api", |
| 237 "../base:rtc_base", | 232 "../base:rtc_base", |
| 238 "../base:rtc_base_approved", | 233 "../base:rtc_base_approved", |
| 239 "../call", | 234 "../call", |
| 240 "../common_video:common_video", | 235 "../common_video:common_video", |
| 241 "../modules/audio_coding:rent_a_codec", | 236 "../modules/audio_coding:rent_a_codec", |
| 242 "../modules/audio_device:audio_device", | 237 "../modules/audio_device:audio_device", |
| 243 "../modules/audio_mixer:audio_mixer_impl", | 238 "../modules/audio_mixer:audio_mixer_impl", |
| 244 "../modules/audio_processing:audio_processing", | 239 "../modules/audio_processing:audio_processing", |
| 245 "../modules/audio_processing/aec_dump", | |
| 246 "../modules/video_capture:video_capture_module", | 240 "../modules/video_capture:video_capture_module", |
| 247 "../modules/video_coding", | 241 "../modules/video_coding", |
| 248 "../modules/video_coding:webrtc_h264", | 242 "../modules/video_coding:webrtc_h264", |
| 249 "../modules/video_coding:webrtc_vp8", | 243 "../modules/video_coding:webrtc_vp8", |
| 250 "../modules/video_coding:webrtc_vp9", | 244 "../modules/video_coding:webrtc_vp9", |
| 251 "../p2p:rtc_p2p", | 245 "../p2p:rtc_p2p", |
| 252 "../system_wrappers", | 246 "../system_wrappers", |
| 253 "../video", | 247 "../video", |
| 254 "../voice_engine", | 248 "../voice_engine", |
| 255 ] | 249 ] |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 "../modules/video_coding:video_coding_utility", | 457 "../modules/video_coding:video_coding_utility", |
| 464 "../modules/video_coding:webrtc_vp8", | 458 "../modules/video_coding:webrtc_vp8", |
| 465 "../p2p:p2p_test_utils", | 459 "../p2p:p2p_test_utils", |
| 466 "../system_wrappers:metrics_default", | 460 "../system_wrappers:metrics_default", |
| 467 "../test:audio_codec_mocks", | 461 "../test:audio_codec_mocks", |
| 468 "../test:test_support", | 462 "../test:test_support", |
| 469 "../voice_engine:voice_engine", | 463 "../voice_engine:voice_engine", |
| 470 ] | 464 ] |
| 471 } | 465 } |
| 472 } | 466 } |
| OLD | NEW |