summaryrefslogtreecommitdiff
path: root/chromium/mojo/android/javatests/init_library.cc
blob: 9e1a593011a6b69ec8c6b72acbc8957aaec8f817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// 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.

#include "base/android/base_jni_onload.h"
#include "base/android/base_jni_registrar.h"
#include "base/android/jni_android.h"
#include "base/android/jni_registrar.h"
#include "base/android/library_loader/library_loader_hooks.h"
#include "base/bind.h"
#include "mojo/android/javatests/mojo_test_case.h"
#include "mojo/android/javatests/validation_test_util.h"
#include "mojo/android/system/core_impl.h"
#include "mojo/android/system/watcher_impl.h"
#include "mojo/edk/embedder/embedder.h"

namespace {

base::android::RegistrationMethod kMojoRegisteredMethods[] = {
    {"CoreImpl", mojo::android::RegisterCoreImpl},
    {"MojoTestCase", mojo::android::RegisterMojoTestCase},
    {"ValidationTestUtil", mojo::android::RegisterValidationTestUtil},
    {"WatcherImpl", mojo::android::RegisterWatcherImpl},
};

bool RegisterJNI(JNIEnv* env) {
  return base::android::RegisterJni(env) &&
         RegisterNativeMethods(env, kMojoRegisteredMethods,
                               arraysize(kMojoRegisteredMethods));
}

bool NativeInit() {
  if (!base::android::OnJNIOnLoadInit())
    return false;

  mojo::edk::Init();
  return true;
}

}  // namespace

JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
  base::android::InitVM(vm);
  JNIEnv* env = base::android::AttachCurrentThread();
  if (!base::android::OnJNIOnLoadRegisterJNI(env) || !RegisterJNI(env) ||
      !NativeInit()) {
    return -1;
  }
  return JNI_VERSION_1_4;
}