diff options
author | aberent@chromium.org <aberent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-10 16:19:22 +0000 |
---|---|---|
committer | aberent@chromium.org <aberent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-10 16:19:22 +0000 |
commit | 93c9f9b0eaf8be547b33ba59027c44358f6f845a (patch) | |
tree | 7e139bb57e6d20f948a8d9acdd3fd3c327b63524 /android_webview/java/generated_src | |
parent | 62dbdc4b265f5bd273078d92da4d4b003753e0ff (diff) | |
download | chromium_src-93c9f9b0eaf8be547b33ba59027c44358f6f845a.zip chromium_src-93c9f9b0eaf8be547b33ba59027c44358f6f845a.tar.gz chromium_src-93c9f9b0eaf8be547b33ba59027c44358f6f845a.tar.bz2 |
Move the android library loader from content to base
The android library loader has no logical connection with content. Mojo
shell, which doesn't depend on content, wants to use it. This CL
moves it from content to base.
BUG=225101
NOTRY=true
Review URL: https://codereview.chromium.org/141223002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250113 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/java/generated_src')
-rw-r--r-- | android_webview/java/generated_src/org/chromium/base/library_loader/NativeLibraries.java (renamed from android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java) | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java b/android_webview/java/generated_src/org/chromium/base/library_loader/NativeLibraries.java index c01bea5..2bb1460 100644 --- a/android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java +++ b/android_webview/java/generated_src/org/chromium/base/library_loader/NativeLibraries.java @@ -1,15 +1,18 @@ -// Copyright 2013 The Chromium Authors. All rights reserved. +// 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.content.app; +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 content linker. Only useful to save memory + // 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 USE_LINKER = false; - // Set to true to enable content linker test support. NEVER enable this for the + // Set to true to enable chromium linker test support. NEVER enable this for the // Android webview. public static boolean ENABLE_LINKER_TESTS = false; |