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

Unified Diff: testing/android/native_test/BUILD.gn

Issue 2611323002: Relanding "Multiprocess test client: Android child process launcher rework." (Closed)
Patch Set: Addressed nyquist@'s comment + sync Created 3 years, 11 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
« no previous file with comments | « mojo/edk/test/run_all_unittests.cc ('k') | testing/android/native_test/java/AndroidManifest.xml.jinja2 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/android/native_test/BUILD.gn
diff --git a/testing/android/native_test/BUILD.gn b/testing/android/native_test/BUILD.gn
index f08a8d1b5a421d5481c124d6ca26f54b8a790c31..728cec028b93ae4ef2cfe0c6c5754aa61be1d1c8 100644
--- a/testing/android/native_test/BUILD.gn
+++ b/testing/android/native_test/BUILD.gn
@@ -7,6 +7,8 @@ import("//build/config/android/rules.gni")
source_set("native_test_support") {
testonly = true
sources = [
+ "main_runner.cc",
+ "main_runner.h",
"native_test_launcher.cc",
"native_test_launcher.h",
"native_test_util.cc",
@@ -33,9 +35,18 @@ source_set("native_test_native_code") {
]
}
+android_library("native_main_runner_java") {
+ testonly = true
+ java_files = [ "java/src/org/chromium/native_test/MainRunner.java" ]
+ deps = [
+ "//base:base_java",
+ ]
+}
+
android_library("native_test_java") {
testonly = true
deps = [
+ ":native_main_runner_java",
"//base:base_java",
"//base:base_java_test_support",
"//testing/android/appurify_support:appurify_support_java",
@@ -53,6 +64,7 @@ android_library("native_test_java") {
generate_jni("native_test_jni_headers") {
sources = [
+ "java/src/org/chromium/native_test/MainRunner.java",
"java/src/org/chromium/native_test/NativeTest.java",
]
jni_package = "testing"
« no previous file with comments | « mojo/edk/test/run_all_unittests.cc ('k') | testing/android/native_test/java/AndroidManifest.xml.jinja2 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698