From 681ec7a3581b8d0356620a1fe1ab65becb56201b Mon Sep 17 00:00:00 2001 From: Arnaud Renevier Date: Fri, 5 Jun 2015 10:32:19 -0700 Subject: [PATCH] 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 --- tizen_src/build/common.sh | 5 +++++ 1 file changed, 5 insertions(+) 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 ;; -- 2.7.4