From 3e67b3e8612da0bfafda758993dad7b3558381ba Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Fri, 19 Oct 2018 14:05:03 -0700 Subject: [PATCH] Don't attempt to build any platform target on Fuchsia. --- shell/platform/BUILD.gn | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shell/platform/BUILD.gn b/shell/platform/BUILD.gn index ae3b1003f22fe..1e12ffe1e604e 100644 --- a/shell/platform/BUILD.gn +++ b/shell/platform/BUILD.gn @@ -15,8 +15,9 @@ group("platform") { deps = [ "embedder", ] - } else if (is_win) { - # There is no platform target on windows. Instead, only a tester is used. + } else if (is_win || is_fuchsia) { + # There is no platform target on Windows. Fuchsia has its own runner + # implementation. deps = [] } else { assert(false, "Unknown/Unsupported platform.")