| 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 25 matching lines...) Expand all Loading... |
| 36 # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 36 # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
| 37 # Enabling GN check triggers cyclic dependency error: | 37 # Enabling GN check triggers cyclic dependency error: |
| 38 # //webrtc/media:rtc_media_base -> | 38 # //webrtc/media:rtc_media_base -> |
| 39 # //webrtc/pc:rtc_pc -> | 39 # //webrtc/pc:rtc_pc -> |
| 40 # //webrtc/media:media -> | 40 # //webrtc/media:media -> |
| 41 # //webrtc/media:rtc_media_base | 41 # //webrtc/media:rtc_media_base |
| 42 check_includes = false | 42 check_includes = false |
| 43 defines = [] | 43 defines = [] |
| 44 libs = [] | 44 libs = [] |
| 45 deps = [ | 45 deps = [ |
| 46 "../modules/audio_coding:audio_encoder_factory_interface", | 46 "../api/audio_codecs:audio_codecs_api", |
| 47 "../modules/audio_coding:builtin_audio_encoder_factory", | 47 "../api/audio_codecs:builtin_audio_encoder_factory", |
| 48 ] | 48 ] |
| 49 sources = [ | 49 sources = [ |
| 50 "base/adaptedvideotracksource.cc", | 50 "base/adaptedvideotracksource.cc", |
| 51 "base/adaptedvideotracksource.h", | 51 "base/adaptedvideotracksource.h", |
| 52 "base/audiosource.h", | 52 "base/audiosource.h", |
| 53 "base/codec.cc", | 53 "base/codec.cc", |
| 54 "base/codec.h", | 54 "base/codec.h", |
| 55 "base/cryptoparams.h", | 55 "base/cryptoparams.h", |
| 56 "base/device.h", | 56 "base/device.h", |
| 57 "base/mediachannel.h", | 57 "base/mediachannel.h", |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 if (is_ios) { | 436 if (is_ios) { |
| 437 deps += [ ":rtc_media_unittests_bundle_data" ] | 437 deps += [ ":rtc_media_unittests_bundle_data" ] |
| 438 } | 438 } |
| 439 | 439 |
| 440 deps += [ | 440 deps += [ |
| 441 ":rtc_media", | 441 ":rtc_media", |
| 442 ":rtc_media_base", | 442 ":rtc_media_base", |
| 443 ":rtc_unittest_main", | 443 ":rtc_unittest_main", |
| 444 "../api:video_frame_api", | 444 "../api:video_frame_api", |
| 445 "../api/audio_codecs:builtin_audio_decoder_factory", | 445 "../api/audio_codecs:builtin_audio_decoder_factory", |
| 446 "../api/audio_codecs:builtin_audio_encoder_factory", |
| 446 "../api/video_codecs:video_codecs_api", | 447 "../api/video_codecs:video_codecs_api", |
| 447 "../audio", | 448 "../audio", |
| 448 "../base:rtc_base", | 449 "../base:rtc_base", |
| 449 "../base:rtc_base_approved", | 450 "../base:rtc_base_approved", |
| 450 "../base:rtc_base_tests_utils", | 451 "../base:rtc_base_tests_utils", |
| 451 "../call:call_interfaces", | 452 "../call:call_interfaces", |
| 452 "../common_video:common_video", | 453 "../common_video:common_video", |
| 453 "../logging:rtc_event_log_api", | 454 "../logging:rtc_event_log_api", |
| 454 "../modules/audio_device:mock_audio_device", | 455 "../modules/audio_device:mock_audio_device", |
| 455 "../modules/audio_processing:audio_processing", | 456 "../modules/audio_processing:audio_processing", |
| 456 "../modules/video_coding:video_coding_utility", | 457 "../modules/video_coding:video_coding_utility", |
| 457 "../modules/video_coding:webrtc_vp8", | 458 "../modules/video_coding:webrtc_vp8", |
| 458 "../p2p:rtc_p2p_unittests", | 459 "../p2p:rtc_p2p_unittests", |
| 459 "../system_wrappers:metrics_default", | 460 "../system_wrappers:metrics_default", |
| 460 "../test:test_support", | 461 "../test:test_support", |
| 461 "../voice_engine:voice_engine", | 462 "../voice_engine:voice_engine", |
| 462 ] | 463 ] |
| 463 } | 464 } |
| 464 } | 465 } |
| OLD | NEW |