| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "platform/globals.h" | 5 #include "platform/globals.h" |
| 6 #if defined(TARGET_OS_ANDROID) | 6 #if defined(TARGET_OS_FUCHSIA) |
| 7 | 7 |
| 8 #include "bin/extensions.h" | 8 #include "bin/extensions.h" |
| 9 #include <dlfcn.h> // NOLINT | 9 #include <dlfcn.h> // NOLINT |
| 10 | 10 |
| 11 namespace dart { | 11 namespace dart { |
| 12 namespace bin { | 12 namespace bin { |
| 13 | 13 |
| 14 const char* kPrecompiledLibraryName = "libprecompiled.so"; | 14 const char* kPrecompiledLibraryName = "libprecompiled.so"; |
| 15 const char* kPrecompiledInstructionsSymbolName = "_kInstructionsSnapshot"; | 15 const char* kPrecompiledInstructionsSymbolName = "_kInstructionsSnapshot"; |
| 16 const char* kPrecompiledDataSymbolName = "_kDataSnapshot"; | 16 const char* kPrecompiledDataSymbolName = "_kDataSnapshot"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 28 const char* err_str = dlerror(); | 28 const char* err_str = dlerror(); |
| 29 if (err_str != NULL) { | 29 if (err_str != NULL) { |
| 30 return Dart_NewApiError(err_str); | 30 return Dart_NewApiError(err_str); |
| 31 } | 31 } |
| 32 return Dart_Null(); | 32 return Dart_Null(); |
| 33 } | 33 } |
| 34 | 34 |
| 35 } // namespace bin | 35 } // namespace bin |
| 36 } // namespace dart | 36 } // namespace dart |
| 37 | 37 |
| 38 #endif // defined(TARGET_OS_ANDROID) | 38 #endif // defined(TARGET_OS_FUCHSIA) |
| OLD | NEW |