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

Side by Side Diff: net/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/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 7
8 android_library("net_java") { 8 android_library("net_java") {
9 java_files = [ 9 java_files = [
10 "java/src/org/chromium/net/AndroidCellularSignalStrength.java", 10 "java/src/org/chromium/net/AndroidCellularSignalStrength.java",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 testonly = true 70 testonly = true
71 sources = [ 71 sources = [
72 "../test/android/net_test_entry_point.cc", 72 "../test/android/net_test_entry_point.cc",
73 "../test/android/net_test_jni_onload.cc", 73 "../test/android/net_test_jni_onload.cc",
74 "../test/android/net_test_jni_onload.h", 74 "../test/android/net_test_jni_onload.h",
75 "../test/embedded_test_server/android/embedded_test_server_android.cc", 75 "../test/embedded_test_server/android/embedded_test_server_android.cc",
76 "../test/embedded_test_server/android/embedded_test_server_android.h", 76 "../test/embedded_test_server/android/embedded_test_server_android.h",
77 ] 77 ]
78 78
79 deps = [ 79 deps = [
80 "//base/test:test_support_main_stub",
80 "//net:test_support", 81 "//net:test_support",
81 ] 82 ]
82 public_deps = [ 83 public_deps = [
83 "//net:net_test_jni_headers", 84 "//net:net_test_jni_headers",
84 ] 85 ]
85 } 86 }
86 87
87 shared_library("net_java_test_native_support") { 88 shared_library("net_java_test_native_support") {
88 testonly = true 89 testonly = true
89 deps = [ 90 deps = [
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 java_files = 158 java_files =
158 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ] 159 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ]
159 deps = [ 160 deps = [
160 ":net_java", 161 ":net_java",
161 "//base:base_java", 162 "//base:base_java",
162 "//base:base_java_test_support", 163 "//base:base_java_test_support",
163 "//third_party/hamcrest:hamcrest_java", 164 "//third_party/hamcrest:hamcrest_java",
164 ] 165 ]
165 srcjar_deps = [ "//base:base_build_config_gen" ] 166 srcjar_deps = [ "//base:base_build_config_gen" ]
166 } 167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698