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

Unified Diff: sky/BUILD.gn

Issue 1183223003: Don't build sky_packager on Mac hosts (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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: sky/BUILD.gn
diff --git a/sky/BUILD.gn b/sky/BUILD.gn
index f1fcc7a77a8f04d738a028e234446948d186996d..ecd27d8e1687076b9e0007f829547f75dc53fe15 100644
--- a/sky/BUILD.gn
+++ b/sky/BUILD.gn
@@ -14,12 +14,16 @@ group("sky") {
"//sky/engine/web:sky_unittests",
"//sky/engine/wtf:unittests",
"//sky/tools/imagediff",
- "//sky/tools/packager($host_toolchain)",
"//sky/tools/tester",
"//sky/viewer",
":sky_apk",
]
+ # Mac's host toolchain doesn't support C++11 and can't build the packager.
+ if (host_os != "mac") {
+ deps += [ "//sky/tools/packager($host_toolchain)" ]
+ }
+
if (is_android) {
deps += [ "//sky/apk/stocks" ]
}
« 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