diff options
| author | 2019-11-20 22:52:48 -0800 | |
|---|---|---|
| committer | 2020-01-13 20:16:56 -0800 | |
| commit | 7f58c0d8483a4954a03d0bc0b2f00743c1f20f0d (patch) | |
| tree | 8852b8f6c595d85e62101c9a3a81f64af3a10c07 | |
| parent | 484a87ee9803bb33de29c3e32071f8812374fd0d (diff) | |
Add module IPsec(IKE) stubs and sources to platform
As IKE is used in the frameworks for IKEv2/IPsec VPNs, IKE stubs
must be built and added to the frameworks build process
Bug: 147096727
Test: build, flash, boot
Test: FrameworksNetTests, FrameworksIkeTests passing
Change-Id: I51aad4ab800442d018bb170225c114a4ae5ea3b1
(cherry picked from commit 589b6ffe7ce734a2fab891ca7547eee0e38a6b9e)
Merged-In: I51aad4ab800442d018bb170225c114a4ae5ea3b1
| -rw-r--r-- | Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index b782fec455cb..63521f5d0bf4 100644 --- a/Android.bp +++ b/Android.bp @@ -268,6 +268,7 @@ filegroup { ":framework-sdkextensions-sources", ":framework-tethering-srcs", ":updatable-media-srcs", + ":ike-srcs", ] } @@ -430,6 +431,7 @@ java_library { name: "framework-minus-apex", defaults: ["framework-defaults"], srcs: [":framework-non-updatable-sources"], + libs: ["ike-stubs"], installable: true, javac_shard_size: 150, required: [ @@ -466,6 +468,7 @@ java_library { "framework-sdkextensions-stubs-systemapi", // TODO(b/147200698): should be the stub of framework-tethering "framework-tethering", + "ike-stubs", ], sdk_version: "core_platform", apex_available: ["//apex_available:platform"], |