| Index: base/android/java/src/org/chromium/base/library_loader/Linker.java
|
| diff --git a/base/android/java/src/org/chromium/base/library_loader/Linker.java b/base/android/java/src/org/chromium/base/library_loader/Linker.java
|
| index 271e6cb7848d7aa40258efa075ccf871e43e5b0a..d2c596deefbae25b811f645d495cd6fec6527f49 100644
|
| --- a/base/android/java/src/org/chromium/base/library_loader/Linker.java
|
| +++ b/base/android/java/src/org/chromium/base/library_loader/Linker.java
|
| @@ -515,20 +515,13 @@ public abstract class Linker {
|
|
|
| /**
|
| * Load the Linker JNI library. Throws UnsatisfiedLinkError on error.
|
| - * In a component build, the suffix ".cr" is added to each library name, so
|
| - * if the initial load fails we retry with a suffix.
|
| */
|
| protected static void loadLinkerJniLibrary() {
|
| String libName = "lib" + LINKER_JNI_LIBRARY + ".so";
|
| if (DEBUG) {
|
| Log.i(TAG, "Loading " + libName);
|
| }
|
| - try {
|
| - System.loadLibrary(LINKER_JNI_LIBRARY);
|
| - } catch (UnsatisfiedLinkError e) {
|
| - Log.w(TAG, "Couldn't load " + libName + ", trying " + libName + ".cr");
|
| - System.loadLibrary(LINKER_JNI_LIBRARY + ".cr");
|
| - }
|
| + System.loadLibrary(LINKER_JNI_LIBRARY);
|
| }
|
|
|
| /**
|
|
|