Remove obsolete unused file.
WebView now generates NativeLibraries.java at runtime in the same way as all other Android APKs. Delete the unused pregenerated version. BUG= Review-Url: https://codereview.chromium.org/2620193003 Cr-Commit-Position: refs/heads/master@{#442933}
This commit is contained in:
android_webview/java/generated_src/org/chromium/base/library_loader
docs
tools/android/eclipse
@ -1,32 +0,0 @@
|
|||||||
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
||||||
// 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;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This class defines the native libraries and loader options required by webview
|
|
||||||
*/
|
|
||||||
public class NativeLibraries {
|
|
||||||
// Set to true to use the chromium linker. Only useful to save memory
|
|
||||||
// on multi-process content-based projects. Always disabled for the Android Webview.
|
|
||||||
public static boolean sUseLinker = false;
|
|
||||||
|
|
||||||
// Set to true to directly load the library from the zip file using the
|
|
||||||
// chromium linker. Always disabled for Android Webview.
|
|
||||||
public static boolean sUseLibraryInZipFile = false;
|
|
||||||
|
|
||||||
// Set to true to enable chromium linker test support. NEVER enable this for the
|
|
||||||
// Android webview.
|
|
||||||
public static boolean sEnableLinkerTests = false;
|
|
||||||
|
|
||||||
// This is the list of native libraries to load. In the normal chromium build, this would be
|
|
||||||
// automatically generated.
|
|
||||||
// TODO(torne, cjhopman): Use a generated file for this.
|
|
||||||
static final String[] LIBRARIES = { "webviewchromium" };
|
|
||||||
// This should match the version name string returned by the native library.
|
|
||||||
// TODO(aberent) The Webview native library currently returns an empty string; change this
|
|
||||||
// to a string generated at compile time, and incorporate that string in a generated
|
|
||||||
// replacement for this file.
|
|
||||||
static String sVersionNumber = "";
|
|
||||||
}
|
|
@ -95,7 +95,6 @@ display log messages to the `LogCat` pane.
|
|||||||
<classpathentry kind="src" path="third_party/libjingle/source/talk/app/webrtc/javatests/src"/>
|
<classpathentry kind="src" path="third_party/libjingle/source/talk/app/webrtc/javatests/src"/>
|
||||||
<classpathentry kind="src" path="third_party/libjingle/source/talk/examples/android/src"/>
|
<classpathentry kind="src" path="third_party/libjingle/source/talk/examples/android/src"/>
|
||||||
<classpathentry kind="src" path="android_webview/java/src"/>
|
<classpathentry kind="src" path="android_webview/java/src"/>
|
||||||
<classpathentry kind="src" path="android_webview/java/generated_src"/>
|
|
||||||
<classpathentry kind="src" path="android_webview/test/shell/src"/>
|
<classpathentry kind="src" path="android_webview/test/shell/src"/>
|
||||||
<classpathentry kind="src" path="android_webview/unittestjava/src"/>
|
<classpathentry kind="src" path="android_webview/unittestjava/src"/>
|
||||||
<classpathentry kind="src" path="android_webview/javatests/src"/>
|
<classpathentry kind="src" path="android_webview/javatests/src"/>
|
||||||
|
@ -17,7 +17,6 @@ to the classpath for downstream development. See "additional_entries" below.
|
|||||||
{% endblock %} -->
|
{% endblock %} -->
|
||||||
<classpath>
|
<classpath>
|
||||||
<classpathentry kind="src" path="android_webview/glue/java/src"/>
|
<classpathentry kind="src" path="android_webview/glue/java/src"/>
|
||||||
<classpathentry kind="src" path="android_webview/java/generated_src"/>
|
|
||||||
<classpathentry kind="src" path="android_webview/java/src"/>
|
<classpathentry kind="src" path="android_webview/java/src"/>
|
||||||
<classpathentry kind="src" path="android_webview/javatests/src"/>
|
<classpathentry kind="src" path="android_webview/javatests/src"/>
|
||||||
<classpathentry kind="src" path="android_webview/test/shell/src"/>
|
<classpathentry kind="src" path="android_webview/test/shell/src"/>
|
||||||
|
Reference in New Issue
Block a user