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

Unified Diff: android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java

Issue 141223002: Move the android library loader from content to base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix final nits Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java
diff --git a/android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java b/android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java
deleted file mode 100644
index c01bea546195014b62af95da08922384db5a486d..0000000000000000000000000000000000000000
--- a/android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2013 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.content.app;
-
-public class NativeLibraries {
- // Set to true to use the content linker. Only useful to save memory
- // on multi-process content-based projects. Always disabled for the Android Webview.
- public static boolean USE_LINKER = false;
-
- // Set to true to enable content linker test support. NEVER enable this for the
- // Android webview.
- public static boolean ENABLE_LINKER_TESTS = 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 VERSION_NUMBER = "";
-}

Powered by Google App Engine
This is Rietveld 408576698