Stop using public_deps in pc/.
TBR=phoglund@webrtc.org Bug: webrtc:8603 Change-Id: If18e5a4d212392bbd9b4e1f9c2f00ee79a2ab348 No-Try: True Reviewed-on: https://webrtc-review.googlesource.com/29864 Reviewed-by: Edward Lemur <ehmaldonado@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21139}
This commit is contained in:

committed by
Commit Bot

parent
904f8698d3
commit
e51f785043
@ -430,6 +430,7 @@ if (rtc_include_tests) {
|
|||||||
deps = [
|
deps = [
|
||||||
"../api:video_frame_api_i420",
|
"../api:video_frame_api_i420",
|
||||||
"../pc:rtc_pc",
|
"../pc:rtc_pc",
|
||||||
|
"../pc:rtc_pc_base",
|
||||||
"../test:field_trial",
|
"../test:field_trial",
|
||||||
]
|
]
|
||||||
sources = [
|
sources = [
|
||||||
|
@ -33,6 +33,7 @@ rtc_static_library("ortc") {
|
|||||||
# PeerConnection code shares, so that ortc can depend on that instead of
|
# PeerConnection code shares, so that ortc can depend on that instead of
|
||||||
# libjingle_peerconnection.
|
# libjingle_peerconnection.
|
||||||
deps = [
|
deps = [
|
||||||
|
"../api:libjingle_peerconnection_api",
|
||||||
"../api:optional",
|
"../api:optional",
|
||||||
"../api:ortc_api",
|
"../api:ortc_api",
|
||||||
"../call:call_interfaces",
|
"../call:call_interfaces",
|
||||||
@ -43,7 +44,9 @@ rtc_static_library("ortc") {
|
|||||||
"../modules/audio_processing:audio_processing",
|
"../modules/audio_processing:audio_processing",
|
||||||
"../p2p:rtc_p2p",
|
"../p2p:rtc_p2p",
|
||||||
"../pc:libjingle_peerconnection",
|
"../pc:libjingle_peerconnection",
|
||||||
|
"../pc:peerconnection",
|
||||||
"../pc:rtc_pc",
|
"../pc:rtc_pc",
|
||||||
|
"../pc:rtc_pc_base",
|
||||||
"../rtc_base:rtc_base",
|
"../rtc_base:rtc_base",
|
||||||
"../rtc_base:rtc_base_approved",
|
"../rtc_base:rtc_base_approved",
|
||||||
]
|
]
|
||||||
|
22
pc/BUILD.gn
22
pc/BUILD.gn
@ -13,7 +13,7 @@ if (is_android) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group("pc") {
|
group("pc") {
|
||||||
public_deps = [
|
deps = [
|
||||||
":rtc_pc",
|
":rtc_pc",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -92,11 +92,8 @@ rtc_static_library("rtc_pc_base") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
rtc_source_set("rtc_pc") {
|
rtc_source_set("rtc_pc") {
|
||||||
public_deps = [
|
|
||||||
":rtc_pc_base",
|
|
||||||
]
|
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
":rtc_pc_base",
|
||||||
"../media:rtc_audio_video",
|
"../media:rtc_audio_video",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -176,6 +173,7 @@ rtc_static_library("peerconnection") {
|
|||||||
":rtc_pc_base",
|
":rtc_pc_base",
|
||||||
"..:webrtc_common",
|
"..:webrtc_common",
|
||||||
"../api:call_api",
|
"../api:call_api",
|
||||||
|
"../api:libjingle_peerconnection_api",
|
||||||
"../api:optional",
|
"../api:optional",
|
||||||
"../api:rtc_stats_api",
|
"../api:rtc_stats_api",
|
||||||
"../api/video_codecs:video_codecs_api",
|
"../api/video_codecs:video_codecs_api",
|
||||||
@ -190,10 +188,6 @@ rtc_static_library("peerconnection") {
|
|||||||
"../system_wrappers",
|
"../system_wrappers",
|
||||||
"../system_wrappers:field_trial_api",
|
"../system_wrappers:field_trial_api",
|
||||||
]
|
]
|
||||||
|
|
||||||
public_deps = [
|
|
||||||
"../api:libjingle_peerconnection_api",
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# This target implements CreatePeerConnectionFactory methods that will create a
|
# This target implements CreatePeerConnectionFactory methods that will create a
|
||||||
@ -233,7 +227,7 @@ rtc_static_library("create_pc_factory") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
rtc_source_set("libjingle_peerconnection") {
|
rtc_source_set("libjingle_peerconnection") {
|
||||||
public_deps = [
|
deps = [
|
||||||
":create_pc_factory",
|
":create_pc_factory",
|
||||||
":peerconnection",
|
":peerconnection",
|
||||||
"../api:libjingle_peerconnection_api",
|
"../api:libjingle_peerconnection_api",
|
||||||
@ -287,7 +281,9 @@ if (rtc_include_tests) {
|
|||||||
":libjingle_peerconnection",
|
":libjingle_peerconnection",
|
||||||
":pc_test_utils",
|
":pc_test_utils",
|
||||||
":rtc_pc",
|
":rtc_pc",
|
||||||
|
":rtc_pc_base",
|
||||||
"../api:array_view",
|
"../api:array_view",
|
||||||
|
"../api:libjingle_peerconnection_api",
|
||||||
"../logging:rtc_event_log_api",
|
"../logging:rtc_event_log_api",
|
||||||
"../media:rtc_media_base",
|
"../media:rtc_media_base",
|
||||||
"../media:rtc_media_tests_utils",
|
"../media:rtc_media_tests_utils",
|
||||||
@ -333,6 +329,7 @@ if (rtc_include_tests) {
|
|||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
":libjingle_peerconnection",
|
":libjingle_peerconnection",
|
||||||
|
":peerconnection",
|
||||||
":rtc_pc_base",
|
":rtc_pc_base",
|
||||||
"..:webrtc_common",
|
"..:webrtc_common",
|
||||||
"../api:libjingle_peerconnection_test_api",
|
"../api:libjingle_peerconnection_test_api",
|
||||||
@ -436,7 +433,10 @@ if (rtc_include_tests) {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
deps = []
|
deps = [
|
||||||
|
":peerconnection",
|
||||||
|
":rtc_pc_base",
|
||||||
|
]
|
||||||
if (is_android) {
|
if (is_android) {
|
||||||
deps += [ ":android_black_magic" ]
|
deps += [ ":android_black_magic" ]
|
||||||
}
|
}
|
||||||
|
@ -339,6 +339,8 @@ if (is_ios || is_mac) {
|
|||||||
":video_objc",
|
":video_objc",
|
||||||
":videotoolbox_objc",
|
":videotoolbox_objc",
|
||||||
":videotracksource_objc",
|
":videotracksource_objc",
|
||||||
|
"../api:libjingle_peerconnection_api",
|
||||||
|
"../api:peerconnection_and_implicit_call_api",
|
||||||
"../api:video_frame_api",
|
"../api:video_frame_api",
|
||||||
"../api/audio_codecs:builtin_audio_decoder_factory",
|
"../api/audio_codecs:builtin_audio_decoder_factory",
|
||||||
"../api/audio_codecs:builtin_audio_encoder_factory",
|
"../api/audio_codecs:builtin_audio_encoder_factory",
|
||||||
@ -505,6 +507,8 @@ if (is_ios || is_mac) {
|
|||||||
":common_objc",
|
":common_objc",
|
||||||
":corevideoframebuffer_objc",
|
":corevideoframebuffer_objc",
|
||||||
":videotracksource_objc",
|
":videotracksource_objc",
|
||||||
|
"../api:libjingle_peerconnection_api",
|
||||||
|
"../api:peerconnection_and_implicit_call_api",
|
||||||
"../api:video_frame_api",
|
"../api:video_frame_api",
|
||||||
"../api/video_codecs:video_codecs_api",
|
"../api/video_codecs:video_codecs_api",
|
||||||
"../common_video",
|
"../common_video",
|
||||||
|
@ -362,6 +362,8 @@ rtc_static_library("peerconnection_jni") {
|
|||||||
":generated_external_classes_jni",
|
":generated_external_classes_jni",
|
||||||
":generated_peerconnection_jni",
|
":generated_peerconnection_jni",
|
||||||
"../..:webrtc_common",
|
"../..:webrtc_common",
|
||||||
|
"../../api:libjingle_peerconnection_api",
|
||||||
|
"../../api:peerconnection_and_implicit_call_api",
|
||||||
"../../api/video_codecs:video_codecs_api",
|
"../../api/video_codecs:video_codecs_api",
|
||||||
"../../media:rtc_data",
|
"../../media:rtc_data",
|
||||||
"../../media:rtc_media_base",
|
"../../media:rtc_media_base",
|
||||||
|
@ -354,6 +354,7 @@ webrtc_fuzzer_test("sdp_parser_fuzzer") {
|
|||||||
"sdp_parser_fuzzer.cc",
|
"sdp_parser_fuzzer.cc",
|
||||||
]
|
]
|
||||||
deps = [
|
deps = [
|
||||||
|
"../../api:libjingle_peerconnection_api",
|
||||||
"../../pc:libjingle_peerconnection",
|
"../../pc:libjingle_peerconnection",
|
||||||
]
|
]
|
||||||
seed_corpus = "corpora/sdp-corpus"
|
seed_corpus = "corpora/sdp-corpus"
|
||||||
|
Reference in New Issue
Block a user