diff options
author | Sasha Smundak <asmundak@google.com> | 2019-05-02 21:35:45 -0700 |
---|---|---|
committer | Sasha Smundak <asmundak@google.com> | 2019-05-02 21:35:45 -0700 |
commit | 995887eafb529d061602f2702a03a67e9b58f8f0 (patch) | |
tree | 435e84cc5c6d0f140e8e0f475ade1b9c1a1286e5 /packages/Shell/Android.bp | |
parent | 1764f6a49e7ecd54c2ca44dcc8969c94fbbaa139 (diff) |
Convert packages/Shell/**/Android.mk file to Android.bp
See build/soong/README.md for more information.
Bug: 122332340
Test: atest ShellTests
(same errors as baseline)
Change-Id: I63b777342359e0b42ccd554b7d056c7431178380
Diffstat (limited to 'packages/Shell/Android.bp')
-rw-r--r-- | packages/Shell/Android.bp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/Shell/Android.bp b/packages/Shell/Android.bp new file mode 100644 index 000000000000..aaaf0448fc31 --- /dev/null +++ b/packages/Shell/Android.bp @@ -0,0 +1,14 @@ +android_app { + name: "Shell", + srcs: ["src/**/*.java",":dumpstate_aidl"], + aidl: { + include_dirs: ["frameworks/native/cmds/dumpstate/binder"], + }, + static_libs: ["androidx.legacy_legacy-support-v4"], + platform_apis: true, + certificate: "platform", + privileged: true, + jacoco: { + include_filter: ["com.android.shell.*"], + }, +} |