Skip to content

Commit

Permalink
Fix paths that were trying to go above the root by using too many "..…
Browse files Browse the repository at this point in the history
…/.."

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 <[email protected]>
Reviewed-by: Mirko Bonadei <[email protected]>
Cr-Commit-Position: refs/heads/master@{#24063}
  • Loading branch information
oprypin authored and Commit Bot committed Jul 23, 2018
1 parent 08410e7 commit da04e06
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion logging/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ if (rtc_include_tests) {
]
deps = [
":rtc_event_log_api",
"../../test:test_support",
"../test:test_support",
]
}
}
2 changes: 1 addition & 1 deletion modules/audio_device/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ if (rtc_include_tests) {
"android/ensure_initialized.h",
]
deps += [
"../../../base",
"../../base",
"../../sdk/android:libjingle_peerconnection_java",
]
}
Expand Down
6 changes: 3 additions & 3 deletions sdk/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -856,15 +856,15 @@ 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",
"../media:rtc_media_tests_utils",
"../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",
]

Expand Down Expand Up @@ -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",
Expand All @@ -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",
]
Expand Down

0 comments on commit da04e06

Please sign in to comment.