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

Unified Diff: webrtc/tools/BUILD.gn

Issue 1919673002: Fix dependencies on mac in tools/BUILD.gn. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/BUILD.gn
diff --git a/webrtc/tools/BUILD.gn b/webrtc/tools/BUILD.gn
index 603e99944c612ca9d7fd1ed0ea5cfeea42dea400..c71d31d34bb3e655e4440dc95b1b2166f339cf68 100644
--- a/webrtc/tools/BUILD.gn
+++ b/webrtc/tools/BUILD.gn
@@ -47,6 +47,9 @@ executable("frame_analyzer") {
":command_line_parser",
":video_quality_analysis",
]
+ if (is_mac) {
+ libs = [ "Foundation.framework" ]
+ }
}
executable("rgba_to_i420_converter") {
@@ -59,6 +62,9 @@ executable("rgba_to_i420_converter") {
":command_line_parser",
"../common_video",
]
+ if (is_mac) {
+ libs = [ "Foundation.framework" ]
+ }
}
# TODO(kjellander): Convert all of tools.gyp into GN here.
@@ -79,5 +85,8 @@ if (!build_with_chromium) {
"../test:test_support_main",
"//testing/gtest",
]
+ if (is_mac) {
+ libs = [ "Foundation.framework" ]
+ }
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698