intel: move gen_decoder.* to DECODER_FILES

patch adds DECODER_FILES for libintel_common, this is so that platforms
such as Android not currently using this functionality can opt out.

Fixes: 7d84bb3 ("intel: Move tools/decoder.[ch] to common/gen_decoder.[ch].")
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
Tapani Pälli
2017-03-23 09:15:54 +02:00
parent bcae4eb502
commit 4f69573178
2 changed files with 5 additions and 3 deletions

View File

@@ -21,4 +21,4 @@
noinst_LTLIBRARIES += common/libintel_common.la
common_libintel_common_la_SOURCES = $(COMMON_FILES)
common_libintel_common_la_SOURCES = $(COMMON_FILES) $(DECODER_FILES)

View File

@@ -9,8 +9,6 @@ BLORP_FILES = \
COMMON_FILES = \
common/gen_debug.c \
common/gen_debug.h \
common/gen_decoder.c \
common/gen_decoder.h \
common/gen_device_info.c \
common/gen_device_info.h \
common/gen_l3_config.c \
@@ -18,6 +16,10 @@ COMMON_FILES = \
common/gen_urb_config.c \
common/gen_sample_positions.h
DECODER_FILES = \
common/gen_decoder.h \
common/gen_decoder.c
COMPILER_FILES = \
compiler/brw_cfg.cpp \
compiler/brw_cfg.h \