| 
									
										
										
										
											2023-09-11 18:16:33 -07:00
										 |  |  | #!/usr/bin/env bash
 | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 10:18:18 -08:00
										 |  |  | function getWebkitCheckoutPath() { | 
					
						
							|  |  |  |   echo ${WK_CHECKOUT_PATH:-"$HOME/webkit"} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  | function runOSX() { | 
					
						
							|  |  |  |   # if script is run as-is | 
					
						
							| 
									
										
										
										
											2023-11-14 10:18:18 -08:00
										 |  |  |   WK_CHECKOUT_PATH=$(getWebkitCheckoutPath) | 
					
						
							|  |  |  |   if [[ -f "${SCRIPT_PATH}/EXPECTED_BUILDS" && -d "$WK_CHECKOUT_PATH/WebKitBuild/Release/Playwright.app" ]]; then | 
					
						
							| 
									
										
										
										
											2021-07-13 17:12:53 -08:00
										 |  |  |     DYLIB_PATH="$WK_CHECKOUT_PATH/WebKitBuild/Release" | 
					
						
							| 
									
										
										
										
											2020-01-17 22:13:55 -08:00
										 |  |  |   elif [[ -d $SCRIPT_PATH/Playwright.app ]]; then | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |     DYLIB_PATH="$SCRIPT_PATH" | 
					
						
							| 
									
										
										
										
											2020-01-17 22:13:55 -08:00
										 |  |  |   elif [[ -d $SCRIPT_PATH/WebKitBuild/Release/Playwright.app ]]; then | 
					
						
							| 
									
										
										
										
											2019-12-26 20:55:30 +01:00
										 |  |  |     DYLIB_PATH="$SCRIPT_PATH/WebKitBuild/Release" | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |   else | 
					
						
							| 
									
										
										
										
											2020-01-17 22:13:55 -08:00
										 |  |  |     echo "Cannot find a Playwright.app in neither location" 1>&2 | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |     exit 1 | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2020-01-17 22:13:55 -08:00
										 |  |  |   PLAYWRIGHT="$DYLIB_PATH/Playwright.app/Contents/MacOS/Playwright" | 
					
						
							| 
									
										
										
										
											2020-01-27 12:34:59 -05:00
										 |  |  |   DYLD_FRAMEWORK_PATH="$DYLIB_PATH" DYLD_LIBRARY_PATH="$DYLIB_PATH" "$PLAYWRIGHT" "$@" | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function runLinux() { | 
					
						
							|  |  |  |   # if script is run as-is | 
					
						
							| 
									
										
										
										
											2020-08-28 19:48:57 +02:00
										 |  |  |   GIO_DIR=""; | 
					
						
							|  |  |  |   LD_PATH=""; | 
					
						
							|  |  |  |   BUNDLE_DIR=""; | 
					
						
							| 
									
										
										
										
											2024-01-13 00:19:49 +01:00
										 |  |  |   DEPENDENCIES_FOLDER="WebKitBuild/DependenciesGTK"; | 
					
						
							| 
									
										
										
										
											2020-01-17 16:26:58 -08:00
										 |  |  |   MINIBROWSER_FOLDER="minibrowser-gtk"; | 
					
						
							| 
									
										
										
										
											2020-01-24 11:54:50 -08:00
										 |  |  |   BUILD_FOLDER="WebKitBuild/GTK"; | 
					
						
							| 
									
										
										
										
											2020-01-10 19:14:55 -08:00
										 |  |  |   if [[ "$*" == *--headless* ]]; then | 
					
						
							| 
									
										
										
										
											2024-01-13 00:19:49 +01:00
										 |  |  |     DEPENDENCIES_FOLDER="WebKitBuild/DependenciesWPE"; | 
					
						
							| 
									
										
										
										
											2020-01-17 16:26:58 -08:00
										 |  |  |     MINIBROWSER_FOLDER="minibrowser-wpe"; | 
					
						
							| 
									
										
										
										
											2020-01-24 11:54:50 -08:00
										 |  |  |     BUILD_FOLDER="WebKitBuild/WPE"; | 
					
						
							| 
									
										
										
										
											2020-01-10 19:14:55 -08:00
										 |  |  |   fi | 
					
						
							| 
									
										
										
										
											2020-08-28 19:48:57 +02:00
										 |  |  |   # Setting extra environment variables like LD_LIBRARY_PATH or WEBKIT_INJECTED_BUNDLE_PATH | 
					
						
							|  |  |  |   # is only needed when calling MiniBrowser from the build folder. The MiniBrowser from | 
					
						
							|  |  |  |   # the zip bundle wrapper already sets itself the needed env variables. | 
					
						
							| 
									
										
										
										
											2023-11-14 10:18:18 -08:00
										 |  |  |   WK_CHECKOUT_PATH=$(getWebkitCheckoutPath) | 
					
						
							| 
									
										
										
										
											2020-01-17 16:26:58 -08:00
										 |  |  |   if [[ -d $SCRIPT_PATH/$MINIBROWSER_FOLDER ]]; then | 
					
						
							|  |  |  |     MINIBROWSER="$SCRIPT_PATH/$MINIBROWSER_FOLDER/MiniBrowser" | 
					
						
							| 
									
										
										
										
											2023-11-14 10:18:18 -08:00
										 |  |  |   elif [[ -d $WK_CHECKOUT_PATH/$BUILD_FOLDER ]]; then | 
					
						
							| 
									
										
										
										
											2024-01-13 00:19:49 +01:00
										 |  |  |     LD_PATH="$WK_CHECKOUT_PATH/$DEPENDENCIES_FOLDER/Root/lib:$SCRIPT_PATH/checkout/$BUILD_FOLDER/Release/bin" | 
					
						
							|  |  |  |     GIO_DIR="$WK_CHECKOUT_PATH/$DEPENDENCIES_FOLDER/Root/lib/gio/modules" | 
					
						
							| 
									
										
										
										
											2023-11-14 10:18:18 -08:00
										 |  |  |     BUNDLE_DIR="$WK_CHECKOUT_PATH/$BUILD_FOLDER/Release/lib" | 
					
						
							|  |  |  |     MINIBROWSER="$WK_CHECKOUT_PATH/$BUILD_FOLDER/Release/bin/MiniBrowser" | 
					
						
							| 
									
										
										
										
											2020-01-10 19:14:55 -08:00
										 |  |  |   elif [[ -f $SCRIPT_PATH/MiniBrowser ]]; then | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |     MINIBROWSER="$SCRIPT_PATH/MiniBrowser" | 
					
						
							| 
									
										
										
										
											2020-01-24 11:54:50 -08:00
										 |  |  |   elif [[ -d $SCRIPT_PATH/$BUILD_FOLDER ]]; then | 
					
						
							| 
									
										
										
										
											2024-01-13 00:19:49 +01:00
										 |  |  |     LD_PATH="$SCRIPT_PATH/$DEPENDENCIES_FOLDER/Root/lib:$SCRIPT_PATH/$BUILD_FOLDER/Release/bin" | 
					
						
							|  |  |  |     GIO_DIR="$SCRIPT_PATH/$DEPENDENCIES_FOLDER/Root/lib/gio/modules" | 
					
						
							| 
									
										
										
										
											2020-06-03 17:49:57 -07:00
										 |  |  |     BUNDLE_DIR="$SCRIPT_PATH/$BUILD_FOLDER/Release/lib" | 
					
						
							| 
									
										
										
										
											2020-01-24 11:54:50 -08:00
										 |  |  |     MINIBROWSER="$SCRIPT_PATH/$BUILD_FOLDER/Release/bin/MiniBrowser" | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |   else | 
					
						
							|  |  |  |     echo "Cannot find a MiniBrowser.app in neither location" 1>&2 | 
					
						
							|  |  |  |     exit 1 | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2020-06-03 17:49:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 19:48:57 +02:00
										 |  |  |   if [[ -n "$GIO_DIR" ]]; then | 
					
						
							| 
									
										
										
										
											2020-07-09 20:37:13 +02:00
										 |  |  |     export GIO_EXTRA_MODULES="$GIO_DIR" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 19:48:57 +02:00
										 |  |  |   if [[ -n "$LD_PATH" ]]; then | 
					
						
							|  |  |  |     export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$LD_PATH" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if [[ -n "$BUNDLE_DIR" ]]; then | 
					
						
							|  |  |  |     export WEBKIT_INJECTED_BUNDLE_PATH="$BUNDLE_DIR" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   WEBKIT_FORCE_COMPLEX_TEXT="1" "$MINIBROWSER" "$@" | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SCRIPT_PATH="$(cd "$(dirname "$0")" ; pwd -P)" | 
					
						
							| 
									
										
										
										
											2020-01-10 19:14:55 -08:00
										 |  |  | if [[ "$(uname)" == "Darwin" ]]; then | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |   runOSX "$@" | 
					
						
							| 
									
										
										
										
											2020-01-10 19:14:55 -08:00
										 |  |  | elif [[ "$(uname)" == "Linux" ]]; then | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |   runLinux "$@" | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |   echo "ERROR: cannot run on this platform!" 1>&2 | 
					
						
							|  |  |  |   exit 1; | 
					
						
							|  |  |  | fi |