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