Skip to content
Snippets Groups Projects
Commit 83011a26 authored by Calin Juravle's avatar Calin Juravle Committed by Gerrit Code Review
Browse files

Merge "Allow profman to analyze profiles for the secondary dex files"

parents 312e7eaa ebcec9b8
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ allow dex2oat user_profile_data_file:file { getattr read lock }; ...@@ -24,7 +24,7 @@ allow dex2oat user_profile_data_file:file { getattr read lock };
# Allow dex2oat to compile app's secondary dex files which were reported back to # Allow dex2oat to compile app's secondary dex files which were reported back to
# the framework. # the framework.
allow dex2oat app_data_file:file { getattr read write }; allow dex2oat app_data_file:file { getattr read write lock };
################## ##################
# A/B OTA Dexopt # # A/B OTA Dexopt #
......
...@@ -14,6 +14,11 @@ allow profman profman_dump_data_file:file { write }; ...@@ -14,6 +14,11 @@ allow profman profman_dump_data_file:file { write };
allow profman installd:fd use; allow profman installd:fd use;
# Allow profman to analyze profiles for the secondary dex files. These
# are application dex files reported back to the framework when using
# BaseDexClassLoader.
allow profman app_data_file:file { getattr read write lock };
### ###
### neverallow rules ### neverallow rules
### ###
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment