]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/BinWrappers/WindowsLike/BrotliCompress.bat
BaseTools: Update Brotli Compress to the latest one 1.0.6
[mirror_edk2.git] / BaseTools / BinWrappers / WindowsLike / BrotliCompress.bat
diff --git a/BaseTools/BinWrappers/WindowsLike/BrotliCompress.bat b/BaseTools/BinWrappers/WindowsLike/BrotliCompress.bat
new file mode 100644 (file)
index 0000000..7a48170
--- /dev/null
@@ -0,0 +1,61 @@
+@REM @file\r
+@REM This script will exec Brotli tool with -e/-d options.\r
+@REM\r
+@REM Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>\r
+@REM This program and the accompanying materials\r
+@REM are licensed and made available under the terms and conditions of the BSD License\r
+@REM which accompanies this distribution.  The full text of the license may be found at\r
+@REM http://opensource.org/licenses/bsd-license.php\r
+@REM\r
+@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+@REM\r
+\r
+@echo off\r
+@setlocal\r
+\r
+set QLT=-q 9 -w 22\r
+set ARGS=\r
+\r
+:Begin\r
+if "%1"=="" goto End\r
+\r
+if "%1"=="-d" (\r
+  set ARGS=%ARGS% %1\r
+  shift\r
+  goto Begin\r
+)\r
+\r
+if "%1"=="-e" (\r
+  shift\r
+  goto Begin\r
+)\r
+\r
+if "%1"=="-g" (\r
+  set ARGS=%ARGS% %1 %2\r
+  shift\r
+  shift\r
+  goto Begin\r
+)\r
+\r
+if "%1"=="-o" (\r
+  set ARGS=%ARGS% %1 %2\r
+  shift\r
+  shift\r
+  goto Begin\r
+)\r
+\r
+if "%1"=="-q" (\r
+  set QLT=%1 %2\r
+  shift\r
+  shift\r
+  goto Begin\r
+)\r
+\r
+set ARGS=%ARGS% %1\r
+shift\r
+goto Begin\r
+\r
+:End\r
+Brotli %QLT% %ARGS%\r
+@echo on\r