1package { 2 // See: http://go/android-license-faq 3 default_applicable_licenses: ["Android-Apache-2.0"], 4} 5 6aidl_interface { 7 name: "com.google.hardware.pixel.display", 8 vendor_available: true, 9 srcs: [ 10 "com/google/hardware/pixel/display/*.aidl", 11 ], 12 13 stability: "vintf", 14 15 imports: [ 16 "android.hardware.common-V2", 17 "android.hardware.graphics.common-V3", 18 ], 19 20 backend: { 21 java: { 22 platform_apis: true, 23 }, 24 cpp: { 25 enabled: false, 26 }, 27 }, 28 versions_with_info: [ 29 { 30 version: "1", 31 imports: [ 32 "android.hardware.common-V2", 33 "android.hardware.graphics.common-V3", 34 ], 35 }, 36 { 37 version: "2", 38 imports: [ 39 "android.hardware.common-V2", 40 "android.hardware.graphics.common-V3", 41 ], 42 }, 43 { 44 version: "3", 45 imports: [ 46 "android.hardware.common-V2", 47 "android.hardware.graphics.common-V3", 48 ], 49 }, 50 { 51 version: "4", 52 imports: [ 53 "android.hardware.common-V2", 54 "android.hardware.graphics.common-V3", 55 ], 56 }, 57 { 58 version: "5", 59 imports: [ 60 "android.hardware.common-V2", 61 "android.hardware.graphics.common-V3", 62 ], 63 }, 64 { 65 version: "6", 66 imports: [ 67 "android.hardware.common-V2", 68 "android.hardware.graphics.common-V3", 69 ], 70 }, 71 { 72 version: "7", 73 imports: [ 74 "android.hardware.common-V2", 75 "android.hardware.graphics.common-V3", 76 ], 77 }, 78 79 ], 80 81} 82