diff options
author | 2019-11-26 18:08:34 +0000 | |
---|---|---|
committer | 2019-11-26 19:05:26 +0000 | |
commit | 9cf4669bc4e36211cb261440dc8c0c4ec019c1c1 (patch) | |
tree | 1b1ac756e745320e15305e3a6961efd39e95507b /java/device_host_converter.go | |
parent | 9d8dab57a5356183a74ac15cee40760aa1614382 (diff) |
Add exported_plugins to java.Library.
The behaviour is similar to go/be#java_library.exported_plugins. Plugins added to exported_plugins of library X are not applied to the library itself, but rather to libraries that directly depend on the library X.
Test: m checkbuild
Bug: 139740873
Change-Id: I4042bd482ad9cb12d6fbaac51f039d38b1b7a428
Diffstat (limited to 'java/device_host_converter.go')
-rw-r--r-- | java/device_host_converter.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/device_host_converter.go b/java/device_host_converter.go index 14db52152..15244184e 100644 --- a/java/device_host_converter.go +++ b/java/device_host_converter.go @@ -162,6 +162,10 @@ func (d *DeviceHostConverter) ExportedSdkLibs() []string { return nil } +func (d *DeviceHostConverter) ExportedPlugins() (android.Paths, []string) { + return nil, nil +} + func (d *DeviceHostConverter) SrcJarArgs() ([]string, android.Paths) { return d.srcJarArgs, d.srcJarDeps } |