diff options
| author | Simon Shields <simon@lineageos.org> | 2017-08-23 12:05:33 +1000 |
|---|---|---|
| committer | Rashed Abdel-Tawab <rashed@linux.com> | 2019-09-07 14:54:29 -0700 |
| commit | 2c1d7ea5e452c323e63c848baf4e5ad77bc77f7c (patch) | |
| tree | fde8946e7e61abf1932908ecf29a71d7f2c22636 /android | |
| parent | ad4e97edb4ea4917247fb11c45c6441735a2b445 (diff) | |
| download | build_soong-2c1d7ea5e452c323e63c848baf4e5ad77bc77f7c.tar.gz build_soong-2c1d7ea5e452c323e63c848baf4e5ad77bc77f7c.tar.bz2 build_soong-2c1d7ea5e452c323e63c848baf4e5ad77bc77f7c.zip | |
soong: extend with lineage board flags
Includes the following commit:
Author: Simon Shields <simon@lineageos.org>
Date: Mon Sep 4 21:09:44 2017 +1000
soong: explicitly specify name of Lineage variables struct
Change-Id: Ic754b8a13658ddc40620f985581bd1754b780b15
Change-Id: If127c9da6b57340ae57e0cf725151cdcc3c82ef3
Diffstat (limited to 'android')
| -rw-r--r-- | android/variable.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go index e643c0eb..a30a423e 100644 --- a/android/variable.go +++ b/android/variable.go @@ -20,6 +20,8 @@ import ( "runtime" "strings" + "lineage/soong/android" + "github.com/google/blueprint/proptools" ) @@ -124,6 +126,9 @@ type variableProperties struct { Static_libs []string Srcs []string } + + // include Lineage variables + Lineage android.Product_variables } `android:"arch_variant"` } @@ -287,6 +292,9 @@ type productVariables struct { ProductHiddenAPIStubsTest []string `json:",omitempty"` TargetFSConfigGen []string `json:",omitempty"` + + // include Lineage variables + Lineage android.ProductVariables } func boolPtr(v bool) *bool { |
