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

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

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a nit I had missed. Created 5 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/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 DEPRECATED_java_in_dir = "java/src" 9 DEPRECATED_java_in_dir = "java/src"
10 deps = [ 10 deps = [
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 ] 71 ]
72 outputs = [ 72 outputs = [
73 "org/chromium/net/CertificateMimeType.java", 73 "org/chromium/net/CertificateMimeType.java",
74 "org/chromium/net/CertVerifyStatusAndroid.java", 74 "org/chromium/net/CertVerifyStatusAndroid.java",
75 "org/chromium/net/ConnectionSubtype.java", 75 "org/chromium/net/ConnectionSubtype.java",
76 "org/chromium/net/ConnectionType.java", 76 "org/chromium/net/ConnectionType.java",
77 "org/chromium/net/PrivateKeyType.java", 77 "org/chromium/net/PrivateKeyType.java",
78 ] 78 ]
79 } 79 }
80 80
81 # GYP: //net/net.gyp:net_junit_tests
82 junit_binary("net_junit_tests") {
83 java_files =
84 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ]
85 deps = [
86 ":net_java",
87 "//base:base_java",
88 "//base:base_java_test_support",
89 "//third_party/junit:hamcrest",
90 ]
91 }
92
81 # TODO(GYP) 93 # TODO(GYP)
82 if (false) { 94 if (false) {
83 unittest_apk("net_unittests_apk") { 95 unittest_apk("net_unittests_apk") {
84 deps = [ 96 deps = [
85 ":net_java", 97 ":net_java",
86 ":net_javatests", 98 ":net_javatests",
87 "//net:net_unittests", 99 "//net:net_unittests",
88 ] 100 ]
89 unittests_dep = "//net:net_unittests" 101 unittests_dep = "//net:net_unittests"
90 } 102 }
91 } 103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698