aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRashed Abdel-Tawab <rashed@linux.com>2017-10-31 20:00:40 -0700
committerMichael Bestas <mkbestas@lineageos.org>2019-12-11 19:03:48 +0200
commit490cbce3ab38ea1acb8d80dd6cfc40f0d975e276 (patch)
treec49f6ef156d683b0e725ec2831bea4cef924dc24
parentefa6a129b0954708e575069bef56fce1e234f0da (diff)
downloadbuild_soong-490cbce3ab38ea1acb8d80dd6cfc40f0d975e276.tar.gz
build_soong-490cbce3ab38ea1acb8d80dd6cfc40f0d975e276.tar.bz2
build_soong-490cbce3ab38ea1acb8d80dd6cfc40f0d975e276.zip
soong: Add function to return camera parameters library namestaging/lineage-17.0_merge-android-10.0.0_r9
Change-Id: I3113ea6813b82c3f6b250205080030ff9c2255ec
-rw-r--r--android/config.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go
index 0bf6ee31..7c604a42 100644
--- a/android/config.go
+++ b/android/config.go
@@ -882,6 +882,10 @@ func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
return c.config.productVariables.DeviceKernelHeaders
}
+func (c *deviceConfig) SpecificCameraParametersLibrary() string {
+ return String(c.config.productVariables.Lineage.Specific_camera_parameter_library)
+}
+
func (c *deviceConfig) NativeCoverageEnabled() bool {
return Bool(c.config.productVariables.NativeCoverage)
}