| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 "d3d9.lib", | 172 "d3d9.lib", |
| 173 "gdi32.lib", | 173 "gdi32.lib", |
| 174 "strmiids.lib", | 174 "strmiids.lib", |
| 175 ] | 175 ] |
| 176 } | 176 } |
| 177 deps += [ | 177 deps += [ |
| 178 "..:webrtc_common", | 178 "..:webrtc_common", |
| 179 "../api:call_api", | 179 "../api:call_api", |
| 180 "../base:rtc_base_approved", | 180 "../base:rtc_base_approved", |
| 181 "../call", | 181 "../call", |
| 182 "../libjingle/xmllite", | |
| 183 "../libjingle/xmpp", | |
| 184 "../modules/video_coding", | 182 "../modules/video_coding", |
| 185 "../p2p", | 183 "../p2p", |
| 186 "../system_wrappers", | 184 "../system_wrappers", |
| 187 "../video", | 185 "../video", |
| 188 "../voice_engine", | 186 "../voice_engine", |
| 189 ] | 187 ] |
| 190 } | 188 } |
| 191 | 189 |
| 192 if (rtc_include_tests) { | 190 if (rtc_include_tests) { |
| 193 config("rtc_unittest_main_config") { | 191 config("rtc_unittest_main_config") { |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 deps += [ | 346 deps += [ |
| 349 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 347 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
| 350 ":rtc_media", | 348 ":rtc_media", |
| 351 ":rtc_unittest_main", | 349 ":rtc_unittest_main", |
| 352 "../audio", | 350 "../audio", |
| 353 "../base:rtc_base_tests_utils", | 351 "../base:rtc_base_tests_utils", |
| 354 "../system_wrappers:metrics_default", | 352 "../system_wrappers:metrics_default", |
| 355 ] | 353 ] |
| 356 } | 354 } |
| 357 } | 355 } |
| OLD | NEW |