set(cxx_api_lite_deps scope_lite host_kernels ops_lite optimizer_lite target_wrapper_host kernels_cuda optimizer_lite model_parser_lite) if(LITE_WITH_CUDA) cc_library(cxx_api_lite_cuda SRCS cxx_api.cc DEPS ${cxx_api_lite_deps} target_wrapper_cuda) nv_test(test_cxx_api_lite_cuda SRCS cxx_api_test.cc DEPS cxx_api_lite_cuda) endif() cc_library(cxx_api_lite SRCS cxx_api.cc DEPS ${cxx_api_lite_deps}) set(light_api_deps scope_lite host_kernels ops_lite target_wrapper_host model_parser_lite) if(LITE_WITH_CUDA) set(light_api_deps ${light_api_deps} target_wrapper_cuda) endif() cc_library(light_api_lite SRCS light_api.cc DEPS ${light_api_deps}) cc_test(test_cxx_api_lite SRCS cxx_api_test.cc DEPS cxx_api_lite model_parser_lite target_wrapper_host host_kernels) cc_test(test_light_api SRCS light_api_test.cc DEPS light_api_lite)