Skip to content
Snippets Groups Projects
Commit d52bed3d authored by Calin Juravle's avatar Calin Juravle Committed by android-build-merger
Browse files

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

am: 83011a26

Change-Id: Ice0df08e8cd5bd6c12a4396c358f6e69a8ee9576
parents 8dadca8e 83011a26
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