File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
BaseTools/Source/C/BrotliCompress
MdeModulePkg/Library/BrotliCustomDecompressLib/sys Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ OBJECTS = \
2222 brotli/c/dec/bit_reader.o \
2323 brotli/c/dec/decode.o \
2424 brotli/c/dec/huffman.o \
25+ brotli/c/dec/prefix.o \
2526 brotli/c/dec/state.o \
27+ brotli/c/dec/static_init.o \
2628 brotli/c/enc/backward_references.o \
2729 brotli/c/enc/backward_references_hq.o \
2830 brotli/c/enc/bit_cost.o \
@@ -40,6 +42,8 @@ OBJECTS = \
4042 brotli/c/enc/memory.o \
4143 brotli/c/enc/metablock.o \
4244 brotli/c/enc/static_dict.o \
45+ brotli/c/enc/static_dict_lut.o \
46+ brotli/c/enc/static_init.o \
4347 brotli/c/enc/utf8_util.o
4448
4549include $(MAKEROOT ) /Makefiles/app.makefile
Original file line number Diff line number Diff line change 1+ /** @file
2+ Include file to support building the third-party brotli.
3+
4+ Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
5+ SPDX-License-Identifier: BSD-2-Clause-Patent
6+
7+ **/
8+
9+ #include <brotli/types.h>
You can’t perform that action at this time.
0 commit comments