diff options
Diffstat (limited to 'libs/math/Android.bp')
| -rw-r--r-- | libs/math/Android.bp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libs/math/Android.bp b/libs/math/Android.bp index 55955870e3..907eb67e9a 100644 --- a/libs/math/Android.bp +++ b/libs/math/Android.bp @@ -39,9 +39,34 @@ cc_library_static { "com.android.media.swcodec", "com.android.neuralnetworks", ], + min_sdk_version: "29", export_include_dirs: ["include"], + target: { + windows: { + enabled: true, + } + } +} + +cc_library_headers { + name: "libmath_headers", + export_include_dirs: ["include"], + host_supported: true, + vendor_available: true, + + apex_available: [ + "//apex_available:anyapex", + "//apex_available:platform", + ], + min_sdk_version: "apex_inherit", + + target: { + windows: { + enabled: true, + } + } } subdirs = ["tests"] |