Daniel Nicoara | 0a60e4b | 2017-01-09 12:51:06 -0500 | [diff] [blame] | 1 | cc_library_static { |
| 2 | name: "libhwcomposer-client", |
| 3 | export_include_dirs: ["."], |
| 4 | srcs: ["ComposerClient.cpp"], |
| 5 | cppflags: ["-DBINDERIZED"], |
| 6 | shared_libs: [ |
| 7 | "android.hardware.graphics.allocator@2.0", |
| 8 | "android.hardware.graphics.composer@2.1", |
| 9 | "libbase", |
| 10 | "libcutils", |
| 11 | "libfmq", |
| 12 | "libhardware", |
| 13 | "libhidlbase", |
| 14 | "libhidltransport", |
| 15 | "libhwbinder", |
| 16 | "liblog", |
| 17 | "libsync", |
| 18 | "libutils", |
| 19 | ], |
| 20 | } |
| 21 | |
Chia-I Wu | 7f8d396 | 2016-09-28 21:04:23 +0800 | [diff] [blame] | 22 | cc_library_shared { |
| 23 | name: "android.hardware.graphics.composer@2.1-impl", |
| 24 | relative_install_path: "hw", |
Daniel Nicoara | 0a60e4b | 2017-01-09 12:51:06 -0500 | [diff] [blame] | 25 | srcs: ["Hwc.cpp", "ComposerClient.cpp"], |
Chia-I Wu | 7f8d396 | 2016-09-28 21:04:23 +0800 | [diff] [blame] | 26 | shared_libs: [ |
| 27 | "android.hardware.graphics.allocator@2.0", |
| 28 | "android.hardware.graphics.composer@2.1", |
| 29 | "libbase", |
| 30 | "libcutils", |
Chia-I Wu | bb61a72 | 2016-10-24 15:40:20 +0800 | [diff] [blame] | 31 | "libfmq", |
Chia-I Wu | 7f8d396 | 2016-09-28 21:04:23 +0800 | [diff] [blame] | 32 | "libhardware", |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 33 | "libhidlbase", |
| 34 | "libhidltransport", |
Chia-I Wu | 7f8d396 | 2016-09-28 21:04:23 +0800 | [diff] [blame] | 35 | "libhwbinder", |
| 36 | "liblog", |
Chia-I Wu | bb61a72 | 2016-10-24 15:40:20 +0800 | [diff] [blame] | 37 | "libsync", |
Chia-I Wu | 7f8d396 | 2016-09-28 21:04:23 +0800 | [diff] [blame] | 38 | "libutils", |
| 39 | ], |
| 40 | } |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 41 | |
| 42 | cc_binary { |
| 43 | name: "android.hardware.graphics.composer@2.1-service", |
| 44 | relative_install_path: "hw", |
Daniel Nicoara | 0a60e4b | 2017-01-09 12:51:06 -0500 | [diff] [blame] | 45 | srcs: ["service.cpp", "Hwc.cpp"], |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 46 | cppflags: ["-DBINDERIZED"], |
| 47 | init_rc: ["android.hardware.graphics.composer@2.1-service.rc"], |
| 48 | |
Daniel Nicoara | 0a60e4b | 2017-01-09 12:51:06 -0500 | [diff] [blame] | 49 | static_libs: [ |
| 50 | "libhwcomposer-client", |
| 51 | ], |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 52 | shared_libs: [ |
| 53 | "android.hardware.graphics.allocator@2.0", |
| 54 | "android.hardware.graphics.composer@2.1", |
| 55 | "libbase", |
| 56 | "libbinder", |
| 57 | "libcutils", |
Chia-I Wu | bb61a72 | 2016-10-24 15:40:20 +0800 | [diff] [blame] | 58 | "libfmq", |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 59 | "libhardware", |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 60 | "libhidlbase", |
| 61 | "libhidltransport", |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 62 | "libhwbinder", |
| 63 | "liblog", |
Chia-I Wu | bb61a72 | 2016-10-24 15:40:20 +0800 | [diff] [blame] | 64 | "libsync", |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 65 | "libutils", |
| 66 | ], |
| 67 | } |
Chia-I Wu | bb61a72 | 2016-10-24 15:40:20 +0800 | [diff] [blame] | 68 | |
| 69 | cc_library_static { |
| 70 | name: "libhwcomposer-command-buffer", |
| 71 | shared_libs: ["android.hardware.graphics.composer@2.1"], |
| 72 | export_include_dirs: ["."], |
| 73 | } |