Gurchetan Singh | 0ac5f1c | 2023-05-30 17:57:43 -0700 | [diff] [blame] | 1 | # Copyright 2023 Android Open Source Project |
| 2 | # SPDX-License-Identifier: MIT |
| 3 | |
| 4 | inc_apigen_codec = include_directories('.') |
| 5 | |
| 6 | files_lib_apigen_codec = files( |
| 7 | 'ChecksumCalculator.cpp', |
| 8 | 'ChecksumCalculatorThreadInfo.cpp', |
| 9 | 'glUtils.cpp', |
| 10 | ) |
| 11 | |
| 12 | if host_machine.system() == 'linux' |
| 13 | files_lib_apigen_codec += files('X11Support.cpp') |
| 14 | endif |
| 15 | |
| 16 | lib_apigen_codec = static_library( |
| 17 | 'apigen_codec', |
| 18 | files_lib_apigen_codec, |
Gurchetan Singh | 8ca8546 | 2024-01-16 14:52:57 -0800 | [diff] [blame] | 19 | cpp_args: gfxstream_host_args, |
Gurchetan Singh | 7328390 | 2024-01-17 17:42:36 -0800 | [diff] [blame] | 20 | include_directories: [inc_gfxstream_include, inc_include], |
Gurchetan Singh | 55bfba4 | 2023-09-13 18:27:29 -0700 | [diff] [blame] | 21 | dependencies: [aemu_base_dep, aemu_common_dep] |
Gurchetan Singh | 0ac5f1c | 2023-05-30 17:57:43 -0700 | [diff] [blame] | 22 | ) |