提交 bb161eee 编写于 作者: C Chinmay Garde

Make the Mac target deps look similar to iOS

Fixes Mac builds
上级 b15dd6ac
...@@ -8,8 +8,8 @@ group("default") { ...@@ -8,8 +8,8 @@ group("default") {
deps = [ deps = [
"//sky", "//sky",
] ]
if (!is_ios) { if (!is_ios && !is_mac) {
# Mojo shell does not exist on ios # Mojo shell does not exist on iOS or Mac
deps += [ "//services/sky" ] deps += [ "//services/sky" ]
} }
} }
......
...@@ -24,7 +24,7 @@ copy("sky_shell") { ...@@ -24,7 +24,7 @@ copy("sky_shell") {
deps = [ deps = [
"//sky/shell", "//sky/shell",
] ]
} else if (is_ios) { } else if (is_ios || is_mac) {
sources = [ sources = [
"$root_build_dir/Sky.app", "$root_build_dir/Sky.app",
] ]
...@@ -99,7 +99,7 @@ group("dist") { ...@@ -99,7 +99,7 @@ group("dist") {
":sky_viewer", ":sky_viewer",
] ]
if (!is_ios) { if (!is_ios && !is_mac) {
deps += [ ":sky_shell" ] deps += [ ":sky_shell" ]
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册