diff options
| -rw-r--r-- | TEST_MAPPING | 3 | ||||
| -rw-r--r-- | dex2oat/dex2oat.cc | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/TEST_MAPPING b/TEST_MAPPING index c6b0f55f17..1622c5bc89 100644 --- a/TEST_MAPPING +++ b/TEST_MAPPING @@ -3,6 +3,9 @@ "presubmit": [ { "name": "CtsJdwpTestCases" + }, + { + "name": "BootImageProfileTest" } ], "postsubmit": [ diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index fe826c1353..8bb8bd6d6f 100644 --- a/dex2oat/dex2oat.cc +++ b/dex2oat/dex2oat.cc @@ -2375,6 +2375,7 @@ class Dex2Oat final { "android.app", "android.os", "android.util", + "com.android.internal.statsd", // Reserved framework-permission packages (includes sub-packages under this path). "android.permission", // "android.app.role", // Covered by android.app above. @@ -2383,7 +2384,7 @@ class Dex2Oat final { // Reserved framework-wifi packages (includes sub-packages under these paths). "android.hardware.wifi", // "android.net.wifi", // Covered by android.net below. - "android.x.net.wifi", + "com.android.wifi.x", // Reserved framework-tethering package (includes sub-packages under this path). "android.net", }); |