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

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

Issue 1350023003: Add a Mojo EDK for Chrome that uses one OS pipe per message pipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: some review comments Created 5 years, 2 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 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 ":system_java", 10 ":system_java",
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 ":system_java_jni_headers", 125 ":system_java_jni_headers",
126 "//base", 126 "//base",
127 "//base/test/:test_support", 127 "//base/test/:test_support",
128 "//build/config/sanitizers:deps", 128 "//build/config/sanitizers:deps",
129 "//mojo/message_pump", 129 "//mojo/message_pump",
130 "//third_party/mojo/src/mojo/edk/system", 130 "//third_party/mojo/src/mojo/edk/system",
131 "//third_party/mojo/src/mojo/public/cpp/bindings/tests:mojo_public_bindings_ test_utils", 131 "//third_party/mojo/src/mojo/public/cpp/bindings/tests:mojo_public_bindings_ test_utils",
132 "//third_party/mojo/src/mojo/public/cpp/test_support:test_utils", 132 "//third_party/mojo/src/mojo/public/cpp/test_support:test_utils",
133 "//third_party/mojo/src/mojo/public/cpp/environment", 133 "//third_party/mojo/src/mojo/public/cpp/environment",
134 ] 134 ]
135
135 defines = [ "UNIT_TEST" ] 136 defines = [ "UNIT_TEST" ]
136 } 137 }
137 138
138 android_apk("mojo_test_apk") { 139 android_apk("mojo_test_apk") {
139 testonly = true 140 testonly = true
140 deps = [ 141 deps = [
141 ":mojo_javatests", 142 ":mojo_javatests",
142 ":mojo_java_unittests", 143 ":mojo_java_unittests",
143 ":system_java", 144 ":system_java",
144 "//base:base_java", 145 "//base:base_java",
145 "//third_party/mojo/src/mojo/public/java:bindings", 146 "//third_party/mojo/src/mojo/public/java:bindings",
146 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface s", 147 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface s",
147 ] 148 ]
148 native_libs = [ "libmojo_java_unittests.so" ] 149 native_libs = [ "libmojo_java_unittests.so" ]
149 apk_name = "MojoTest" 150 apk_name = "MojoTest"
150 android_manifest = "javatests/AndroidManifest.xml" 151 android_manifest = "javatests/AndroidManifest.xml"
151 } 152 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698