| 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 "../api:call_api", | 224 "../api:call_api", |
| 225 "../api:transport_api", | 225 "../api:transport_api", |
| 226 "../api:video_frame_api", | 226 "../api:video_frame_api", |
| 227 "../api/audio_codecs:audio_codecs_api", | 227 "../api/audio_codecs:audio_codecs_api", |
| 228 "../api/audio_codecs:builtin_audio_decoder_factory", | 228 "../api/audio_codecs:builtin_audio_decoder_factory", |
| 229 "../base:rtc_base", | 229 "../base:rtc_base", |
| 230 "../base:rtc_base_approved", | 230 "../base:rtc_base_approved", |
| 231 "../call", | 231 "../call", |
| 232 "../common_video:common_video", | 232 "../common_video:common_video", |
| 233 "../modules/audio_coding:rent_a_codec", | 233 "../modules/audio_coding:rent_a_codec", |
| 234 "../modules/audio_device:audio_device", | 234 "../modules/audio_device", |
| 235 "../modules/audio_mixer:audio_mixer_impl", | 235 "../modules/audio_mixer", |
| 236 "../modules/audio_processing:audio_processing", | 236 "../modules/audio_processing", |
| 237 "../modules/audio_processing/aec_dump", |
| 237 "../modules/video_capture:video_capture_module", | 238 "../modules/video_capture:video_capture_module", |
| 238 "../modules/video_coding", | 239 "../modules/video_coding", |
| 239 "../modules/video_coding:webrtc_h264", | 240 "../modules/video_coding:webrtc_h264", |
| 240 "../modules/video_coding:webrtc_vp8", | 241 "../modules/video_coding:webrtc_vp8", |
| 241 "../modules/video_coding:webrtc_vp9", | 242 "../modules/video_coding:webrtc_vp9", |
| 242 "../p2p:rtc_p2p", | 243 "../p2p:rtc_p2p", |
| 243 "../system_wrappers", | 244 "../system_wrappers", |
| 244 "../video", | 245 "../video", |
| 245 "../voice_engine", | 246 "../voice_engine", |
| 246 ] | 247 ] |
| 248 |
| 249 if (rtc_enable_protobuf) { |
| 250 deps += [ "../modules/audio_processing/aec_dump:aec_dump_impl" ] |
| 251 } else { |
| 252 deps += [ "../modules/audio_processing/aec_dump:null_aec_dump_factory" ] |
| 253 } |
| 247 } | 254 } |
| 248 | 255 |
| 249 if (rtc_include_tests) { | 256 if (rtc_include_tests) { |
| 250 config("rtc_unittest_main_config") { | 257 config("rtc_unittest_main_config") { |
| 251 # GN orders flags on a target before flags from configs. The default config | 258 # GN orders flags on a target before flags from configs. The default config |
| 252 # adds -Wall, and this flag have to be after -Wall -- so they need to | 259 # adds -Wall, and this flag have to be after -Wall -- so they need to |
| 253 # come from a config and can"t be on the target directly. | 260 # come from a config and can"t be on the target directly. |
| 254 if (is_clang && is_ios) { | 261 if (is_clang && is_ios) { |
| 255 cflags = [ "-Wno-unused-variable" ] | 262 cflags = [ "-Wno-unused-variable" ] |
| 256 } | 263 } |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 "../modules/audio_processing:audio_processing", | 456 "../modules/audio_processing:audio_processing", |
| 450 "../modules/video_coding:video_coding_utility", | 457 "../modules/video_coding:video_coding_utility", |
| 451 "../modules/video_coding:webrtc_vp8", | 458 "../modules/video_coding:webrtc_vp8", |
| 452 "../p2p:rtc_p2p_unittests", | 459 "../p2p:rtc_p2p_unittests", |
| 453 "../system_wrappers:metrics_default", | 460 "../system_wrappers:metrics_default", |
| 454 "../test:test_support", | 461 "../test:test_support", |
| 455 "../voice_engine:voice_engine", | 462 "../voice_engine:voice_engine", |
| 456 ] | 463 ] |
| 457 } | 464 } |
| 458 } | 465 } |
| OLD | NEW |