diff options
| -rw-r--r-- | cmds/installd/Android.bp | 9 | ||||
| -rw-r--r-- | libs/binder/Android.bp | 10 | 
2 files changed, 17 insertions, 2 deletions
| diff --git a/cmds/installd/Android.bp b/cmds/installd/Android.bp index 56470d6764..7d1537a63f 100644 --- a/cmds/installd/Android.bp +++ b/cmds/installd/Android.bp @@ -13,7 +13,7 @@ cc_defaults {          "dexopt.cpp",          "globals.cpp",          "utils.cpp", -        "binder/android/os/IInstalld.aidl", +        ":installd_aidl",      ],      shared_libs: [          "libbase", @@ -84,4 +84,11 @@ cc_binary {      ],  } +filegroup { +    name: "installd_aidl", +    srcs: [ +        "binder/android/os/IInstalld.aidl", +    ], +} +  subdirs = ["tests"] diff --git a/libs/binder/Android.bp b/libs/binder/Android.bp index 83b8021735..c130087fb5 100644 --- a/libs/binder/Android.bp +++ b/libs/binder/Android.bp @@ -69,7 +69,7 @@ cc_library {          "TextOutput.cpp",          "IpPrefix.cpp",          "Value.cpp", -        "aidl/android/content/pm/IPackageManagerNative.aidl", +        ":libbinder_aidl",      ],      aidl: { @@ -108,4 +108,12 @@ cc_library {      },  } +// AIDL interface between libbinder and framework.jar +filegroup { +    name: "libbinder_aidl", +    srcs: [ +        "aidl/android/content/pm/IPackageManagerNative.aidl", +    ], +} +  subdirs = ["tests"] |