mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
CoreServices is not available on iOS. Don't add it as a dependency.
R=zra@google.com Review URL: https://codereview.chromium.org/2378953003 .
This commit is contained in:
parent
539452bd3e
commit
cfbf1a511e
1 changed files with 6 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue