OLD | NEW |
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 ] | 80 ] |
81 } | 81 } |
82 | 82 |
83 junit_binary("net_junit_tests") { | 83 junit_binary("net_junit_tests") { |
84 java_files = | 84 java_files = |
85 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ] | 85 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ] |
86 deps = [ | 86 deps = [ |
87 ":net_java", | 87 ":net_java", |
88 "//base:base_java", | 88 "//base:base_java", |
89 "//base:base_java_test_support", | 89 "//base:base_java_test_support", |
| 90 "//base:base_junit_test_support", |
90 "//third_party/junit:hamcrest", | 91 "//third_party/junit:hamcrest", |
91 ] | 92 ] |
92 } | 93 } |
93 | 94 |
94 # TODO(GYP) | 95 # TODO(GYP) |
95 if (false) { | 96 if (false) { |
96 unittest_apk("net_unittests_apk") { | 97 unittest_apk("net_unittests_apk") { |
97 deps = [ | 98 deps = [ |
98 ":net_java", | 99 ":net_java", |
99 ":net_javatests", | 100 ":net_javatests", |
100 "//net:net_unittests", | 101 "//net:net_unittests", |
101 ] | 102 ] |
102 unittests_dep = "//net:net_unittests" | 103 unittests_dep = "//net:net_unittests" |
103 } | 104 } |
104 } | 105 } |
OLD | NEW |