1import("//build/ohos.gni") 2 3ohos_shared_library("rosen_context") { 4 sources = [ 5 "ohos_context_i.cpp", 6 "raw_context.cpp", 7 "rosen_context_impl.cpp", 8 ] 9 include_dirs = [ 10 "//foundation/graphic/graphic_2d/rosen/modules/render_service_base/src", 11 "//foundation/graphic/graphic_2d/rosen/include", 12 "//drivers/peripheral/display/interfaces/include", 13 "//foundation/multimedia/image_standard/interfaces/innerkits/include", 14 "//foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos", 15 "//foundation/graphic/graphic_2d/interfaces/innerkits/surface", 16 ] 17 18 deps = [ 19 "//commonlibrary/c_utils/base:utils", 20 "//foundation/graphic/graphic_2d/rosen/modules/render_service_client:librender_service_client", 21 ] 22 part_name = "graphic_2d" 23 subsystem_name = "graphic" 24} 25