From: Chandan Padhi Date: Thu, 17 Nov 2022 05:57:14 +0000 (+0530) Subject: Enable chrome with aura for desktop X-Git-Tag: submit/tizen/20230227.160252~204 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F39%2F284439%2F2;p=platform%2Fframework%2Fweb%2Fchromium-efl.git Enable chrome with aura for desktop This commit fixes build errors to bring up default chrome with aura for desktop. Build: $ ./tizen_src/build/build_desktop.sh Launch: $ ./out.x64/chrome --no-sandbox --ignore-gpu-blocklist --in-process-gpu --use-gl=egl Change-Id: Ic65a5142060a6d86737113f3e30e406f810ef781 Signed-off-by: Chandan Padhi --- diff --git a/tizen_src/build/common.sh b/tizen_src/build/common.sh index 669c40a..9667aaf 100755 --- a/tizen_src/build/common.sh +++ b/tizen_src/build/common.sh @@ -181,7 +181,7 @@ function hostGnChromiumEfl() { function hostNinja() { if [[ $SKIP_NINJA == 0 ]]; then - TARGETS="chromium-ewk efl_webprocess efl_webview_app ubrowser content_shell" + TARGETS="chromium-ewk efl_webprocess efl_webview_app ubrowser content_shell chrome" if [[ $BUILD_EWK_UNITTESTS == 1 ]]; then TARGETS="$TARGETS ewk_unittests" fi diff --git a/tizen_src/build/gn_chromiumefl.sh b/tizen_src/build/gn_chromiumefl.sh index 38f8ef1..4d25b31 100755 --- a/tizen_src/build/gn_chromiumefl.sh +++ b/tizen_src/build/gn_chromiumefl.sh @@ -166,7 +166,6 @@ add_tizen_flags() { gcc_ver=\"$(getGccVersion)\" python_ver=\"$(getPythonVersion)\" is_official_build=true - linux_use_bundled_binutils=false enable_nacl=false enable_basic_printing=false enable_print_preview=false diff --git a/tizen_src/ewk/BUILD.gn b/tizen_src/ewk/BUILD.gn index 9436b36..9bff27b 100644 --- a/tizen_src/ewk/BUILD.gn +++ b/tizen_src/ewk/BUILD.gn @@ -5,7 +5,7 @@ group("chromium_efl_all") { testonly = true deps = [ - # "//tizen_src/ewk/unittest:ewk_unittests", + "//chrome:chrome", "//tizen_src/ewk/efl_webview_app:efl_webview_app", "//tizen_src/ewk/ubrowser:ubrowser", ]