OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "gin/v8_initializer.h" | 5 #include "gin/v8_initializer.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/debug/alias.h" | 8 #include "base/debug/alias.h" |
9 #include "base/files/file.h" | 9 #include "base/files/file.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 #endif | 46 #endif |
47 | 47 |
48 // File handles intentionally never closed. Not using File here because its | 48 // File handles intentionally never closed. Not using File here because its |
49 // Windows implementation guards against two instances owning the same | 49 // Windows implementation guards against two instances owning the same |
50 // PlatformFile (which we allow since we know it is never freed). | 50 // PlatformFile (which we allow since we know it is never freed). |
51 base::PlatformFile g_natives_pf = kInvalidPlatformFile; | 51 base::PlatformFile g_natives_pf = kInvalidPlatformFile; |
52 base::PlatformFile g_snapshot_pf = kInvalidPlatformFile; | 52 base::PlatformFile g_snapshot_pf = kInvalidPlatformFile; |
53 base::MemoryMappedFile::Region g_natives_region; | 53 base::MemoryMappedFile::Region g_natives_region; |
54 base::MemoryMappedFile::Region g_snapshot_region; | 54 base::MemoryMappedFile::Region g_snapshot_region; |
55 | 55 |
56 #if defined(OS_ANDROID) | |
57 #ifdef __LP64__ | |
58 const char kNativesFileName[] = "natives_blob_64.bin"; | |
59 const char kSnapshotFileName[] = "snapshot_blob_64.bin"; | |
60 #else | |
61 const char kNativesFileName[] = "natives_blob_32.bin"; | |
62 const char kSnapshotFileName[] = "snapshot_blob_32.bin"; | |
63 #endif // __LP64__ | |
64 | |
65 #else // defined(OS_ANDROID) | |
66 const char kNativesFileName[] = "natives_blob.bin"; | 56 const char kNativesFileName[] = "natives_blob.bin"; |
67 const char kSnapshotFileName[] = "snapshot_blob.bin"; | 57 const char kSnapshotFileName[] = "snapshot_blob.bin"; |
68 #endif // defined(OS_ANDROID) | |
69 | 58 |
70 void GetV8FilePath(const char* file_name, base::FilePath* path_out) { | 59 void GetV8FilePath(const char* file_name, base::FilePath* path_out) { |
71 #if !defined(OS_MACOSX) | 60 #if !defined(OS_MACOSX) |
72 base::FilePath data_path; | 61 base::FilePath data_path; |
73 #if defined(OS_ANDROID) | 62 #if defined(OS_ANDROID) |
74 // This is the path within the .apk. | 63 // This is the path within the .apk. |
75 data_path = base::FilePath(FILE_PATH_LITERAL("assets")); | 64 data_path = base::FilePath(FILE_PATH_LITERAL("assets")); |
76 #elif defined(OS_POSIX) | 65 #elif defined(OS_POSIX) |
77 PathService::Get(base::DIR_EXE, &data_path); | 66 PathService::Get(base::DIR_EXE, &data_path); |
78 #elif defined(OS_WIN) | 67 #elif defined(OS_WIN) |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 *snapshot_data_out = | 399 *snapshot_data_out = |
411 reinterpret_cast<const char*>(g_mapped_snapshot->data()); | 400 reinterpret_cast<const char*>(g_mapped_snapshot->data()); |
412 *snapshot_size_out = static_cast<int>(g_mapped_snapshot->length()); | 401 *snapshot_size_out = static_cast<int>(g_mapped_snapshot->length()); |
413 } else { | 402 } else { |
414 *snapshot_data_out = NULL; | 403 *snapshot_data_out = NULL; |
415 *snapshot_size_out = 0; | 404 *snapshot_size_out = 0; |
416 } | 405 } |
417 } | 406 } |
418 | 407 |
419 } // namespace gin | 408 } // namespace gin |
OLD | NEW |