From: Arnaud Renevier Date: Fri, 5 Jun 2015 17:32:19 +0000 (-0700) Subject: Allow building xwalk with --xwalk on targets X-Git-Tag: submit/tizen/20201118.160233~832 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=681ec7a3581b8d0356620a1fe1ab65becb56201b;p=platform%2Fframework%2Fweb%2Fchromium-efl.git Allow building xwalk with --xwalk on targets Add support for --xwalk command line switch when building with gbs Bug: http://web.sec.samsung.net/bugzilla/show_bug.cgi?id=11619 Reviewed by: Antonio Gomes, SeungSeop Park Change-Id: I2b20105267e0d7a24d2cfcfedb5d28c34a7fd20e Signed-off-by: Arnaud Renevier --- diff --git a/tizen_src/build/common.sh b/tizen_src/build/common.sh index 158d086..0a04cf4 100755 --- a/tizen_src/build/common.sh +++ b/tizen_src/build/common.sh @@ -229,6 +229,11 @@ function setupAndExecuteTargetBuild() { count=$(( $count + 1 )) ARGS[$count]="_skip_gyp 1" ;; + --xwalk) + ARGS[$count]=--define + count=$(( $count + 1 )) + ARGS[$count]="build_xwalk 1" + ;; --gbs-debug) ARGS[$count]=--debug ;;