diff options
Diffstat (limited to 'camera/provider/2.5/default/Android.bp')
-rw-r--r-- | camera/provider/2.5/default/Android.bp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/camera/provider/2.5/default/Android.bp b/camera/provider/2.5/default/Android.bp index 2fcb35ab00..188b70157a 100644 --- a/camera/provider/2.5/default/Android.bp +++ b/camera/provider/2.5/default/Android.bp @@ -44,6 +44,10 @@ cc_library_shared { "camera.device@3.5-impl_headers", ], export_include_dirs: ["."], + // Since this framework module has a transitive dependency on a vendor + // proprietary library, we exclude this module from the vendor snapshot so + // that it will be built from source as part of the vendor image build. + exclude_from_vendor_snapshot: true, } cc_library_shared { @@ -87,6 +91,10 @@ cc_library_shared { "camera.device@3.6-external-impl_headers" ], export_include_dirs: ["."], + // Since this framework module has a transitive dependency on a vendor + // proprietary library, we exclude this module from the vendor snapshot so + // that it will be built from source as part of the vendor image build. + exclude_from_vendor_snapshot: true, } cc_defaults { @@ -123,6 +131,10 @@ cc_defaults { "camera.device@3.4-impl_headers", "camera.device@3.5-impl_headers" ], + // Since this framework module has a transitive dependency on a vendor + // proprietary library, we exclude this module from the vendor snapshot so + // that it will be built from source as part of the vendor image build. + exclude_from_vendor_snapshot: true, } cc_binary { @@ -196,4 +208,8 @@ cc_binary { "camera.device@3.5-impl_headers", "camera.device@3.6-external-impl_headers", ], + // Since this framework module has a transitive dependency on a vendor + // proprietary library, we exclude this module from the vendor snapshot so + // that it will be built from source as part of the vendor image build. + exclude_from_vendor_snapshot: true, } |