Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1396)

Unified Diff: mojo/shell/android/tests/src/org/chromium/mojo/shell/ShellTestBase.java

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/shell/android/tests/src/org/chromium/mojo/shell/ShellTestBase.java
diff --git a/mojo/shell/android/tests/src/org/chromium/mojo/shell/ShellTestBase.java b/mojo/shell/android/tests/src/org/chromium/mojo/shell/ShellTestBase.java
new file mode 100644
index 0000000000000000000000000000000000000000..2aba46f8a1cf103b33708ef6d3531342cf9a2e85
--- /dev/null
+++ b/mojo/shell/android/tests/src/org/chromium/mojo/shell/ShellTestBase.java
@@ -0,0 +1,40 @@
+// 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.mojo.shell;
+
+import android.content.Context;
+import android.content.res.AssetManager;
+
+import org.chromium.base.CalledByNative;
+import org.chromium.base.JNINamespace;
+
+import java.io.File;
+import java.io.IOException;
+
+/**
+ * Helper method for ShellTestBase.
+ */
+@JNINamespace("mojo::shell::test")
+public class ShellTestBase {
+ // Directory where applications bundled with the tests will be extracted.
+ private static final String TEST_APP_DIRECTORY = "test_apps";
+
+ /**
+ * Extracts the mojo applications from the apk assets and returns the directory where they are.
+ */
+ @CalledByNative
+ private static String extractMojoApplications(Context context) throws IOException {
+ final File outputDirectory = context.getDir(TEST_APP_DIRECTORY, Context.MODE_PRIVATE);
+
+ AssetManager manager = context.getResources().getAssets();
+ for (String asset : manager.list("")) {
+ if (asset.endsWith(".mojo")) {
+ FileHelper.extractFromAssets(context, asset, outputDirectory, false);
+ }
+ }
+
+ return outputDirectory.getAbsolutePath();
+ }
+}
« no previous file with comments | « mojo/shell/android/run_android_application_function.h ('k') | mojo/shell/android/ui_application_loader_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698