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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 public_deps += [ ":rtc_h264_profile_id" ] | 127 public_deps += [ ":rtc_h264_profile_id" ] |
128 | 128 |
129 if (is_nacl) { | 129 if (is_nacl) { |
130 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 130 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
131 } | 131 } |
132 } | 132 } |
133 | 133 |
134 rtc_static_library("rtc_audio_video") { | 134 rtc_static_library("rtc_audio_video") { |
135 defines = [] | 135 defines = [] |
136 libs = [] | 136 libs = [] |
137 deps = [] | 137 deps = [ |
| 138 "../modules/video_coding:video_coding_utility", |
| 139 ] |
138 sources = [ | 140 sources = [ |
139 "engine/adm_helpers.cc", | 141 "engine/adm_helpers.cc", |
140 "engine/adm_helpers.h", | 142 "engine/adm_helpers.h", |
141 "engine/apm_helpers.cc", | 143 "engine/apm_helpers.cc", |
142 "engine/apm_helpers.h", | 144 "engine/apm_helpers.h", |
143 "engine/constants.h", | 145 "engine/constants.h", |
144 "engine/internaldecoderfactory.cc", | 146 "engine/internaldecoderfactory.cc", |
145 "engine/internaldecoderfactory.h", | 147 "engine/internaldecoderfactory.h", |
146 "engine/internalencoderfactory.cc", | 148 "engine/internalencoderfactory.cc", |
147 "engine/internalencoderfactory.h", | 149 "engine/internalencoderfactory.h", |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 rtc_source_set("rtc_media_tests_utils") { | 333 rtc_source_set("rtc_media_tests_utils") { |
332 testonly = true | 334 testonly = true |
333 | 335 |
334 include_dirs = [] | 336 include_dirs = [] |
335 public_deps = [] | 337 public_deps = [] |
336 deps = [ | 338 deps = [ |
337 "../call:video_stream_api", | 339 "../call:video_stream_api", |
338 "../modules/audio_coding:rent_a_codec", | 340 "../modules/audio_coding:rent_a_codec", |
339 "../modules/audio_processing:audio_processing", | 341 "../modules/audio_processing:audio_processing", |
340 "../modules/rtp_rtcp:rtp_rtcp", | 342 "../modules/rtp_rtcp:rtp_rtcp", |
| 343 "../modules/video_coding:video_coding_utility", |
341 "../p2p:rtc_p2p", | 344 "../p2p:rtc_p2p", |
342 ] | 345 ] |
343 sources = [ | 346 sources = [ |
344 "base/fakemediaengine.h", | 347 "base/fakemediaengine.h", |
345 "base/fakenetworkinterface.h", | 348 "base/fakenetworkinterface.h", |
346 "base/fakertp.cc", | 349 "base/fakertp.cc", |
347 "base/fakertp.h", | 350 "base/fakertp.h", |
348 "base/fakevideocapturer.h", | 351 "base/fakevideocapturer.h", |
349 "base/fakevideorenderer.h", | 352 "base/fakevideorenderer.h", |
350 "base/test/mock_mediachannel.h", | 353 "base/test/mock_mediachannel.h", |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 "../rtc_base:rtc_base_approved", | 537 "../rtc_base:rtc_base_approved", |
535 "../rtc_base:rtc_base_tests_main", | 538 "../rtc_base:rtc_base_tests_main", |
536 "../rtc_base:rtc_base_tests_utils", | 539 "../rtc_base:rtc_base_tests_utils", |
537 "../system_wrappers:metrics_default", | 540 "../system_wrappers:metrics_default", |
538 "../test:audio_codec_mocks", | 541 "../test:audio_codec_mocks", |
539 "../test:test_support", | 542 "../test:test_support", |
540 "../voice_engine:voice_engine", | 543 "../voice_engine:voice_engine", |
541 ] | 544 ] |
542 } | 545 } |
543 } | 546 } |
OLD | NEW |