diff options
author | Paul Duffin <paulduffin@google.com> | 2021-02-08 18:08:09 +0000 |
---|---|---|
committer | Paul Duffin <paulduffin@google.com> | 2021-02-09 10:46:36 +0000 |
commit | fdada68320dbfcff7aea5bbe64a328189be494b4 (patch) | |
tree | 46ce6860a36de9534cba903d4b890fe0486a6d6a /java/hiddenapi_singleton.go | |
parent | 198158b9f7ebdb311b82dd2223f4b793215d4e3b (diff) |
Move hiddenapi tools used by build/soong from frameworks/base
Also, creates a python_binary_host module for generate_hiddenapi_lists
and uses that when constructing the build rule rather than using the
file directly.
Bug: 177317659
Test: m droid
Verified that hiddenapi files (both aggregated ones and for the
individual modules) are not affected by this change.
Change-Id: Ia11bb203ce5a74740d35f1b7e86716e15aad336e
Diffstat (limited to 'java/hiddenapi_singleton.go')
-rw-r--r-- | java/hiddenapi_singleton.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/hiddenapi_singleton.go b/java/hiddenapi_singleton.go index 46994c396..568d15fce 100644 --- a/java/hiddenapi_singleton.go +++ b/java/hiddenapi_singleton.go @@ -372,7 +372,7 @@ func flagsRule(ctx android.SingletonContext) android.Path { stubFlags := hiddenAPISingletonPaths(ctx).stubFlags rule.Command(). - Tool(android.PathForSource(ctx, "frameworks/base/tools/hiddenapi/generate_hiddenapi_lists.py")). + BuiltTool("generate_hiddenapi_lists"). FlagWithInput("--csv ", stubFlags). Inputs(flagsCSV). FlagWithInput("--unsupported ", |