Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(832)

Side by Side Diff: webrtc/media/BUILD.gn

Issue 2426563003: Moved transport.h from webrtc/ to webrtc/api, created build target and updated dependencies. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 ] 173 ]
174 libs += [ 174 libs += [
175 "d3d9.lib", 175 "d3d9.lib",
176 "gdi32.lib", 176 "gdi32.lib",
177 "strmiids.lib", 177 "strmiids.lib",
178 ] 178 ]
179 } 179 }
180 deps += [ 180 deps += [
181 "..:webrtc_common", 181 "..:webrtc_common",
182 "../api:call_api", 182 "../api:call_api",
183 "../api:transport_api",
183 "../base:rtc_base_approved", 184 "../base:rtc_base_approved",
184 "../call", 185 "../call",
185 "../libjingle/xmllite", 186 "../libjingle/xmllite",
186 "../libjingle/xmpp", 187 "../libjingle/xmpp",
187 "../modules/video_coding", 188 "../modules/video_coding",
188 "../p2p", 189 "../p2p",
189 "../system_wrappers", 190 "../system_wrappers",
190 "../video", 191 "../video",
191 "../voice_engine", 192 "../voice_engine",
192 ] 193 ]
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 deps += [ 354 deps += [
354 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. 355 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243.
355 ":rtc_media", 356 ":rtc_media",
356 ":rtc_unittest_main", 357 ":rtc_unittest_main",
357 "../audio", 358 "../audio",
358 "../base:rtc_base_tests_utils", 359 "../base:rtc_base_tests_utils",
359 "../system_wrappers:metrics_default", 360 "../system_wrappers:metrics_default",
360 ] 361 ]
361 } 362 }
362 } 363 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698