| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 # Enabling GN check triggers cyclic dependency error: | 114 # Enabling GN check triggers cyclic dependency error: |
| 115 # //webrtc/media:media -> | 115 # //webrtc/media:media -> |
| 116 # //webrtc/media:rtc_media -> | 116 # //webrtc/media:rtc_media -> |
| 117 # //webrtc/pc:rtc_pc -> | 117 # //webrtc/pc:rtc_pc -> |
| 118 # //webrtc/media:media | 118 # //webrtc/media:media |
| 119 check_includes = false | 119 check_includes = false |
| 120 defines = [] | 120 defines = [] |
| 121 libs = [] | 121 libs = [] |
| 122 deps = [] | 122 deps = [] |
| 123 sources = [ | 123 sources = [ |
| 124 "engine/adm_helpers.cc", |
| 125 "engine/adm_helpers.h", |
| 124 "engine/apm_helpers.cc", | 126 "engine/apm_helpers.cc", |
| 125 "engine/apm_helpers.h", | 127 "engine/apm_helpers.h", |
| 126 "engine/internaldecoderfactory.cc", | 128 "engine/internaldecoderfactory.cc", |
| 127 "engine/internaldecoderfactory.h", | 129 "engine/internaldecoderfactory.h", |
| 128 "engine/internalencoderfactory.cc", | 130 "engine/internalencoderfactory.cc", |
| 129 "engine/internalencoderfactory.h", | 131 "engine/internalencoderfactory.h", |
| 130 "engine/nullwebrtcvideoengine.h", | 132 "engine/nullwebrtcvideoengine.h", |
| 131 "engine/payload_type_mapper.cc", | 133 "engine/payload_type_mapper.cc", |
| 132 "engine/payload_type_mapper.h", | 134 "engine/payload_type_mapper.h", |
| 133 "engine/simulcast.cc", | 135 "engine/simulcast.cc", |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "../modules/audio_processing:audio_processing", | 449 "../modules/audio_processing:audio_processing", |
| 448 "../modules/video_coding:video_coding_utility", | 450 "../modules/video_coding:video_coding_utility", |
| 449 "../modules/video_coding:webrtc_vp8", | 451 "../modules/video_coding:webrtc_vp8", |
| 450 "../p2p:rtc_p2p_unittests", | 452 "../p2p:rtc_p2p_unittests", |
| 451 "../system_wrappers:metrics_default", | 453 "../system_wrappers:metrics_default", |
| 452 "../test:test_support", | 454 "../test:test_support", |
| 453 "../voice_engine:voice_engine", | 455 "../voice_engine:voice_engine", |
| 454 ] | 456 ] |
| 455 } | 457 } |
| 456 } | 458 } |
| OLD | NEW |