Index: content/app/content_main_runner.cc |
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc |
index e8d31b073ef1295c06ee5bae010eb11a29ceef75..59efad39c71c1db2ae542522e332e8e6cf293b2e 100644 |
--- a/content/app/content_main_runner.cc |
+++ b/content/app/content_main_runner.cc |
@@ -142,6 +142,16 @@ base::LazyInstance<ContentUtilityClient> |
g_empty_content_utility_client = LAZY_INSTANCE_INITIALIZER; |
#endif // !OS_IOS && !CHROME_MULTIPLE_DLL_BROWSER |
+#if defined(V8_USE_EXTERNAL_STARTUP_DATA) && defined(OS_ANDROID) |
+#if defined __LP64__ |
+#define kV8NativesDataDescriptor kV8NativesDataDescriptor64 |
+#define kV8SnapshotDataDescriptor kV8SnapshotDataDescriptor64 |
+#else |
+#define kV8NativesDataDescriptor kV8NativesDataDescriptor32 |
+#define kV8SnapshotDataDescriptor kV8SnapshotDataDescriptor32 |
+#endif |
+#endif |
+ |
#if defined(OS_POSIX) && !defined(OS_IOS) |
// Setup signal-handling state: resanitize most signals, ignore SIGPIPE. |