From 7f58c0d8483a4954a03d0bc0b2f00743c1f20f0d Mon Sep 17 00:00:00 2001 From: Benedict Wong Date: Wed, 20 Nov 2019 22:52:48 -0800 Subject: [PATCH] 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 --- Android.bp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Android.bp b/Android.bp index b782fec455cb3..63521f5d0bf42 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"],