From 99194a75ff6ba9ba4dbdc2d18920532950423244 Mon Sep 17 00:00:00 2001 From: Adam Barth Date: Wed, 11 Nov 2015 14:06:55 -0800 Subject: [PATCH] Add a basic sky_shell.mojo Currently sky_shell.mojo can't load any Flutter apps or draw to the screen, but that will come in later patches. --- engine/src/flutter/sky/BUILD.gn | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engine/src/flutter/sky/BUILD.gn b/engine/src/flutter/sky/BUILD.gn index 9839835abba..69148eeb32f 100644 --- a/engine/src/flutter/sky/BUILD.gn +++ b/engine/src/flutter/sky/BUILD.gn @@ -13,6 +13,10 @@ group("sky") { "//sky/tools/sky_snapshot($host_toolchain)", ] + if (is_linux || is_android) { + deps += [ "//sky/shell/platform/mojo" ] + } + if (is_android) { deps += [ "//sky/services/activity" ] }