| 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("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 "devices/gtkvideorenderer.cc", | 159 "devices/gtkvideorenderer.cc", |
| 160 "devices/gtkvideorenderer.h", | 160 "devices/gtkvideorenderer.h", |
| 161 ] | 161 ] |
| 162 public_configs += [ ":gtk-lib" ] | 162 public_configs += [ ":gtk-lib" ] |
| 163 } | 163 } |
| 164 deps += [ | 164 deps += [ |
| 165 "..:webrtc_common", | 165 "..:webrtc_common", |
| 166 "../api:call_api", | 166 "../api:call_api", |
| 167 "../base:rtc_base_approved", | 167 "../base:rtc_base_approved", |
| 168 "../call", | 168 "../call", |
| 169 "../modules/audio_mixer:audio_mixer_impl", |
| 169 "../modules/video_coding", | 170 "../modules/video_coding", |
| 170 "../p2p", | 171 "../p2p", |
| 171 "../system_wrappers", | 172 "../system_wrappers", |
| 172 "../video", | 173 "../video", |
| 173 "../voice_engine", | 174 "../voice_engine", |
| 174 ] | 175 ] |
| 175 } | 176 } |
| 176 | 177 |
| 177 if (rtc_include_tests) { | 178 if (rtc_include_tests) { |
| 178 config("rtc_unittest_main_config") { | 179 config("rtc_unittest_main_config") { |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 334 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
| 334 ":rtc_media", | 335 ":rtc_media", |
| 335 ":rtc_unittest_main", | 336 ":rtc_unittest_main", |
| 336 "../audio", | 337 "../audio", |
| 337 "../base:rtc_base_tests_utils", | 338 "../base:rtc_base_tests_utils", |
| 338 "../modules/audio_device:mock_audio_device", | 339 "../modules/audio_device:mock_audio_device", |
| 339 "../system_wrappers:metrics_default", | 340 "../system_wrappers:metrics_default", |
| 340 ] | 341 ] |
| 341 } | 342 } |
| 342 } | 343 } |
| OLD | NEW |