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

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

Issue 2082453003: 🎅 Use GN's dependency info for native libraries in write_build_config.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix osmesa on non-android Created 4 years, 6 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 ":mojo_javatests", 10 ":mojo_javatests",
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 "//mojo/edk/system", 125 "//mojo/edk/system",
126 "//mojo/message_pump", 126 "//mojo/message_pump",
127 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils", 127 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils",
128 "//mojo/public/cpp/test_support:test_utils", 128 "//mojo/public/cpp/test_support:test_utils",
129 ] 129 ]
130 defines = [ "UNIT_TEST" ] 130 defines = [ "UNIT_TEST" ]
131 } 131 }
132 132
133 instrumentation_test_apk("mojo_test_apk") { 133 instrumentation_test_apk("mojo_test_apk") {
134 deps = [ 134 deps = [
135 ":mojo_java_unittests",
136 ":mojo_javatests", 135 ":mojo_javatests",
137 ":system_java", 136 ":system_java",
138 "//base:base_java", 137 "//base:base_java",
139 "//mojo/public/interfaces/bindings/tests:test_interfaces", 138 "//mojo/public/interfaces/bindings/tests:test_interfaces",
140 "//mojo/public/java:bindings", 139 "//mojo/public/java:bindings",
141 ] 140 ]
142 native_libs = [ "libmojo_java_unittests.so" ] 141 shared_libraries = [ ":mojo_java_unittests" ]
143 apk_name = "MojoTest" 142 apk_name = "MojoTest"
144 android_manifest = "javatests/AndroidManifest.xml" 143 android_manifest = "javatests/AndroidManifest.xml"
145 isolate_file = "../mojo_test_apk.isolate" 144 isolate_file = "../mojo_test_apk.isolate"
146 } 145 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698