diff options
| author | Jooyung Han <jooyung@google.com> | 2019-11-20 17:57:01 +0900 |
|---|---|---|
| committer | Jooyung Han <jooyung@google.com> | 2019-11-20 17:57:01 +0900 |
| commit | 6abcfa9be6dd7c8e18334481b590e8f0bd8d1e6a (patch) | |
| tree | 7c181372122dd06f552fdade8fd4a7e50e211de0 | |
| parent | 63cd75e3558bada25a221e9afac6d34ae1dc9c4f (diff) | |
| download | platform_packages_modules_vndk-6abcfa9be6dd7c8e18334481b590e8f0bd8d1e6a.tar.gz platform_packages_modules_vndk-6abcfa9be6dd7c8e18334481b590e8f0bd8d1e6a.tar.bz2 platform_packages_modules_vndk-6abcfa9be6dd7c8e18334481b590e8f0bd8d1e6a.zip | |
Make file_contexts as "android:path" property
Till now, file_contexts has been treated differently that other input
src files. Now it is tagged as `android:"path"` because it is.
Bug: 144732805
Test: m
Change-Id: Ie35cf0274c5b203b35a994bfea693226c50892f3
| -rw-r--r-- | apex/Android.bp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apex/Android.bp b/apex/Android.bp index 8eec6a3..916e5af 100644 --- a/apex/Android.bp +++ b/apex/Android.bp @@ -17,7 +17,7 @@ apex_vndk { manifest: "apex_manifest.current.json", key: "com.android.vndk.current.key", certificate: ":com.android.vndk.current.certificate", - file_contexts: "com.android.vndk", + file_contexts: ":com.android.vndk-file_contexts", } apex_key { @@ -37,7 +37,7 @@ apex_vndk { key: "com.android.vndk.v29.key", certificate: ":com.android.vndk.v29.certificate", vndk_version: "29", - file_contexts: "com.android.vndk", + file_contexts: ":com.android.vndk-file_contexts", } apex_key { @@ -57,7 +57,7 @@ apex_vndk { key: "com.android.vndk.v28.key", certificate: ":com.android.vndk.v28.certificate", vndk_version: "28", - file_contexts: "com.android.vndk", + file_contexts: ":com.android.vndk-file_contexts", } apex_key { @@ -77,7 +77,7 @@ apex_vndk { key: "com.android.vndk.v27.key", certificate: ":com.android.vndk.v27.certificate", vndk_version: "27", - file_contexts: "com.android.vndk", + file_contexts: ":com.android.vndk-file_contexts", } apex_key { |
