Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: android_webview/java/generated_src/org/chromium/base/library_loader/NativeLibraries.java

Issue 2620193003: Remove obsolete unused file. (Closed)
Patch Set: also remove from classpath lists Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | docs/chromoting_android_hacking.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.base.library_loader;
6
7 /**
8 * This class defines the native libraries and loader options required by webvie w
9 */
10 public class NativeLibraries {
11 // Set to true to use the chromium linker. Only useful to save memory
12 // on multi-process content-based projects. Always disabled for the Android Webview.
13 public static boolean sUseLinker = false;
14
15 // Set to true to directly load the library from the zip file using the
16 // chromium linker. Always disabled for Android Webview.
17 public static boolean sUseLibraryInZipFile = false;
18
19 // Set to true to enable chromium linker test support. NEVER enable this for the
20 // Android webview.
21 public static boolean sEnableLinkerTests = false;
22
23 // This is the list of native libraries to load. In the normal chromium buil d, this would be
24 // automatically generated.
25 // TODO(torne, cjhopman): Use a generated file for this.
26 static final String[] LIBRARIES = { "webviewchromium" };
27 // This should match the version name string returned by the native library.
28 // TODO(aberent) The Webview native library currently returns an empty strin g; change this
29 // to a string generated at compile time, and incorporate that string in a g enerated
30 // replacement for this file.
31 static String sVersionNumber = "";
32 }
OLDNEW
« no previous file with comments | « no previous file | docs/chromoting_android_hacking.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698