Index: base/android/java/templates/NativeLibraries.template |
diff --git a/base/android/java/templates/NativeLibraries.template b/base/android/java/templates/NativeLibraries.template |
index 8b812a60a968ce05b1f23bae618799e4a78da44c..4d81d45e667a544d3c16cf2c57b3066fabf23235 100644 |
--- a/base/android/java/templates/NativeLibraries.template |
+++ b/base/android/java/templates/NativeLibraries.template |
@@ -2,12 +2,20 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-package org.chromium.base.library_loader; |
+#ifndef NATIVE_LIBRARIES_PACKAGE |
+#define NATIVE_LIBRARIES_PACKAGE org.chromium.base.library_loader |
+#endif |
+ |
+package NATIVE_LIBRARIES_PACKAGE; |
import org.chromium.base.annotations.SuppressFBWarnings; |
+#ifndef NATIVE_LIBRARIES_CLASS_NAME |
+#define NATIVE_LIBRARIES_CLASS_NAME NativeLibraries |
+#endif |
+ |
@SuppressFBWarnings |
-public class NativeLibraries { |
+public class NATIVE_LIBRARIES_CLASS_NAME { |
/** |
* IMPORTANT NOTE: The variables defined here must _not_ be 'final'. |
* |