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