aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorRashed Abdel-Tawab <rashed@linux.com>2017-10-31 20:00:40 -0700
committerBruno Martins <bgcngm@gmail.com>2018-08-30 18:51:19 +0200
commitb7be57e48a9ed96005557b7d3dea0267f4800be6 (patch)
tree0040871247206049ba2c86c59f599cc4eed0eaaa /android
parent835eac3a8cd5bd645f3c65e324c36322987a33af (diff)
downloadbuild_soong-b7be57e48a9ed96005557b7d3dea0267f4800be6.tar.gz
build_soong-b7be57e48a9ed96005557b7d3dea0267f4800be6.tar.bz2
build_soong-b7be57e48a9ed96005557b7d3dea0267f4800be6.zip
soong: Add function to return camera parameters library name
Change-Id: I3113ea6813b82c3f6b250205080030ff9c2255ec
Diffstat (limited to 'android')
-rw-r--r--android/config.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go
index fafed6b0..6313b88e 100644
--- a/android/config.go
+++ b/android/config.go
@@ -776,6 +776,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)
}