Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e04da07d authored by Andrei Onea's avatar Andrei Onea
Browse files

Differentiate system and test apis in whitelist

@SystemApi and @TestApi entries in the whitelist can now be
differentiated from the rest of the public apis.

Test: m
Change-Id: Ie6a0108540cffe11992739d6391531401378f14b
parent e28d0c0f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -183,8 +183,8 @@ func stubFlagsRule(ctx android.SingletonContext) {
		Text("list").
		FlagForEachInput("--boot-dex=", bootDexJars).
		FlagWithInputList("--public-stub-classpath=", publicStubPaths, ":").
		FlagWithInputList("--public-stub-classpath=", systemStubPaths, ":").
		FlagWithInputList("--public-stub-classpath=", testStubPaths, ":").
		FlagWithInputList("--system-stub-classpath=", systemStubPaths, ":").
		FlagWithInputList("--test-stub-classpath=", testStubPaths, ":").
		FlagWithInputList("--core-platform-stub-classpath=", corePlatformStubPaths, ":").
		FlagWithOutput("--out-api-flags=", tempPath)