| cc_library_static { |
| name: "libhwcomposer-client", |
| defaults: ["hidl_defaults"], |
| export_include_dirs: ["."], |
| srcs: ["ComposerClient.cpp"], |
| shared_libs: [ |
| "android.hardware.graphics.allocator@2.0", |
| "android.hardware.graphics.composer@2.1", |
| "libbase", |
| "libcutils", |
| "libfmq", |
| "libhardware", |
| "libhidlbase", |
| "libhidltransport", |
| "liblog", |
| "libsync", |
| "libutils", |
| ], |
| } |
| |
| cc_library_shared { |
| name: "android.hardware.graphics.composer@2.1-impl", |
| defaults: ["hidl_defaults"], |
| proprietary: true, |
| relative_install_path: "hw", |
| srcs: ["Hwc.cpp"], |
| static_libs: ["libhwcomposer-client"], |
| shared_libs: [ |
| "android.hardware.graphics.allocator@2.0", |
| "android.hardware.graphics.composer@2.1", |
| "libbase", |
| "libcutils", |
| "libfmq", |
| "libhardware", |
| "libhidlbase", |
| "libhidltransport", |
| "liblog", |
| "libsync", |
| "libutils", |
| ], |
| } |
| |
| cc_binary { |
| name: "android.hardware.graphics.composer@2.1-service", |
| defaults: ["hidl_defaults"], |
| proprietary: true, |
| relative_install_path: "hw", |
| srcs: ["service.cpp"], |
| init_rc: ["android.hardware.graphics.composer@2.1-service.rc"], |
| static_libs: ["libhwcomposer-client"], |
| shared_libs: [ |
| "android.hardware.graphics.allocator@2.0", |
| "android.hardware.graphics.composer@2.1", |
| "libbase", |
| "libbinder", |
| "libcutils", |
| "libfmq", |
| "libhardware", |
| "libhidlbase", |
| "libhidltransport", |
| "liblog", |
| "libsync", |
| "libutils", |
| ], |
| } |
| |
| cc_library_static { |
| name: "libhwcomposer-command-buffer", |
| defaults: ["hidl_defaults"], |
| shared_libs: ["android.hardware.graphics.composer@2.1"], |
| export_include_dirs: ["."], |
| } |