1# Copyright 2023 Android Open Source Project
2# SPDX-License-Identifier: MIT
3
4files_lib_gles2_dec = files(
5  'gles2_dec.cpp',
6  'gles2_server_context.cpp',
7  'GLESv2Decoder.cpp',
8)
9
10lib_gles2_dec = static_library(
11  'gles2_dec',
12  files_lib_gles2_dec,
13  cpp_args: gfxstream_host_args,
14  include_directories: [inc_gfxstream_include, inc_include, inc_apigen_codec, inc_gles_translator,
15                        inc_gl_snapshot],
16  link_with: lib_gl_snapshot,
17  dependencies: [aemu_base_dep, aemu_logging_dep]
18)
19