aboutsummaryrefslogtreecommitdiffstats
path: root/cc
diff options
context:
space:
mode:
authorInseob Kim <inseob@google.com>2020-02-03 18:06:46 +0900
committerPaul Duffin <paulduffin@google.com>2020-04-22 12:50:22 +0100
commiteb59165dee2a8555e6c905adf3540c706c5a26e9 (patch)
treea4a3b60c2d3507b3b2ceb0c85e0797835c1db1a6 /cc
parentd50865fcecda26a755229d3f2259f12332072fbf (diff)
downloadbuild_soong-eb59165dee2a8555e6c905adf3540c706c5a26e9.tar.gz
build_soong-eb59165dee2a8555e6c905adf3540c706c5a26e9.tar.bz2
build_soong-eb59165dee2a8555e6c905adf3540c706c5a26e9.zip
Add C++ Host support on sysprop_library
With Host_supported: true, C++ part of sysprop_library will create host variant which can be used from host modules. As there are no native system property support on host, libbase functions will be used instead. Adding support on host will help reduce code complexity of other host_supported modules. Bug: 147708854 Bug: 153306490 Test: m, sysprop_test, manually test host binary Merged-In: I850d91fea298ef1a0c16c6a7a9ec1aca5cf37e69 Change-Id: I850d91fea298ef1a0c16c6a7a9ec1aca5cf37e69
Diffstat (limited to 'cc')
-rw-r--r--cc/testing.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cc/testing.go b/cc/testing.go
index ed1ab7d3..0578472c 100644
--- a/cc/testing.go
+++ b/cc/testing.go
@@ -227,6 +227,7 @@ func GatherRequiredDepsForTest(os android.OsType) string {
stl: "none",
vendor_available: true,
recovery_available: true,
+ host_supported: true,
apex_available: [
"//apex_available:platform",
"//apex_available:anyapex",
@@ -240,6 +241,7 @@ func GatherRequiredDepsForTest(os android.OsType) string {
stl: "none",
vendor_available: true,
recovery_available: true,
+ host_supported: true,
vndk: {
enabled: true,
support_system_process: true,