diff options
Diffstat (limited to 'Android.bp')
| -rw-r--r-- | Android.bp | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp index d170913150c5..240d803ef337 100644 --- a/Android.bp +++ b/Android.bp @@ -369,6 +369,8 @@ filegroup { ":framework_native_aidl", ":gatekeeper_aidl", ":gsiservice_aidl", + ":idmap2_aidl", + ":idmap2_core_aidl", ":incidentcompanion_aidl", ":inputconstants_aidl", ":installd_aidl", @@ -401,10 +403,12 @@ filegroup { ":framework-mediaprovider-sources", ":framework-permission-sources", ":framework-permission-s-sources", + ":framework-scheduling-sources", ":framework-sdkextensions-sources", ":framework-statsd-sources", ":framework-tethering-srcs", ":framework-wifi-updatable-sources", + ":ike-srcs", ":updatable-media-srcs", ], visibility: ["//visibility:private"], @@ -413,12 +417,14 @@ filegroup { java_library { name: "framework-updatable-stubs-module_libs_api", static_libs: [ + "android.net.ipsec.ike.stubs.module_lib", "framework-appsearch.stubs.module_lib", "framework-graphics.stubs.module_lib", "framework-media.stubs.module_lib", "framework-mediaprovider.stubs.module_lib", "framework-permission.stubs.module_lib", "framework-permission-s.stubs.module_lib", + "framework-scheduling.stubs.module_lib", "framework-sdkextensions.stubs.module_lib", "framework-statsd.stubs.module_lib", "framework-tethering.stubs.module_lib", @@ -432,12 +438,14 @@ java_library { name: "framework-all", installable: false, static_libs: [ + "android.net.ipsec.ike.impl", "framework-minus-apex", "framework-appsearch.impl", "framework-graphics.impl", "framework-mediaprovider.impl", "framework-permission.impl", "framework-permission-s.impl", + "framework-scheduling.impl", "framework-sdkextensions.impl", "framework-statsd.impl", "framework-tethering.impl", @@ -536,7 +544,7 @@ java_library { "android.hardware.vibrator-V1.3-java", "android.security.apc-java", "android.security.authorization-java", - "android.system.keystore2-java", + "android.system.keystore2-V1-java", "android.system.suspend.control.internal-java", "cameraprotosnano", "devicepolicyprotosnano", @@ -632,6 +640,7 @@ java_defaults { ], sdk_version: "core_platform", static_libs: [ + "bouncycastle-repackaged-unbundled", "framework-internal-utils", // If MimeMap ever becomes its own APEX, then this dependency would need to be removed // in favor of an API stubs dependency in java_library "framework" below. @@ -759,6 +768,7 @@ gensrcs { srcs: [ ":ipconnectivity-proto-src", ":libstats_atom_enum_protos", + ":libtombstone_proto-src", "core/proto/**/*.proto", "libs/incident/**/*.proto", ":service-permission-protos", @@ -1294,6 +1304,18 @@ python_binary_host { ], } +python_binary_host { + name: "update_font_metadata", + defaults: ["base_default"], + main: "tools/fonts/update_font_metadata.py", + srcs: [ + "tools/fonts/update_font_metadata.py", + ], + libs: [ + "fontTools", + ], +} + filegroup { name: "framework-media-annotation-srcs", srcs: [ |