Fix paths that were trying to go above the root by using too many "../.."

This doesn't cause problems because seems like GN just ignores these attempts and confines everything to the root.

Bug: None
Change-Id: Ief50b6e10f3950b319d0bde547f91dcc7f237cda
Reviewed-on: https://webrtc-review.googlesource.com/90041
Commit-Queue: Oleh Prypin <oprypin@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#24063}
This commit is contained in:
Oleh Prypin
2018-07-23 10:04:12 +02:00
committed by Commit Bot
parent 08410e7162
commit da04e06e04
3 changed files with 5 additions and 5 deletions

View File

@ -439,7 +439,7 @@ if (rtc_include_tests) {
]
deps = [
":rtc_event_log_api",
"../../test:test_support",
"../test:test_support",
]
}
}

View File

@ -485,7 +485,7 @@ if (rtc_include_tests) {
"android/ensure_initialized.h",
]
deps += [
"../../../base",
"../../base",
"../../sdk/android:libjingle_peerconnection_java",
]
}

View File

@ -856,8 +856,6 @@ if (is_ios || is_mac) {
":videoframebuffer_objc",
":videosource_objc",
":videotoolbox_objc",
"../../system_wrappers:system_wrappers",
"../../system_wrappers:system_wrappers_default",
"../api/video:video_frame_i420",
"../common_video:common_video",
"../media:rtc_media_base",
@ -865,6 +863,8 @@ if (is_ios || is_mac) {
"../modules:module_api",
"../rtc_base:rtc_base",
"../rtc_base:rtc_base_tests_utils",
"../system_wrappers:system_wrappers",
"../system_wrappers:system_wrappers_default",
"//third_party/libyuv",
]
@ -966,7 +966,6 @@ if (is_ios || is_mac) {
":videoframebuffer_objc",
":videosource_objc",
":videotoolbox_objc",
"../../system_wrappers:system_wrappers_default",
"../api/audio_codecs:audio_codecs_api",
"../api/audio_codecs:builtin_audio_decoder_factory",
"../api/audio_codecs:builtin_audio_encoder_factory",
@ -977,6 +976,7 @@ if (is_ios || is_mac) {
"../modules/audio_processing:audio_processing",
"../modules/video_coding:video_codec_interface",
"../rtc_base:rtc_base_tests_utils",
"../system_wrappers:system_wrappers_default",
"//test:test_support",
"//third_party/ocmock",
]