diff options
| author | Rashed Abdel-Tawab <rashed@linux.com> | 2017-10-31 20:00:40 -0700 |
|---|---|---|
| committer | Bruno Martins <bgcngm@gmail.com> | 2018-08-30 18:51:19 +0200 |
| commit | b7be57e48a9ed96005557b7d3dea0267f4800be6 (patch) | |
| tree | 0040871247206049ba2c86c59f599cc4eed0eaaa | |
| parent | 835eac3a8cd5bd645f3c65e324c36322987a33af (diff) | |
| download | build_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
| -rw-r--r-- | android/config.go | 4 |
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) } |
