diff options
author | Artur Satayev <satayev@google.com> | 2020-03-25 15:36:55 +0000 |
---|---|---|
committer | satayev <satayev@google.com> | 2020-03-27 22:44:30 +0000 |
commit | db23306e834e829e9ff95083cb514215c36aeaec (patch) | |
tree | a6ae64a32f741853bd38208fe4c3b25e3ec4b771 /Android.bp | |
parent | f87fe63af110b06ebaa9f5b3d246139aef90a92a (diff) |
Export change id processor.
- Don't declare the plugin directly, it is exported via java_library that defines the sources.
- Remove unneeded framework-annotation-proc.
Bug: 152220864
Test: m && diff merged_compat_config.xml
Change-Id: Ie750b5391229d21679a8610780b9f8d4a997e204
Merged-In: Ie750b5391229d21679a8610780b9f8d4a997e204
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/Android.bp b/Android.bp index d298af2ce0b9..bc6ed5114160 100644 --- a/Android.bp +++ b/Android.bp @@ -524,23 +524,9 @@ java_library { ], } -java_library { - name: "framework-annotation-proc", - defaults: ["framework-defaults"], - srcs: [":framework-all-sources"], - libs: [ - "app-compat-annotations", - "unsupportedappusage", - ], - installable: false, - plugins: [ - "compat-changeid-annotation-processor", - ], -} - platform_compat_config { - name: "framework-platform-compat-config", - src: ":framework-annotation-proc", + name: "framework-platform-compat-config", + src: ":framework-minus-apex", } // A library including just UnsupportedAppUsage.java classes. |