vendor: Adapt GMS flags and remove obsolete PixGapps variants

Signed-off-by: Jis G Jacob <studiokeys@blissroms.org>
diff --git a/build/envsetup.sh b/build/envsetup.sh
index aa7b42b..6f7ac57 100644
--- a/build/envsetup.sh
+++ b/build/envsetup.sh
@@ -878,8 +878,7 @@
 		  echo "         -c | --clean: Clean up before running the build"
 		  echo "         -d | --devclean: Clean up device tree before running the build"
 		  echo "         -v | --vanilla: Build with no added app store solution **default option** "
-		  echo "         -g | --gapps: Build with Minimal Google Play Services added"
-                  echo "         -p | --pixelgapps: Build with Google Pixel Gapps added"
+		  echo "         -g | --gapps: Build with Google Play Services added"
 		  echo "         -f | --fossa: build with FOSS (arm64-v8a) app store solutions added"
 		  echo "         -F | --fossx: build with FOSS (x86_64) app store solutions added"
                   echo "         -m | --microg: Build with MicroG added"
@@ -901,13 +900,9 @@
 		  export BLISS_BUILD_VARIANT=vanilla
 		  ;;
 		-g | --gapps)
-		  echo "Building with Minimal Gapps"
+		  echo "Building with Gapps"
 		  export BLISS_BUILD_VARIANT=gapps
 		  ;;
-                -p | --pixelgapps)
-                  echo "Building with Pixel Gapps"
-                  export BLISS_BUILD_VARIANT=pixelgapps
-                  ;;
 		-f | --fossa)
 		  echo "Building with FOSS apps for arm64-v8a support"
 		  export BLISS_BUILD_VARIANT=foss
diff --git a/config/common.mk b/config/common.mk
index 5be78ff..141b521 100644
--- a/config/common.mk
+++ b/config/common.mk
@@ -188,11 +188,6 @@
 
 # Gapps
 ifeq ($(BLISS_BUILD_VARIANT), gapps)
-$(call inherit-product, vendor/gapps/products/gapps.mk)
-endif
-
-# PixelGapps
-ifeq ($(BLISS_BUILD_VARIANT), pixelgapps)
 $(call inherit-product, vendor/gms/products/gms.mk)
 endif