diff options
author | Kenneth Graunke <[email protected]> | 2018-05-01 17:27:08 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2018-05-02 09:27:56 -0700 |
commit | 7c22c150c40b3e2da892604d21c749aaec0b3cfd (patch) | |
tree | 441b1953cdf4be16f52dcf2bb3f31b90b037df16 /src/intel/common/meson.build | |
parent | 5c049718318bfd9957aaa8f232d40286e101f02f (diff) |
intel: Move batch decoder/disassembler from tools/ to common/
Making these part of libintel_common allows us to use them in the DRI
driver. The standalone tool binaries already link against the common
library, too, so it's no harder for them.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/common/meson.build')
-rw-r--r-- | src/intel/common/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/intel/common/meson.build b/src/intel/common/meson.build index 5e0394a5b86..ebf69c05370 100644 --- a/src/intel/common/meson.build +++ b/src/intel/common/meson.build @@ -22,10 +22,13 @@ files_libintel_common = files( 'gen_clflush.h', + 'gen_batch_decoder.c', 'gen_debug.c', 'gen_debug.h', 'gen_decoder.c', 'gen_decoder.h', + 'gen_disasm.c', + 'gen_disasm.h', 'gen_l3_config.c', 'gen_l3_config.h', 'gen_urb_config.c', |