From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 07 Oct 2021 12:20:25 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mYQVl-0006X1-LQ for lore@lore.pengutronix.de; Thu, 07 Oct 2021 12:20:25 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mYQVl-0007FA-4b; Thu, 07 Oct 2021 12:20:25 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mYQTz-0004kl-Ve; Thu, 07 Oct 2021 12:18:36 +0200 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mYQTz-0005yO-EW; Thu, 07 Oct 2021 12:18:35 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1mYQTz-00GTFX-BR; Thu, 07 Oct 2021 12:18:35 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 7 Oct 2021 12:18:35 +0200 Message-Id: <20211007101835.3925640-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210831164623.11889-1-bst@pengutronix.de> References: <20210831164623.11889-1-bst@pengutronix.de> MIME-Version: 1.0 Subject: Re: [ptxdist] [APPLIED] wpewebkit: add WebDriver config switch X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Bastian Krause Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 95d9fa18f2ff89acb3f47f171fbf09c7ca3365bd. Michael [sent from post-receive hook] On Thu, 07 Oct 2021 12:18:35 +0200, Bastian Krause wrote: > Prior to this commit, WebDriver was always built, but not installed. Now > it is only built *and* installed if the corresponding option is enabled. > > Signed-off-by: Bastian Krause > Message-Id: <20210831164623.11889-1-bst@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/wpewebkit.in b/rules/wpewebkit.in > index 084874067aba..8c1f6c50ed34 100644 > --- a/rules/wpewebkit.in > +++ b/rules/wpewebkit.in > @@ -98,4 +98,11 @@ config WPEWEBKIT_ENABLE_LOGGING > Enable this option if you want to get some more logging information. For more > information check https://trac.webkit.org/wiki/WebKitGTK/Debugging. > > +config WPEWEBKIT_WEBDRIVER > + bool > + prompt "WebDriver support" > + help > + WebDriver is a standalone server that implements the W3C WebDriver standard > + for automated testing. > + > endif > diff --git a/rules/wpewebkit.make b/rules/wpewebkit.make > index 26d2c0e086fb..d1a7fa120742 100644 > --- a/rules/wpewebkit.make > +++ b/rules/wpewebkit.make > @@ -43,7 +43,7 @@ WPEWEBKIT_CONF_OPT := \ > -DENABLE_GTKDOC=OFF\ > -DENABLE_MEDIA_SOURCE=ON \ > -DENABLE_VIDEO=$(call ptx/onoff,PTXCONF_WPEWEBKIT_VIDEO) \ > - -DENABLE_WEBDRIVER=ON \ > + -DENABLE_WEBDRIVER=$(call ptx/onoff,PTXCONF_WPEWEBKIT_WEBDRIVER) \ > -DENABLE_WEB_AUDIO=$(call ptx/onoff,PTXCONF_WPEWEBKIT_AUDIO) \ \ > -DENABLE_WEB_CRYPTO=ON \ > -DENABLE_WPE_QT_API=$(call ptx/onoff,PTXCONF_WPEWEBKIT_QT) \ > @@ -102,6 +102,10 @@ ifdef PTXCONF_WPEWEBKIT_QT > @$(call install_tree, wpewebkit, 0, 0, -, /usr/lib/qt5/qml/org/wpewebkit) > endif > > +ifdef PTXCONF_WPEWEBKIT_WEBDRIVER > + @$(call install_copy, wpewebkit, 0, 0, 0755, -, /usr/bin/WPEWebDriver) > +endif > + > @$(call install_finish, wpewebkit) > > @$(call touch) _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de