blob: 1aca3edfab888cc8084e7fcb1cc4ec5d64f3a8ae [file] [log] [blame]
Mathew Inwoodbad89e52018-06-28 14:12:10 +01001
2java_library_host {
3 name: "unsupportedappusage-annotation-processor",
4 java_resources: [
5 "META-INF/**/*",
6 ],
7 srcs: [
8 "src/**/*.java",
9 ],
10 static_libs: [
11 "guava",
12 "unsupportedappusage-annotation"
13 ],
Tobias Thierer8fb36152018-09-06 17:30:28 +010014 openjdk9: {
15 javacflags: [
16 "--add-modules=jdk.compiler",
17 "--add-exports jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED",
18 "--add-exports jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED",
19 "--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED",
20 "--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED",
21 ],
22 },
23
Mathew Inwoodbad89e52018-06-28 14:12:10 +010024 use_tools_jar: true,
25}