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.
5 #include "mojo/runner/shell_test_base.h"
7 #include "base/android/jni_android.h"
8 #include "base/android/jni_string.h"
9 #include "base/files/file_path.h"
10 #include "base/files/file_util.h"
11 #include "jni/ShellTestBase_jni.h"
12 #include "mojo/util/filename_util.h"
22 JNIEnv
* env
= base::android::AttachCurrentThread();
23 static bool initialized
= false;
25 RegisterNativesImpl(env
);
33 void ShellTestBase::SetUpTestApplications() {
34 // Extract mojo applications, and set the resolve base URL to the directory
36 JNIEnv
* env
= InitEnv();
37 base::android::ScopedJavaLocalRef
<jstring
> service_dir(
38 Java_ShellTestBase_extractMojoApplications(
39 env
, base::android::GetApplicationContext()));
40 shell_context_
.url_resolver()->SetMojoBaseURL(
41 mojo::util::FilePathToFileURL(base::FilePath(
42 base::android::ConvertJavaStringToUTF8(env
, service_dir
.obj()))));