blob: 56cd73409d7d5f01a275d096f9e3bfb6e660b92f [file] [log] [blame]
// 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 is a complete dummy, required because base now requires a version of
* NativeLibraries to build, but doesn't include it in its jar file.
*/
public class NativeLibraries {
public static boolean USE_LINKER = false;
public static boolean USE_LIBRARY_IN_ZIP_FILE = false;
public static boolean ENABLE_LINKER_TESTS = false;
static final String[] LIBRARIES = {};
static String VERSION_NUMBER = "";
}