diff options
author | Shenglei Zhang <shenglei.zhang@intel.com> | 2020-02-21 10:21:06 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-04-16 01:58:38 +0000 |
commit | 06033f5abad3815e8d80de22c97ba38a05017262 (patch) | |
tree | f570f0740b50cc7fdb5b8b5f3d6744e8874fa0eb /.pytool/CISettings.py | |
parent | 58802e02c41bd715a5d3586f4bf2a4b1c46e9274 (diff) | |
download | edk2-06033f5abad3815e8d80de22c97ba38a05017262.tar.gz |
BaseTools: Make brotli a submodule
Use submodule way to access brotli in BaseTools based on
brotli version 666c3280cc11dc433c303d79a83d4ffbdd12cc8d.
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2558
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to '.pytool/CISettings.py')
-rw-r--r-- | .pytool/CISettings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.pytool/CISettings.py b/.pytool/CISettings.py index 077d654732..e373d17a6c 100644 --- a/.pytool/CISettings.py +++ b/.pytool/CISettings.py @@ -148,6 +148,8 @@ class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManag "MdeModulePkg/Universal/RegularExpressionDxe/oniguruma", False))
rs.append(RequiredSubmodule(
"MdeModulePkg/Library/BrotliCustomDecompressLib/brotli", False))
+ rs.append(RequiredSubmodule(
+ "BaseTools/Source/C/BrotliCompress/brotli", False))
return rs
def GetName(self):
|