OLD | NEW |
(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 is a complete dummy, required because base now requires a version of |
| 9 * NativeLibraries to build, but doesn't include it in its jar file. |
| 10 */ |
| 11 public class NativeLibraries { |
| 12 public static boolean USE_LINKER = false; |
| 13 public static boolean ENABLE_LINKER_TESTS = false; |
| 14 static final String[] LIBRARIES = {}; |
| 15 static String VERSION_NUMBER = ""; |
| 16 } |
OLD | NEW |