diff options
author | 2024-10-15 08:56:07 +0000 | |
---|---|---|
committer | 2024-10-15 08:59:53 +0000 | |
commit | 9e0062b5c4c4a014bb6f3bbb847799bb218af050 (patch) | |
tree | 6a2e54cdaa6208d608b0c283ef860bffbb2906af /Android.bp | |
parent | 73162698940d5914314143013659ef80a289b6be (diff) |
[Ravenwood] Allow Ravenwood to use system-build.prop
To properly initialize default system property values, loading
build.prop built for the current generic build would be closest to what
running tests on a real device could be.
Flag: EXEMPT host test change only
Bug: 292141694
Test: $ANDROID_BUILD_TOP/frameworks/base/ravenwood/scripts/run-ravenwood-tests.sh
Change-Id: If7856266e6fde241db4d3df5b68cb3a626eeaea3
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp index 34f9bf012..bd4b40fec 100644 --- a/Android.bp +++ b/Android.bp @@ -161,10 +161,11 @@ build_prop { name: "system-build.prop", stem: "build.prop", product_config: ":product_config", - // Currently, only microdroid and cf system image can refer to system-build.prop + // Currently, only microdroid, Ravenwood, and cf system image can refer to system-build.prop visibility: [ "//build/make/target/product/generic", "//packages/modules/Virtualization/build/microdroid", + "//frameworks/base/ravenwood", ], } |