Experiment with large boot profile size

Some profiles turn out to be empty, and the main suspect is the size
restriction. Allow more data to be saved in the profile to check if the
situation improves.

Test: test-art-host
Bug: 139884006
Change-Id: I9007440765c100298e91e10236e2fedf71a96883
diff --git a/libprofile/profile/profile_compilation_info.cc b/libprofile/profile/profile_compilation_info.cc
index 302ea09..57d51dc 100644
--- a/libprofile/profile/profile_compilation_info.cc
+++ b/libprofile/profile/profile_compilation_info.cc
@@ -98,7 +98,7 @@
 static constexpr uint32_t kSizeErrorThresholdBytes = 1500000U;
 
 static constexpr uint32_t kSizeWarningThresholdBootBytes = 25000000U;
-static constexpr uint32_t kSizeErrorThresholdBootBytes = 50000000U;
+static constexpr uint32_t kSizeErrorThresholdBootBytes = 100000000U;
 
 static bool ChecksumMatch(uint32_t dex_file_checksum, uint32_t checksum) {
   return kDebugIgnoreChecksum || dex_file_checksum == checksum;