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"], |
Daniel Nicoara | 0a60e4b | 2017-01-09 12:51:06 -0500 | [diff] [blame] | 5 | shared_libs: [ |
| 6 | "android.hardware.graphics.allocator@2.0", |
| 7 | "android.hardware.graphics.composer@2.1", |
| 8 | "libbase", |
| 9 | "libcutils", |
| 10 | "libfmq", |
| 11 | "libhardware", |
| 12 | "libhidlbase", |
| 13 | "libhidltransport", |
Daniel Nicoara | 0a60e4b | 2017-01-09 12:51:06 -0500 | [diff] [blame] | 14 | "liblog", |
| 15 | "libsync", |
| 16 | "libutils", |
| 17 | ], |
| 18 | } |
| 19 | |
Chia-I Wu | 7f8d396 | 2016-09-28 21:04:23 +0800 | [diff] [blame] | 20 | cc_library_shared { |
| 21 | name: "android.hardware.graphics.composer@2.1-impl", |
Steven Moreland | a0da1a1 | 2017-02-13 09:59:06 -0800 | [diff] [blame] | 22 | proprietary: true, |
Chia-I Wu | 7f8d396 | 2016-09-28 21:04:23 +0800 | [diff] [blame] | 23 | relative_install_path: "hw", |
Chia-I Wu | 16624b6 | 2017-02-02 09:03:20 -0800 | [diff] [blame] | 24 | srcs: ["Hwc.cpp"], |
| 25 | static_libs: ["libhwcomposer-client"], |
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 | "liblog", |
Chia-I Wu | bb61a72 | 2016-10-24 15:40:20 +0800 | [diff] [blame] | 36 | "libsync", |
Chia-I Wu | 7f8d396 | 2016-09-28 21:04:23 +0800 | [diff] [blame] | 37 | "libutils", |
| 38 | ], |
| 39 | } |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 40 | |
| 41 | cc_binary { |
| 42 | name: "android.hardware.graphics.composer@2.1-service", |
Steven Moreland | a0da1a1 | 2017-02-13 09:59:06 -0800 | [diff] [blame] | 43 | proprietary: true, |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 44 | relative_install_path: "hw", |
Chia-I Wu | 16624b6 | 2017-02-02 09:03:20 -0800 | [diff] [blame] | 45 | srcs: ["service.cpp"], |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 46 | init_rc: ["android.hardware.graphics.composer@2.1-service.rc"], |
Chia-I Wu | 16624b6 | 2017-02-02 09:03:20 -0800 | [diff] [blame] | 47 | static_libs: ["libhwcomposer-client"], |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 48 | shared_libs: [ |
| 49 | "android.hardware.graphics.allocator@2.0", |
| 50 | "android.hardware.graphics.composer@2.1", |
| 51 | "libbase", |
| 52 | "libbinder", |
| 53 | "libcutils", |
Chia-I Wu | bb61a72 | 2016-10-24 15:40:20 +0800 | [diff] [blame] | 54 | "libfmq", |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 55 | "libhardware", |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 56 | "libhidlbase", |
| 57 | "libhidltransport", |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 58 | "liblog", |
Chia-I Wu | bb61a72 | 2016-10-24 15:40:20 +0800 | [diff] [blame] | 59 | "libsync", |
Chia-I Wu | b0b5a4d | 2016-10-17 14:56:15 +0800 | [diff] [blame] | 60 | "libutils", |
| 61 | ], |
| 62 | } |
Chia-I Wu | bb61a72 | 2016-10-24 15:40:20 +0800 | [diff] [blame] | 63 | |
| 64 | cc_library_static { |
| 65 | name: "libhwcomposer-command-buffer", |
| 66 | shared_libs: ["android.hardware.graphics.composer@2.1"], |
| 67 | export_include_dirs: ["."], |
| 68 | } |