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

Side by Side Diff: mojo/android/BUILD.gn

Issue 2549363004: Multiprocess test client: Android child process launcher rework. (Closed)
Patch Set: Addressed comments + synced Created 4 years 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 6
7 group("android") { 7 group("android") {
8 testonly = true 8 testonly = true
9 deps = [ 9 deps = [
10 ":mojo_javatests", 10 ":mojo_javatests",
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 "javatests/mojo_test_case.h", 123 "javatests/mojo_test_case.h",
124 "javatests/validation_test_util.cc", 124 "javatests/validation_test_util.cc",
125 "javatests/validation_test_util.h", 125 "javatests/validation_test_util.h",
126 ] 126 ]
127 127
128 deps = [ 128 deps = [
129 ":jni_headers", 129 ":jni_headers",
130 ":libsystem_java", 130 ":libsystem_java",
131 ":system_java_jni_headers", 131 ":system_java_jni_headers",
132 "//base", 132 "//base",
133 "//base/test/:test_support", 133 "//base/test:test_support",
134 "//base/test:test_support_main_stub",
134 "//build/config/sanitizers:deps", 135 "//build/config/sanitizers:deps",
135 "//mojo/edk/system", 136 "//mojo/edk/system",
136 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils", 137 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils",
137 "//mojo/public/cpp/test_support:test_utils", 138 "//mojo/public/cpp/test_support:test_utils",
138 ] 139 ]
139 defines = [ "UNIT_TEST" ] 140 defines = [ "UNIT_TEST" ]
140 } 141 }
141 142
142 instrumentation_test_apk("mojo_test_apk") { 143 instrumentation_test_apk("mojo_test_apk") {
143 deps = [ 144 deps = [
144 ":mojo_javatests", 145 ":mojo_javatests",
145 ":system_java", 146 ":system_java",
146 "//base:base_java", 147 "//base:base_java",
147 "//mojo/public/interfaces/bindings/tests:test_interfaces", 148 "//mojo/public/interfaces/bindings/tests:test_interfaces",
148 "//mojo/public/java:bindings_java", 149 "//mojo/public/java:bindings_java",
149 ] 150 ]
150 shared_libraries = [ ":mojo_java_unittests" ] 151 shared_libraries = [ ":mojo_java_unittests" ]
151 apk_name = "MojoTest" 152 apk_name = "MojoTest"
152 android_manifest = "javatests/AndroidManifest.xml" 153 android_manifest = "javatests/AndroidManifest.xml"
153 } 154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698