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

Unified Diff: runtime/bin/BUILD.gn

Issue 2378953003: CoreServices is not available on iOS. Don't add it as a dependency. (Closed)
Patch Set: Created 4 years, 3 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: runtime/bin/BUILD.gn
diff --git a/runtime/bin/BUILD.gn b/runtime/bin/BUILD.gn
index 549807b8ff385da0cd227808c59288c9b9740ad6..b2d1db014abd4f1af768043935c441631e8131c3 100644
--- a/runtime/bin/BUILD.gn
+++ b/runtime/bin/BUILD.gn
@@ -374,9 +374,14 @@ source_set("embedded_dart_io") {
if (is_mac || is_ios) {
libs = [
"CoreFoundation.framework",
- "CoreServices.framework",
"Security.framework",
]
+
+ if (is_mac) {
+ libs += [
+ "CoreServices.framework",
+ ]
+ }
} else if (defined(is_fuchsia) && is_fuchsia) {
defines += [
"DART_IO_SECURE_SOCKET_DISABLED"
« 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