android_only_explicit_jni_exports.lst 323 B

12345678910111213
  1. # Copyright 2017 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. # Linker script that exports only JNI_OnLoad.
  5. # Should be used for libraries that do explicit JNI registration.
  6. {
  7. global:
  8. JNI_OnLoad;
  9. local:
  10. *;
  11. };