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

Unified Diff: webrtc/modules/video_coding/BUILD.gn

Issue 2974863003: Use relative paths in GN files. (Closed)
Patch Set: Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/video_capture/BUILD.gn ('k') | webrtc/modules/video_processing/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/video_coding/BUILD.gn
diff --git a/webrtc/modules/video_coding/BUILD.gn b/webrtc/modules/video_coding/BUILD.gn
index 67c8ccd2395f49e7b6c600dd02a153bff7804394..8d15e8b72401f9441801d48302cfa98ba36268f1 100644
--- a/webrtc/modules/video_coding/BUILD.gn
+++ b/webrtc/modules/video_coding/BUILD.gn
@@ -412,7 +412,7 @@ if (rtc_include_tests) {
# gets additional generated targets which would require many lines here to
# cover (which would be confusing to read and hard to maintain).
if (!is_android && !is_ios) {
- visibility = [ "//webrtc/modules:modules_tests" ]
+ visibility = [ "..:modules_tests" ]
}
sources = [
"codecs/h264/test/h264_impl_unittest.cc",
@@ -446,11 +446,11 @@ if (rtc_include_tests) {
}
plot_videoprocessor_integrationtest_resources = [
- "//resources/foreman_128x96.yuv",
- "//resources/foreman_160x120.yuv",
- "//resources/foreman_176x144.yuv",
- "//resources/foreman_320x240.yuv",
- "//resources/foreman_cif.yuv",
+ "../../../resources/foreman_128x96.yuv",
+ "../../../resources/foreman_160x120.yuv",
+ "../../../resources/foreman_176x144.yuv",
+ "../../../resources/foreman_320x240.yuv",
+ "../../../resources/foreman_cif.yuv",
]
if (is_ios || is_mac) {
@@ -519,7 +519,7 @@ if (rtc_include_tests) {
# gets additional generated targets which would require many lines here to
# cover (which would be confusing to read and hard to maintain).
if (!is_android && !is_ios) {
- visibility = [ "//webrtc/modules:modules_unittests" ]
+ visibility = [ "..:modules_unittests" ]
}
sources = [
"codecs/test/packet_manipulator_unittest.cc",
« no previous file with comments | « webrtc/modules/video_capture/BUILD.gn ('k') | webrtc/modules/video_processing/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698