From 9ebcb6a7f9b8223e41fcec858878e0668d3262ab Mon Sep 17 00:00:00 2001 From: MuHong Byun Date: Tue, 22 Jun 2021 09:26:13 +0900 Subject: [PATCH] Revert shell/platform/common/BUILD.gn (#116) * Revert shell/platform/common/BUILD.gn * Required for x64 builds Signed-off-by: MuHong Byun * Changed not to be included in Tizen Signed-off-by: MuHong Byun * Apply review's comment Co-authored-by: Boram Bae Co-authored-by: Boram Bae --- shell/platform/common/BUILD.gn | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shell/platform/common/BUILD.gn b/shell/platform/common/BUILD.gn index ff4669706763c..dde2ee14199d7 100644 --- a/shell/platform/common/BUILD.gn +++ b/shell/platform/common/BUILD.gn @@ -3,6 +3,7 @@ # found in the LICENSE file. import("//flutter/common/config.gni") +import("//flutter/shell/platform/tizen/config.gni") import("//flutter/testing/testing.gni") config("desktop_library_implementation") { @@ -112,6 +113,10 @@ source_set("common_cpp") { "//flutter/shell/platform/common/client_wrapper:client_wrapper", ] + if (!build_tizen_shell) { + deps += [ "//flutter/shell/platform/embedder:embedder_as_internal_library" ] + } + public_deps = [ ":common_cpp_core", "//third_party/rapidjson",